From: Roy T. Fielding Date: Sun, 28 Jan 2001 07:41:15 +0000 (+0000) Subject: Replace configure --with-optim option by using and saving the X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~60 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=212fd3cf453c1729d031adf6fb41d5addd53d7dd;p=apache 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. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87887 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 30e3a7f790..9e69d1ec56 100644 --- a/CHANGES +++ b/CHANGES @@ -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 diff --git a/acinclude.m4 b/acinclude.m4 index 1b94134086..f9b9e63911 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -7,6 +7,9 @@ AC_DEFUN(APACHE_CONFIG_NICE,[ # Created by configure EOF + if test -n "$OPTIM"; then + echo "OPTIM=\"$OPTIM\"; export OPTIM" >> $1 + fi for arg in [$]0 "[$]@"; do echo "\"[$]arg\" \\" >> $1 diff --git a/configure.in b/configure.in index d253f1e617..7f00b84473 100644 --- a/configure.in +++ b/configure.in @@ -111,8 +111,8 @@ AC_CHECK_LIB(nsl, gethostbyname) 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],