fielding 01/01/27 23:41:15
Modified: . CHANGES acinclude.m4 configure.in
Log:
Replace configure --with-optim option by using and saving the
environment variable OPTIM instead. This is needed because configure
options do not support multiple flags separated by spaces.
Revision Changes Path
1.62 +5 -0 httpd-2.0/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/httpd-2.0/CHANGES,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- CHANGES 2001/01/28 04:07:02 1.61
+++ CHANGES 2001/01/28 07:41:15 1.62
@@ -1,5 +1,10 @@
Changes with Apache 2.0b1
+ *) Replace configure --with-optim option by using and saving the
+ environment variable OPTIM instead. This is needed because configure
+ options do not support multiple flags separated by spaces.
+ [Roy Fielding]
+
*) Fix some byterange handling. If we get a byte range that looks like
"-999999" where that is past the end of the file, we should return
a PARTIAL CONTENT status code, and return the whole file as one big
1.63 +3 -0 httpd-2.0/acinclude.m4
Index: acinclude.m4
===================================================================
RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -r1.62 -r1.63
--- acinclude.m4 2001/01/21 17:22:16 1.62
+++ acinclude.m4 2001/01/28 07:41:15 1.63
@@ -7,6 +7,9 @@
# Created by configure
EOF
+ if test -n "$OPTIM"; then
+ echo "OPTIM=\"$OPTIM\"; export OPTIM" >> $1
+ fi
for arg in [$]0 "[$]@"; do
echo "\"[$]arg\" \\" >> $1
1.117 +2 -2 httpd-2.0/configure.in
Index: configure.in
===================================================================
RCS file: /home/cvs/httpd-2.0/configure.in,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- configure.in 2001/01/28 06:46:23 1.116
+++ configure.in 2001/01/28 07:41:15 1.117
@@ -111,8 +111,8 @@
AC_CHECK_LIB(nsl, gethostname)
AC_CHECK_LIB(socket, socket)
-AC_ARG_WITH(optim,[ --with-optim="FLAGS" compiler optimisation flags],
- [if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-optim requires a
value (the optimisation flags)'); else OPTIM="$withval"; fi])
+AC_ARG_WITH(optim,[ --with-optim="FLAG" obsolete (use env OPTIM)],
+ [AC_MSG_ERROR('option --with-optim is obsolete; use OPTIM environment variable
instead')])
AC_ARG_WITH(port,[ --with-port=PORT Port on which to listen (default is 80)],
[if test "$withval" = "yes"; then AC_MSG_ERROR('option --with-port requires a value
(the TCP port number)'); else PORT="$withval"; fi],
|