jim 97/07/24 19:10:47
Modified: src Configure Log: Oops... we should actually check the return value of the ANSI test :) Revision Changes Path 1.122 +10 -1 apache/src/Configure Index: Configure =================================================================== RCS file: /export/home/cvs/apache/src/Configure,v retrieving revision 1.121 retrieving revision 1.122 diff -u -r1.121 -r1.122 --- Configure 1997/07/25 02:03:15 1.121 +++ Configure 1997/07/25 02:10:46 1.122 @@ -704,7 +704,16 @@ #################################################################### # Use TestCompile to see if $(CC) is ANSI # -./helpers/TestCompile ansi +if ./helpers/TestCompile ansi; then + : +else + echo "** A test compilation with your Makefile configuration" + echo "** failed. This is mostly like since your C compiler" + echo "** is not ANSI. Apache requires an ANSI C Compiler, such" + echo "** as gcc." + echo " Aborting!" + exit 1 +fi #################################################################### # Use TestCompile to look for various LIBS