jerenkrantz 2002/08/03 13:58:55
Modified: build apr_common.m4
. CHANGES
Log:
Change config.nice generation to always expand variables.
This removes situations where an option could rely on an environment
variable that was not defined in the config.nice preamble.
"--libdir=${prefix}/lib" now is "--libdir=/my/expanded-prefix/lib"
This allows config.nice to be executed without errors out-of-the-box.
Revision Changes Path
1.38 +1 -0 apr/build/apr_common.m4
Index: apr_common.m4
===================================================================
RCS file: /home/cvs/apr/build/apr_common.m4,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- apr_common.m4 24 Jul 2002 18:33:57 -0000 1.37
+++ apr_common.m4 3 Aug 2002 20:58:55 -0000 1.38
@@ -46,6 +46,7 @@
fi
for arg in [$]0 "[$]@"; do
+ APR_EXPAND_VAR(arg, $arg)
echo "\"[$]arg\" \\" >> $1
done
echo '"[$]@"' >> $1
1.316 +3 -0 apr/CHANGES
Index: CHANGES
===================================================================
RCS file: /home/cvs/apr/CHANGES,v
retrieving revision 1.315
retrieving revision 1.316
diff -u -r1.315 -r1.316
--- CHANGES 3 Aug 2002 20:35:30 -0000 1.315
+++ CHANGES 3 Aug 2002 20:58:55 -0000 1.316
@@ -1,5 +1,8 @@
Changes with APR b1
+ *) Change config.nice generation to always expand variables.
+ [Justin Erenkrantz]
+
*) Renamed apr_strtoll()/apr_atoll() to follow int64 convention,
so these new helpers are apr_strtoi64/apr_atoi64(), since
'll' (long long) is a nonportable and aspecific construct.