jim 01/09/24 07:14:21
Modified: src CHANGES Configure
src/include ap_config.h
Log:
Submitted by: Stipe Tolj <tolj@wapme-systems.de>
Some Cygwin portability changes, from
Message-ID: <3BAB4213.74AA3C0F@wapme-systems.de>
Did not include the below patch to install.sh since this looked like
it would affect other OSs...
# Check if we need to add an executable extension (such as ".exe")
-# on specific OS to src and dst
+# on specific OS to src and dst.
+# At least Cygwin requires this to ensure a clean "make install".
if [ -f "$src.exe" ]; then
- if [ -f "$src" ]; then
- : # Cygwin [ test ] is too stupid to do [ -f "$src.exe" ] && [ ! -f "$src"
]
- else
ext=".exe"
- fi
fi
src="$src$ext"
dst="$dst$ext"
Revision Changes Path
1.1709 +2 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1708
retrieving revision 1.1709
diff -u -r1.1708 -r1.1709
--- CHANGES 2001/09/21 03:51:53 1.1708
+++ CHANGES 2001/09/24 14:14:21 1.1709
@@ -1,5 +1,7 @@
Changes with Apache 1.3.21
+ *) PORT: Some Cygwin changes. [Stipe Tolj <tolj@wapme-systems.de>]
+
*) ErrorDocument 404 pointing to a parsed html file with a
<!--#include virtual="file" --> with a request URI containing
%2f would result in a segfault (NULL pointer deref, not a
1.430 +1 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.429
retrieving revision 1.430
diff -u -r1.429 -r1.430
--- Configure 2001/07/15 10:04:35 1.429
+++ Configure 2001/09/24 14:14:21 1.430
@@ -1394,7 +1394,7 @@
SHLIB_SUFFIX_DEPTH=0
DLL_IMPORT_LIB='lib$(TARGET).a'
DLL_IMPORT_DEF='lib$(TARGET).def'
- LD_SHLIB='dllwrap --export-all --output-def $(DLL_IMPORT_DEF) --implib $(DLL_IMPORT_LIB)
--driver-name $(CC)'
+ LD_SHLIB='dllwrap --export-all --implib $(DLL_IMPORT_LIB) --driver-name $(CC)'
LD_SHCORE_LIBS='$(LIBS)'
LIBS_SHLIB='$(EXTRA_LIBS)'
SHARED_CORE_EP=''
1.313 +2 -0 apache-1.3/src/include/ap_config.h
Index: ap_config.h
===================================================================
RCS file: /home/cvs/apache-1.3/src/include/ap_config.h,v
retrieving revision 1.312
retrieving revision 1.313
diff -u -r1.312 -r1.313
--- ap_config.h 2001/09/10 17:20:12 1.312
+++ ap_config.h 2001/09/24 14:14:21 1.313
@@ -976,6 +976,8 @@
#define USE_MMAP_SCOREBOARD
#define USE_MMAP_FILES
#define HAVE_SYSLOG 1
+#define HAVE_FCNTL_SERIALIZED_ACCEPT
+#define SINGLE_LISTEN_UNSERIALIZED_ACCEPT
#else
|