aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index e183abb7..daa4aa73 100755
--- a/configure
+++ b/configure
@@ -476,6 +476,13 @@ tryboth()
476cat > $test.c << EOF 476cat > $test.c << EOF
477int foo() { return 0; } 477int foo() { return 0; }
478EOF 478EOF
479echo "Checking for compiler..." >> configure.log
480if try $CC -c $test.c; then
481 :
482else
483 echo "Missing or broken C compiler." | tee -a configure.log
484 leave 1
485fi
479echo "Checking for obsessive-compulsive compiler options..." >> configure.log 486echo "Checking for obsessive-compulsive compiler options..." >> configure.log
480if try $CC -c $CFLAGS $test.c; then 487if try $CC -c $CFLAGS $test.c; then
481 : 488 :