jim 97/08/10 13:27:29
Modified: src Configure
src/helpers TestCompile
Log:
Minor change: rename 'ansi' flag of TestCompile to 'sanity', which
makes more sense
Revision Changes Path
1.127 +1 -1 apache/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache/src/Configure,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- Configure 1997/08/09 00:55:52 1.126
+++ Configure 1997/08/10 20:27:27 1.127
@@ -702,7 +702,7 @@
# check
#
echo " + doing sanity check on compiler and options"
-if ./helpers/TestCompile ansi; then
+if ./helpers/TestCompile sanity; then
:
else
echo "** A test compilation with your Makefile configuration"
1.4 +3 -3 apache/src/helpers/TestCompile
Index: TestCompile
===================================================================
RCS file: /export/home/cvs/apache/src/helpers/TestCompile,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- TestCompile 1997/08/04 23:46:00 1.3
+++ TestCompile 1997/08/10 20:27:28 1.4
@@ -9,8 +9,8 @@
# ./helpers/TestCompile lib <libname>
# Which checks to see if <libname> exists on this system
#
-# ./helpers/TestCompile ansi
-# Which checks to see if $(CC) is ANSI
+# ./helpers/TestCompile sanity
+# Which does a simple sanity check/test compile
#
# It does these by creating a small mini-makefile, based on
# ../Makefile.config and trying to compile a small dummy
@@ -53,7 +53,7 @@
ERRDIR='2>/dev/null'
fi
;;
- "ansi")
+ "sanity")
TLIB=""
if [ "$VERBOSE" = "no" ]; then
ERRDIR='2>/dev/null'