jim 97/08/10 13:28:04
Modified: src Configure src/helpers TestCompile Log: Minor change: rename 'ansi' flag of TestCompile to 'sanity', which makes more sense Revision Changes Path 1.129 +3 -1 apachen/src/Configure Index: Configure =================================================================== RCS file: /export/home/cvs/apachen/src/Configure,v retrieving revision 1.128 retrieving revision 1.129 diff -u -r1.128 -r1.129 --- Configure 1997/08/10 20:18:49 1.128 +++ Configure 1997/08/10 20:28:02 1.129 @@ -723,6 +723,8 @@ # contain modules we want to build from both AddModule and Module # lines +echo " + Adding selected modules" + MODFILES=`awk <$tmpfile '$1 == "AddModule" { printf "%s ", $2 }'` MODDIRS=`awk < $tmpfile '\ ($1 == "Module" && $3 ~ /^modules\//) { \ @@ -857,7 +859,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 apachen/src/helpers/TestCompile Index: TestCompile =================================================================== RCS file: /export/home/cvs/apachen/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:28:03 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'