rse 99/04/22 03:19:22
Modified: src CHANGES Configure
Log:
Fix value quoting in src/Configure script for ap_config_auto.h
Submitted by: Paul Sutton <[EMAIL PROTECTED]>
Reviewed by: Ralf S. Engelschall
Revision Changes Path
1.1324 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1323
retrieving revision 1.1324
diff -u -r1.1323 -r1.1324
--- CHANGES 1999/04/22 09:58:01 1.1323
+++ CHANGES 1999/04/22 10:19:19 1.1324
@@ -1,5 +1,8 @@
Changes with Apache 1.3.7
+ *) Fix value quoting in src/Configure script for ap_config_auto.h
+ [Paul Sutton <[EMAIL PROTECTED]>]
+
*) Make sure RewriteLock can be used only in the global context, (i.e.
outside of any <VirtualHost> sections) because it's a global facility of
the rewrite engine. [Ralf S. Engelschall]
1.338 +1 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.337
retrieving revision 1.338
diff -u -r1.337 -r1.338
--- Configure 1999/03/30 08:58:33 1.337
+++ Configure 1999/04/22 10:19:20 1.338
@@ -1827,7 +1827,7 @@
TEXTRA_CFLAGS=`egrep '^EXTRA_CFLAGS=' Makefile.config | tail -1 |\
sed -e 's;^EXTRA_CFLAGS=;;' -e 's;\`.*\`;;'`
tmpstr=`echo $CFLAGS $TEXTRA_CFLAGS |\
- sed -e 's;[ ]\([+-]\);!\1;g' -e 's/\\\"/\"/g' -e
's/\([^\\]\)"/\1/g'`
+ sed -e 's;[ ]\([+-]\);!\1;g' -e 's/\([^\\]\)"/\1/g' -e
's/\\\"/\"/g'`
OIFS="$IFS"
IFS='!'
for cflag in $tmpstr; do