JBoss Native SVN: r3229 - trunk/httpd/httpd-2.4/modules/cache.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-30 02:34:01 -0500 (Thu, 30 Jan 2014)
New Revision: 3229
Added:
trunk/httpd/httpd-2.4/modules/cache/NMAKEcachesocache
trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedbm
trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedc
Modified:
trunk/httpd/httpd-2.4/modules/cache/NMAKEcache
trunk/httpd/httpd-2.4/modules/cache/NMAKEmakefile
Log:
Add the caches.
Modified: trunk/httpd/httpd-2.4/modules/cache/NMAKEcache
===================================================================
--- trunk/httpd/httpd-2.4/modules/cache/NMAKEcache 2014-01-30 07:05:14 UTC (rev 3228)
+++ trunk/httpd/httpd-2.4/modules/cache/NMAKEcache 2014-01-30 07:34:01 UTC (rev 3229)
@@ -47,9 +47,6 @@
RCFLAGS = $(RCFLAGS) /d BIN_NAME="$(PROJECT).so" /d LONG_NAME="cache_module for Apache"
OBJECTS = \
- $(WORKDIR)\cache_cache.obj \
- $(WORKDIR)\cache_hash.obj \
- $(WORKDIR)\cache_pqueue.obj \
$(WORKDIR)\cache_storage.obj \
$(WORKDIR)\cache_util.obj \
$(WORKDIR)\mod_cache.obj
Added: trunk/httpd/httpd-2.4/modules/cache/NMAKEcachesocache
===================================================================
--- trunk/httpd/httpd-2.4/modules/cache/NMAKEcachesocache (rev 0)
+++ trunk/httpd/httpd-2.4/modules/cache/NMAKEcachesocache 2014-01-30 07:34:01 UTC (rev 3229)
@@ -0,0 +1,63 @@
+# Copyright 2001-2007 The Apache Software Foundation or its licensors, as
+# applicable.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ====================================================================
+#
+# NMAKEmakefile cache module makefile.
+#
+# Originally contributed by Mladen Turk <mturk redhat.com>
+#
+# ====================================================================
+#
+
+TARGET=DLL
+PROJECT = mod_cache_socache
+
+!IF !DEFINED(SRCDIR) || "$(SRCDIR)" == ""
+SRCDIR = .
+!ENDIF
+
+!include <..\..\NMAKEcommon.inc>
+!include <..\..\NMAKEhttpd.inc>
+
+LDIRS = /libpath:"$(BUILDLIB)"
+LFLAGS = $(LFLAGS) user32.lib psapi.lib gdi32.lib shlwapi.lib wldap32.lib ole32.lib $(LIBAPR) $(LIBAPU) $(LIBHTTPD)
+CFLAGS = $(CFLAGS) -DCACHE_DECLARE_EXPORT -DMOD_CACHE_EXPORTS
+
+INCLUDES = -I$(SRCDIR) -I$(BUILDINC)
+PDBFLAGS = -Fo$(WORKDIR)\ -Fd$(WORKDIR)\$(PROJECT)-src
+
+BUILDBIN = $(WORKDIR)\$(PROJECT).so
+BUILDPDB = $(WORKDIR)\$(PROJECT).pdb
+BUILDRES = $(WORKDIR)\$(PROJECT).res
+BUILDMFT = $(BUILDBIN).manifest
+
+RCFLAGS = $(RCFLAGS) /d BIN_NAME="$(PROJECT).so" /d LONG_NAME="cache_module for Apache"
+
+OBJECTS = \
+ $(WORKDIR)\mod_cache_socache.obj
+
+{$(SRCDIR)}.c{$(WORKDIR)}.obj:
+ $(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
+
+$(BUILDRES): ..\..\build\win32\httpd.rc
+ $(RC) $(RCFLAGS) /i "$(BUILDINC)" /fo $(BUILDRES) ..\..\build\win32\httpd.rc
+
+$(BUILDBIN): $(OBJECTS) $(BUILDRES)
+ $(LINK) $(LFLAGS) $(OBJECTS) $(BUILDRES) $(LIBS) $(LDIRS) /pdb:$(BUILDPDB) /out:$(BUILDBIN)
+ IF EXIST $(BUILDMFT) \
+ mt -nologo -manifest $(BUILDMFT) -outputresource:$(BUILDBIN);2
+
+install: $(BUILDBIN)
Modified: trunk/httpd/httpd-2.4/modules/cache/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/modules/cache/NMAKEmakefile 2014-01-30 07:05:14 UTC (rev 3228)
+++ trunk/httpd/httpd-2.4/modules/cache/NMAKEmakefile 2014-01-30 07:34:01 UTC (rev 3229)
@@ -34,7 +34,10 @@
$(SRCDIR)\NMAKEcache\~ \
$(SRCDIR)\NMAKEdiskcache\~ \
$(SRCDIR)\NMAKEfilecache\~ \
- $(SRCDIR)\NMAKEmemcache\~
+ $(SRCDIR)\NMAKEmemcache\~ \
+ $(SRCDIR)\NMAKEcachesocache\~ \
+ $(SRCDIR)\NMAKEsocachedbm\~ \
+ $(SRCDIR)\NMAKEsocache_dc\~
all: $(WORKDIR) $(MODULES)
@echo Building cache modules ...
Added: trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedbm
===================================================================
--- trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedbm (rev 0)
+++ trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedbm 2014-01-30 07:34:01 UTC (rev 3229)
@@ -0,0 +1,63 @@
+# Copyright 2001-2007 The Apache Software Foundation or its licensors, as
+# applicable.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ====================================================================
+#
+# NMAKEmakefile cache module makefile.
+#
+# Originally contributed by Mladen Turk <mturk redhat.com>
+#
+# ====================================================================
+#
+
+TARGET=DLL
+PROJECT = mod_socache_dbm
+
+!IF !DEFINED(SRCDIR) || "$(SRCDIR)" == ""
+SRCDIR = .
+!ENDIF
+
+!include <..\..\NMAKEcommon.inc>
+!include <..\..\NMAKEhttpd.inc>
+
+LDIRS = /libpath:"$(BUILDLIB)"
+LFLAGS = $(LFLAGS) user32.lib psapi.lib gdi32.lib shlwapi.lib wldap32.lib ole32.lib $(LIBAPR) $(LIBAPU) $(LIBHTTPD)
+CFLAGS = $(CFLAGS) -DCACHE_DECLARE_EXPORT -DMOD_CACHE_EXPORTS
+
+INCLUDES = -I$(SRCDIR) -I$(BUILDINC)
+PDBFLAGS = -Fo$(WORKDIR)\ -Fd$(WORKDIR)\$(PROJECT)-src
+
+BUILDBIN = $(WORKDIR)\$(PROJECT).so
+BUILDPDB = $(WORKDIR)\$(PROJECT).pdb
+BUILDRES = $(WORKDIR)\$(PROJECT).res
+BUILDMFT = $(BUILDBIN).manifest
+
+RCFLAGS = $(RCFLAGS) /d BIN_NAME="$(PROJECT).so" /d LONG_NAME="cache_module for Apache"
+
+OBJECTS = \
+ $(WORKDIR)\mod_socache_dbm.obj
+
+{$(SRCDIR)}.c{$(WORKDIR)}.obj:
+ $(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
+
+$(BUILDRES): ..\..\build\win32\httpd.rc
+ $(RC) $(RCFLAGS) /i "$(BUILDINC)" /fo $(BUILDRES) ..\..\build\win32\httpd.rc
+
+$(BUILDBIN): $(OBJECTS) $(BUILDRES)
+ $(LINK) $(LFLAGS) $(OBJECTS) $(BUILDRES) $(LIBS) $(LDIRS) /pdb:$(BUILDPDB) /out:$(BUILDBIN)
+ IF EXIST $(BUILDMFT) \
+ mt -nologo -manifest $(BUILDMFT) -outputresource:$(BUILDBIN);2
+
+install: $(BUILDBIN)
Added: trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedc
===================================================================
--- trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedc (rev 0)
+++ trunk/httpd/httpd-2.4/modules/cache/NMAKEsocachedc 2014-01-30 07:34:01 UTC (rev 3229)
@@ -0,0 +1,63 @@
+# Copyright 2001-2007 The Apache Software Foundation or its licensors, as
+# applicable.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+# ====================================================================
+#
+# NMAKEmakefile cache module makefile.
+#
+# Originally contributed by Mladen Turk <mturk redhat.com>
+#
+# ====================================================================
+#
+
+TARGET=DLL
+PROJECT = mod_socache_dc
+
+!IF !DEFINED(SRCDIR) || "$(SRCDIR)" == ""
+SRCDIR = .
+!ENDIF
+
+!include <..\..\NMAKEcommon.inc>
+!include <..\..\NMAKEhttpd.inc>
+
+LDIRS = /libpath:"$(BUILDLIB)"
+LFLAGS = $(LFLAGS) user32.lib psapi.lib gdi32.lib shlwapi.lib wldap32.lib ole32.lib $(LIBAPR) $(LIBAPU) $(LIBHTTPD)
+CFLAGS = $(CFLAGS) -DCACHE_DECLARE_EXPORT -DMOD_CACHE_EXPORTS
+
+INCLUDES = -I$(SRCDIR) -I$(BUILDINC)
+PDBFLAGS = -Fo$(WORKDIR)\ -Fd$(WORKDIR)\$(PROJECT)-src
+
+BUILDBIN = $(WORKDIR)\$(PROJECT).so
+BUILDPDB = $(WORKDIR)\$(PROJECT).pdb
+BUILDRES = $(WORKDIR)\$(PROJECT).res
+BUILDMFT = $(BUILDBIN).manifest
+
+RCFLAGS = $(RCFLAGS) /d BIN_NAME="$(PROJECT).so" /d LONG_NAME="cache_module for Apache"
+
+OBJECTS = \
+ $(WORKDIR)\mod_socache_dc.obj
+
+{$(SRCDIR)}.c{$(WORKDIR)}.obj:
+ $(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
+
+$(BUILDRES): ..\..\build\win32\httpd.rc
+ $(RC) $(RCFLAGS) /i "$(BUILDINC)" /fo $(BUILDRES) ..\..\build\win32\httpd.rc
+
+$(BUILDBIN): $(OBJECTS) $(BUILDRES)
+ $(LINK) $(LFLAGS) $(OBJECTS) $(BUILDRES) $(LIBS) $(LDIRS) /pdb:$(BUILDPDB) /out:$(BUILDBIN)
+ IF EXIST $(BUILDMFT) \
+ mt -nologo -manifest $(BUILDMFT) -outputresource:$(BUILDBIN);2
+
+install: $(BUILDBIN)
10 years, 10 months
JBoss Native SVN: r3228 - trunk/httpd/httpd-2.4/srclib/apr-util.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-30 02:05:14 -0500 (Thu, 30 Jan 2014)
New Revision: 3228
Modified:
trunk/httpd/httpd-2.4/srclib/apr-util/NMAKEapu
Log:
Add missing apr_passwd.
Modified: trunk/httpd/httpd-2.4/srclib/apr-util/NMAKEapu
===================================================================
--- trunk/httpd/httpd-2.4/srclib/apr-util/NMAKEapu 2014-01-29 22:24:46 UTC (rev 3227)
+++ trunk/httpd/httpd-2.4/srclib/apr-util/NMAKEapu 2014-01-30 07:05:14 UTC (rev 3228)
@@ -94,6 +94,7 @@
$(WORKDIR)\apr_md4.obj \
$(WORKDIR)\apr_md5.obj \
$(WORKDIR)\apr_sha1.obj \
+ $(WORKDIR)\apr_apr_passwd.obj \
$(WORKDIR)\getuuid.obj \
$(WORKDIR)\uuid.obj \
$(WORKDIR)\apr_dbd.obj \
10 years, 10 months
JBoss Native SVN: r3227 - trunk/httpd/httpd-2.4/srclib/pcre.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 17:24:46 -0500 (Wed, 29 Jan 2014)
New Revision: 3227
Added:
trunk/httpd/httpd-2.4/srclib/pcre/pcre_chartables.c
Modified:
trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
Log:
copying doesn't work, just add the file in repo.
Modified: trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 21:54:24 UTC (rev 3226)
+++ trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 22:24:46 UTC (rev 3227)
@@ -80,14 +80,11 @@
$(WORKDIR) :
@$(MAKEWORKDIR)
-.SUFFIXES : .h.generic .c.dist
+.SUFFIXES : .h.generic
{$(SRCDIR)}.h.generic{$(SRCDIR)}.h:
@copy /Y $< $@ >NUL
-{$(SRCDIR)}.c.dist{$(SRCDIR)}.c:
- @copy /Y $< $@ >NUL
-
{$(SRCDIR)}.c{$(WORKDIR)}.obj:
$(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
Added: trunk/httpd/httpd-2.4/srclib/pcre/pcre_chartables.c
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/pcre_chartables.c (rev 0)
+++ trunk/httpd/httpd-2.4/srclib/pcre/pcre_chartables.c 2014-01-29 22:24:46 UTC (rev 3227)
@@ -0,0 +1,198 @@
+/*************************************************
+* Perl-Compatible Regular Expressions *
+*************************************************/
+
+/* This file contains character tables that are used when no external tables
+are passed to PCRE by the application that calls it. The tables are used only
+for characters whose code values are less than 256.
+
+This is a default version of the tables that assumes ASCII encoding. A program
+called dftables (which is distributed with PCRE) can be used to build
+alternative versions of this file. This is necessary if you are running in an
+EBCDIC environment, or if you want to default to a different encoding, for
+example ISO-8859-1. When dftables is run, it creates these tables in the
+current locale. If PCRE is configured with --enable-rebuild-chartables, this
+happens automatically.
+
+The following #includes are present because without them gcc 4.x may remove the
+array definition from the final binary if PCRE is built into a static library
+and dead code stripping is activated. This leads to link errors. Pulling in the
+header ensures that the array gets flagged as "someone outside this compilation
+unit might reference this" and so it will always be supplied to the linker. */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "pcre_internal.h"
+
+const pcre_uint8 PRIV(default_tables)[] = {
+
+/* This table is a lower casing table. */
+
+ 0, 1, 2, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, 57, 58, 59, 60, 61, 62, 63,
+ 64, 97, 98, 99,100,101,102,103,
+ 104,105,106,107,108,109,110,111,
+ 112,113,114,115,116,117,118,119,
+ 120,121,122, 91, 92, 93, 94, 95,
+ 96, 97, 98, 99,100,101,102,103,
+ 104,105,106,107,108,109,110,111,
+ 112,113,114,115,116,117,118,119,
+ 120,121,122,123,124,125,126,127,
+ 128,129,130,131,132,133,134,135,
+ 136,137,138,139,140,141,142,143,
+ 144,145,146,147,148,149,150,151,
+ 152,153,154,155,156,157,158,159,
+ 160,161,162,163,164,165,166,167,
+ 168,169,170,171,172,173,174,175,
+ 176,177,178,179,180,181,182,183,
+ 184,185,186,187,188,189,190,191,
+ 192,193,194,195,196,197,198,199,
+ 200,201,202,203,204,205,206,207,
+ 208,209,210,211,212,213,214,215,
+ 216,217,218,219,220,221,222,223,
+ 224,225,226,227,228,229,230,231,
+ 232,233,234,235,236,237,238,239,
+ 240,241,242,243,244,245,246,247,
+ 248,249,250,251,252,253,254,255,
+
+/* This table is a case flipping table. */
+
+ 0, 1, 2, 3, 4, 5, 6, 7,
+ 8, 9, 10, 11, 12, 13, 14, 15,
+ 16, 17, 18, 19, 20, 21, 22, 23,
+ 24, 25, 26, 27, 28, 29, 30, 31,
+ 32, 33, 34, 35, 36, 37, 38, 39,
+ 40, 41, 42, 43, 44, 45, 46, 47,
+ 48, 49, 50, 51, 52, 53, 54, 55,
+ 56, 57, 58, 59, 60, 61, 62, 63,
+ 64, 97, 98, 99,100,101,102,103,
+ 104,105,106,107,108,109,110,111,
+ 112,113,114,115,116,117,118,119,
+ 120,121,122, 91, 92, 93, 94, 95,
+ 96, 65, 66, 67, 68, 69, 70, 71,
+ 72, 73, 74, 75, 76, 77, 78, 79,
+ 80, 81, 82, 83, 84, 85, 86, 87,
+ 88, 89, 90,123,124,125,126,127,
+ 128,129,130,131,132,133,134,135,
+ 136,137,138,139,140,141,142,143,
+ 144,145,146,147,148,149,150,151,
+ 152,153,154,155,156,157,158,159,
+ 160,161,162,163,164,165,166,167,
+ 168,169,170,171,172,173,174,175,
+ 176,177,178,179,180,181,182,183,
+ 184,185,186,187,188,189,190,191,
+ 192,193,194,195,196,197,198,199,
+ 200,201,202,203,204,205,206,207,
+ 208,209,210,211,212,213,214,215,
+ 216,217,218,219,220,221,222,223,
+ 224,225,226,227,228,229,230,231,
+ 232,233,234,235,236,237,238,239,
+ 240,241,242,243,244,245,246,247,
+ 248,249,250,251,252,253,254,255,
+
+/* This table contains bit maps for various character classes. Each map is 32
+bytes long and the bits run from the least significant end of each byte. The
+classes that have their own maps are: space, xdigit, digit, upper, lower, word,
+graph, print, punct, and cntrl. Other classes are built from combinations. */
+
+ 0x00,0x3e,0x00,0x00,0x01,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
+ 0x7e,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0xfe,0xff,0xff,0x07,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0x07,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
+ 0xfe,0xff,0xff,0x87,0xfe,0xff,0xff,0x07,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,
+ 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0xfc,
+ 0x01,0x00,0x00,0xf8,0x01,0x00,0x00,0x78,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+ 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+
+/* This table identifies various classes of character by individual bits:
+ 0x01 white space character
+ 0x02 letter
+ 0x04 decimal digit
+ 0x08 hexadecimal digit
+ 0x10 alphanumeric or '_'
+ 0x80 regular expression metacharacter or binary zero
+*/
+
+ 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */
+ 0x00,0x01,0x01,0x01,0x01,0x01,0x00,0x00, /* 8- 15 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 16- 23 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 24- 31 */
+ 0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x00, /* - ' */
+ 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x00, /* ( - / */
+ 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, /* 0 - 7 */
+ 0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x80, /* 8 - ? */
+ 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* @ - G */
+ 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* H - O */
+ 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* P - W */
+ 0x12,0x12,0x12,0x80,0x80,0x00,0x80,0x10, /* X - _ */
+ 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* ` - g */
+ 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* h - o */
+ 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* p - w */
+ 0x12,0x12,0x12,0x80,0x80,0x00,0x00,0x00, /* x -127 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 128-135 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 136-143 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 144-151 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 152-159 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 160-167 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 168-175 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 176-183 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 184-191 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 192-199 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 200-207 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 208-215 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 216-223 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 224-231 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 232-239 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 240-247 */
+ 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};/* 248-255 */
+
+/* End of pcre_chartables.c */
10 years, 10 months
JBoss Native SVN: r3226 - trunk/httpd/httpd-2.4/srclib/pcre.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 16:54:24 -0500 (Wed, 29 Jan 2014)
New Revision: 3226
Modified:
trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
Log:
Add a rule to copy pcre_chartables.c.dist
Modified: trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 20:32:21 UTC (rev 3225)
+++ trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 21:54:24 UTC (rev 3226)
@@ -80,10 +80,14 @@
$(WORKDIR) :
@$(MAKEWORKDIR)
-.SUFFIXES : .h.generic
+.SUFFIXES : .h.generic .c.dist
{$(SRCDIR)}.h.generic{$(SRCDIR)}.h:
@copy /Y $< $@ >NUL
+
+{$(SRCDIR)}.c.dist{$(SRCDIR)}.c:
+ @copy /Y $< $@ >NUL
+
{$(SRCDIR)}.c{$(WORKDIR)}.obj:
$(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
10 years, 10 months
JBoss Native SVN: r3225 - trunk/httpd/httpd-2.4/srclib/pcre.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 15:32:21 -0500 (Wed, 29 Jan 2014)
New Revision: 3225
Modified:
trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
Log:
it contains the missing pcre_free, pcre_malloc and pcre_callout.
Modified: trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 20:25:10 UTC (rev 3224)
+++ trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 20:32:21 UTC (rev 3225)
@@ -53,6 +53,7 @@
$(WORKDIR)\pcre_get.obj \
$(WORKDIR)\pcre_maketables.obj \
$(WORKDIR)\pcre_fullinfo.obj \
+ $(WORKDIR)\pcre_globals.obj \
$(WORKDIR)\pcre_compile.obj \
$(WORKDIR)\pcre_chartables.obj \
$(WORKDIR)\pcre_tables.obj \
10 years, 10 months
JBoss Native SVN: r3224 - trunk/httpd/httpd-2.4/srclib/pcre.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 15:25:10 -0500 (Wed, 29 Jan 2014)
New Revision: 3224
Removed:
trunk/httpd/httpd-2.4/srclib/pcre/chartables.c
Modified:
trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
Log:
In fact pcre_chartables.c should be used.
Modified: trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 15:26:09 UTC (rev 3223)
+++ trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 20:25:10 UTC (rev 3224)
@@ -54,7 +54,7 @@
$(WORKDIR)\pcre_maketables.obj \
$(WORKDIR)\pcre_fullinfo.obj \
$(WORKDIR)\pcre_compile.obj \
- $(WORKDIR)\chartables.obj \
+ $(WORKDIR)\pcre_chartables.obj \
$(WORKDIR)\pcre_tables.obj \
$(WORKDIR)\pcre_exec.obj \
$(WORKDIR)\pcre_newline.obj \
Deleted: trunk/httpd/httpd-2.4/srclib/pcre/chartables.c
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/chartables.c 2014-01-29 15:26:09 UTC (rev 3223)
+++ trunk/httpd/httpd-2.4/srclib/pcre/chartables.c 2014-01-29 20:25:10 UTC (rev 3224)
@@ -1,183 +0,0 @@
-/*************************************************
-* Perl-Compatible Regular Expressions *
-*************************************************/
-
-/* This file is automatically written by the dftables auxiliary
-program. If you edit it by hand, you might like to edit the Makefile to
-prevent its ever being regenerated.
-
-This file is #included in the compilation of pcre.c to build the default
-character tables which are used when no tables are passed to the compile
-function. */
-
-static unsigned char pcre_default_tables[] = {
-
-/* This table is a lower casing table. */
-
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, 30, 31,
- 32, 33, 34, 35, 36, 37, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55,
- 56, 57, 58, 59, 60, 61, 62, 63,
- 64, 97, 98, 99,100,101,102,103,
- 104,105,106,107,108,109,110,111,
- 112,113,114,115,116,117,118,119,
- 120,121,122, 91, 92, 93, 94, 95,
- 96, 97, 98, 99,100,101,102,103,
- 104,105,106,107,108,109,110,111,
- 112,113,114,115,116,117,118,119,
- 120,121,122,123,124,125,126,127,
- 128,129,130,131,132,133,134,135,
- 136,137,138,139,140,141,142,143,
- 144,145,146,147,148,149,150,151,
- 152,153,154,155,156,157,158,159,
- 160,161,162,163,164,165,166,167,
- 168,169,170,171,172,173,174,175,
- 176,177,178,179,180,181,182,183,
- 184,185,186,187,188,189,190,191,
- 192,193,194,195,196,197,198,199,
- 200,201,202,203,204,205,206,207,
- 208,209,210,211,212,213,214,215,
- 216,217,218,219,220,221,222,223,
- 224,225,226,227,228,229,230,231,
- 232,233,234,235,236,237,238,239,
- 240,241,242,243,244,245,246,247,
- 248,249,250,251,252,253,254,255,
-
-/* This table is a case flipping table. */
-
- 0, 1, 2, 3, 4, 5, 6, 7,
- 8, 9, 10, 11, 12, 13, 14, 15,
- 16, 17, 18, 19, 20, 21, 22, 23,
- 24, 25, 26, 27, 28, 29, 30, 31,
- 32, 33, 34, 35, 36, 37, 38, 39,
- 40, 41, 42, 43, 44, 45, 46, 47,
- 48, 49, 50, 51, 52, 53, 54, 55,
- 56, 57, 58, 59, 60, 61, 62, 63,
- 64, 97, 98, 99,100,101,102,103,
- 104,105,106,107,108,109,110,111,
- 112,113,114,115,116,117,118,119,
- 120,121,122, 91, 92, 93, 94, 95,
- 96, 65, 66, 67, 68, 69, 70, 71,
- 72, 73, 74, 75, 76, 77, 78, 79,
- 80, 81, 82, 83, 84, 85, 86, 87,
- 88, 89, 90,123,124,125,126,127,
- 128,129,130,131,132,133,134,135,
- 136,137,138,139,140,141,142,143,
- 144,145,146,147,148,149,150,151,
- 152,153,154,155,156,157,158,159,
- 160,161,162,163,164,165,166,167,
- 168,169,170,171,172,173,174,175,
- 176,177,178,179,180,181,182,183,
- 184,185,186,187,188,189,190,191,
- 192,193,194,195,196,197,198,199,
- 200,201,202,203,204,205,206,207,
- 208,209,210,211,212,213,214,215,
- 216,217,218,219,220,221,222,223,
- 224,225,226,227,228,229,230,231,
- 232,233,234,235,236,237,238,239,
- 240,241,242,243,244,245,246,247,
- 248,249,250,251,252,253,254,255,
-
-/* This table contains bit maps for various character classes.
-Each map is 32 bytes long and the bits run from the least
-significant end of each byte. The classes that have their own
-maps are: space, xdigit, digit, upper, lower, word, graph
-print, punct, and cntrl. Other classes are built from combinations. */
-
- 0x00,0x3e,0x00,0x00,0x01,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
- 0x7e,0x00,0x00,0x00,0x7e,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0xfe,0xff,0xff,0x07,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0x07,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0x00,0x00,0xff,0x03,
- 0xfe,0xff,0xff,0x87,0xfe,0xff,0xff,0x07,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0xfe,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,
- 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0x00,0x00,0x00,0x00,0xfe,0xff,0x00,0xfc,
- 0x01,0x00,0x00,0xf8,0x01,0x00,0x00,0x78,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
- 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
-
-/* This table identifies various classes of character by individual bits:
- 0x01 white space character
- 0x02 letter
- 0x04 decimal digit
- 0x08 hexadecimal digit
- 0x10 alphanumeric or '_'
- 0x80 regular expression metacharacter or binary zero
-*/
-
- 0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 0- 7 */
- 0x00,0x01,0x01,0x00,0x01,0x01,0x00,0x00, /* 8- 15 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 16- 23 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 24- 31 */
- 0x01,0x00,0x00,0x00,0x80,0x00,0x00,0x00, /* - ' */
- 0x80,0x80,0x80,0x80,0x00,0x00,0x80,0x00, /* ( - / */
- 0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c,0x1c, /* 0 - 7 */
- 0x1c,0x1c,0x00,0x00,0x00,0x00,0x00,0x80, /* 8 - ? */
- 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* @ - G */
- 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* H - O */
- 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* P - W */
- 0x12,0x12,0x12,0x80,0x00,0x00,0x80,0x10, /* X - _ */
- 0x00,0x1a,0x1a,0x1a,0x1a,0x1a,0x1a,0x12, /* ` - g */
- 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* h - o */
- 0x12,0x12,0x12,0x12,0x12,0x12,0x12,0x12, /* p - w */
- 0x12,0x12,0x12,0x80,0x80,0x00,0x00,0x00, /* x -127 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 128-135 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 136-143 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 144-151 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 152-159 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 160-167 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 168-175 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 176-183 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 184-191 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 192-199 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 200-207 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 208-215 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 216-223 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 224-231 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 232-239 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, /* 240-247 */
- 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};/* 248-255 */
-
-/* End of chartables.c */
10 years, 10 months
JBoss Native SVN: r3223 - trunk/httpd/httpd-2.4/srclib/pcre.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 10:26:09 -0500 (Wed, 29 Jan 2014)
New Revision: 3223
Modified:
trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
Log:
Add missing objects.
Modified: trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile
===================================================================
--- trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 13:59:18 UTC (rev 3222)
+++ trunk/httpd/httpd-2.4/srclib/pcre/NMAKEmakefile 2014-01-29 15:26:09 UTC (rev 3223)
@@ -52,7 +52,12 @@
OBJECTS = \
$(WORKDIR)\pcre_get.obj \
$(WORKDIR)\pcre_maketables.obj \
+ $(WORKDIR)\pcre_fullinfo.obj \
$(WORKDIR)\pcre_compile.obj \
+ $(WORKDIR)\chartables.obj \
+ $(WORKDIR)\pcre_tables.obj \
+ $(WORKDIR)\pcre_exec.obj \
+ $(WORKDIR)\pcre_newline.obj \
$(WORKDIR)\pcre_study.obj
HEADERS = \
10 years, 10 months
JBoss Native SVN: r3222 - trunk/httpd/httpd-2.4.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 08:59:18 -0500 (Wed, 29 Jan 2014)
New Revision: 3222
Modified:
trunk/httpd/httpd-2.4/NMAKElibhttpd
Log:
Add more missing objects.
Modified: trunk/httpd/httpd-2.4/NMAKElibhttpd
===================================================================
--- trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-29 10:49:42 UTC (rev 3221)
+++ trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-29 13:59:18 UTC (rev 3222)
@@ -53,14 +53,19 @@
$(WORKDIR)\request.obj \
$(WORKDIR)\vhost.obj \
$(WORKDIR)\eoc_bucket.obj \
+ $(WORKDIR)\eor_bucket.obj \
$(WORKDIR)\error_bucket.obj \
$(WORKDIR)\mpm_common.obj \
$(WORKDIR)\provider.obj \
$(WORKDIR)\scoreboard.obj \
$(WORKDIR)\util.obj \
$(WORKDIR)\util_cfgtree.obj \
+ $(WORKDIR)\util_expr_eval.obj \
+ $(WORKDIR)\util_expr_scan.obj \
+ $(WORKDIR)\util_expr_parse.obj \
$(WORKDIR)\util_filter.obj \
$(WORKDIR)\util_md5.obj \
+ $(WORKDIR)\util_mutex.obj \
$(WORKDIR)\util_pcre.obj \
$(WORKDIR)\util_script.obj \
$(WORKDIR)\util_time.obj \
10 years, 10 months
JBoss Native SVN: r3221 - trunk/httpd/httpd-2.4.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-29 05:49:42 -0500 (Wed, 29 Jan 2014)
New Revision: 3221
Modified:
trunk/httpd/httpd-2.4/NMAKElibhttpd
Log:
Add missing includes and objects.
Modified: trunk/httpd/httpd-2.4/NMAKElibhttpd
===================================================================
--- trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-28 17:02:06 UTC (rev 3220)
+++ trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-29 10:49:42 UTC (rev 3221)
@@ -84,14 +84,16 @@
$(WORKDIR)\mod_so.obj
HEADERS = \
- $(SRCDIR)\include\os.h \
+ $(SRCDIR)\include\os.h \
$(SRCDIR)\include\ap_config_layout.h \
- $(SRCDIR)\modules\generators\mod_cgi.h \
$(SRCDIR)\include\mod_core.h \
$(SRCDIR)\modules\dav\main\mod_dav.h \
$(SRCDIR)\modules\filters\mod_include.h \
- $(SRCDIR)\modules\proxy\mod_proxy.h \
- $(SRCDIR)\modules\core\mod_so.h
+ $(SRCDIR)\include\mod_proxy.h \
+ $(SRCDIR)\include\mod_so.h \
+ $(SRCDIR)\include\mod_cgi.h \
+ $(SRCDIR)\include\mod_include.h \
+ $(SRCDIR)\server\test_char.h
BUILDBIN = $(WORKDIR)\$(PROJECT).dll
BUILDPDB = $(WORKDIR)\$(PROJECT).pdb
@@ -174,6 +176,9 @@
{$(SRCDIR)\modules\mappers}.c{$(WORKDIR)}.obj:
$(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
+{$(SRCDIR)\modules\core}.c{$(WORKDIR)}.obj:
+ $(CC) $(CFLAGS) $(INCLUDES) $(PDBFLAGS) $<
+
$(SRCDIR)\server\test_char.h : $(BUILDAPR) $(BUILDTCHR)
@$(BUILDTCHR) > $@
@@ -183,6 +188,18 @@
$(SRCDIR)\include\ap_config_layout.h: $(SRCDIR)\os\win32\win32_config_layout.h
@copy /Y $(SRCDIR)\os\win32\win32_config_layout.h $(SRCDIR)\include\ap_config_layout.h >NUL
+$(SRCDIR)\include\mod_proxy.h: $(SRCDIR)\modules\proxy\mod_proxy.h
+ @copy /Y $(SRCDIR)\modules\proxy\mod_proxy.h $(SRCDIR)\include\mod_proxy.h >NUL
+
+$(SRCDIR)\include\mod_so.h: $(SRCDIR)\modules\core\mod_so.h
+ @copy /Y $(SRCDIR)\modules\core\mod_so.h $(SRCDIR)\include\mod_so.h >NUL
+
+$(SRCDIR)\include\mod_cgi.h: $(SRCDIR)\modules\generators\mod_cgi.h
+ @copy /Y $(SRCDIR)\modules\generators\mod_cgi.h $(SRCDIR)\include\mod_cgi.h >NUL
+
+$(SRCDIR)\include\mod_include.h: $(SRCDIR)\modules\filters\mod_include.h
+ @copy /Y $(SRCDIR)\modules\filters\mod_include.h $(SRCDIR)\include\mod_include.h >NUL
+
{$(SRCDIR)\modules\arch\win32}.h{$(SRCDIR)\include}.h:
@copy /Y $< $@ >NUL
10 years, 10 months
JBoss Native SVN: r3220 - trunk/httpd/httpd-2.4.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2014-01-28 12:02:06 -0500 (Tue, 28 Jan 2014)
New Revision: 3220
Modified:
trunk/httpd/httpd-2.4/NMAKElibhttpd
Log:
Add win32 ap_config_layout.h
Modified: trunk/httpd/httpd-2.4/NMAKElibhttpd
===================================================================
--- trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-28 15:54:15 UTC (rev 3219)
+++ trunk/httpd/httpd-2.4/NMAKElibhttpd 2014-01-28 17:02:06 UTC (rev 3220)
@@ -85,6 +85,7 @@
HEADERS = \
$(SRCDIR)\include\os.h \
+ $(SRCDIR)\include\ap_config_layout.h \
$(SRCDIR)\modules\generators\mod_cgi.h \
$(SRCDIR)\include\mod_core.h \
$(SRCDIR)\modules\dav\main\mod_dav.h \
@@ -179,6 +180,9 @@
{$(SRCDIR)\os\win32}.h{$(SRCDIR)\include}.h:
@copy /Y $< $@ >NUL
+$(SRCDIR)\include\ap_config_layout.h: $(SRCDIR)\os\win32\win32_config_layout.h
+ @copy /Y $(SRCDIR)\os\win32\win32_config_layout.h $(SRCDIR)\include\ap_config_layout.h >NUL
+
{$(SRCDIR)\modules\arch\win32}.h{$(SRCDIR)\include}.h:
@copy /Y $< $@ >NUL
10 years, 11 months