fielding 99/02/10 03:48:46
Modified: . STATUS
src CHANGES Configure
Log:
Tweak modules Makefile generated by Configure so that it handles
the test case of no modules being selected.
Submitted by: [EMAIL PROTECTED]
Reviewed by: Roy Fielding, Jim Jagielski
Revision Changes Path
1.618 +1 -5 apache-1.3/STATUS
Index: STATUS
===================================================================
RCS file: /home/cvs/apache-1.3/STATUS,v
retrieving revision 1.617
retrieving revision 1.618
diff -u -r1.617 -r1.618
--- STATUS 1999/02/09 20:20:22 1.617
+++ STATUS 1999/02/10 11:48:42 1.618
@@ -1,5 +1,5 @@
1.3 STATUS:
- Last modified at [$Date: 1999/02/09 20:20:22 $]
+ Last modified at [$Date: 1999/02/10 11:48:42 $]
Release:
@@ -52,10 +52,6 @@
Allows use of C-style backslash escapes in mod_log_config format
strings
MID: <[EMAIL PROTECTED]>
Status:
-
- * [EMAIL PROTECTED]'s Configure(modules/Makefile) patch for no modules
- MID: <[EMAIL PROTECTED]>
- Status: Roy +1, Jim +1
* John Bley's [PATCH] malloc checks
MID: <[EMAIL PROTECTED]>
1.1246 +3 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1245
retrieving revision 1.1246
diff -u -r1.1245 -r1.1246
--- CHANGES 1999/02/09 20:20:25 1.1245
+++ CHANGES 1999/02/10 11:48:43 1.1246
@@ -1,5 +1,8 @@
Changes with Apache 1.3.5
+ *) Tweak modules Makefile generated by Configure so that it handles
+ the test case of no modules being selected. [EMAIL PROTECTED]
+
*) Added a <LimitExcept method ...> sectioning directive that allows
the user to assign authentication control to any HTTP method that
is *not* given in the argument list; i.e., the logical negation
1.330 +3 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.329
retrieving revision 1.330
diff -u -r1.329 -r1.330
--- Configure 1999/02/07 23:26:49 1.329
+++ Configure 1999/02/10 11:48:44 1.330
@@ -1905,10 +1905,12 @@
default: all
all clean distclean depend ::
- @for i in \$(MODULES); do \\
+ @for i in \$(MODULES) ""; do \\
+ if [ "x\$\$i" != "x" ]; then \\
echo "===> \$(SDP)modules/\$\$i"; \\
(cd \$\$i && \$(MAKE) \$(MFLAGS_STATIC) SDP='\$(SDP)'
CC='\$(CC)' AUX_CFLAGS='\$(CFLAGS)' RANLIB='\$(RANLIB)' \$@) || exit 1; \\
echo "<=== \$(SDP)modules/\$\$i"; \\
+ fi; \\
done
EOF