aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure b/configure
index bb1f0dbc..ef90a8ba 100755
--- a/configure
+++ b/configure
@@ -127,15 +127,15 @@ EOF
fi
printf "Checking for getline... "
-if ! gcc -o getlinetest getlinetest.c > /dev/null 2>&1
+if gcc -o config/have_getline config/have_getline.c > /dev/null 2>&1
then
- printf "No.\n"
- have_getline=0
-else
printf "Yes.\n"
have_getline=1
+else
+ printf "No (will use our own instead).\n"
+ have_getline=0
fi
-rm -f getlinetest
+rm -f config/have_getline
cat <<EOF