From 64ed411ed0747d1faf8284409ba858450baa2028 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 9 Sep 2015 06:05:21 -0700 Subject: Missing termination and else clause in configure. * configure: If we don't have alloca, we must not only print "no", but bail, because we depend on it now. If termios is not found, print no. --- configure | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 7be5cffa..36992329 100755 --- a/configure +++ b/configure @@ -2129,6 +2129,8 @@ done if [ -z "$have_alloca" ] ; then printf "no\n" + printf "TXR requires the alloca function.\n" + exit 1 fi printf "Checking for termios ... " @@ -2147,6 +2149,8 @@ if conftest ; then printf "yes\n" printf "#define HAVE_TERMIOS 1\n" >> $config_h have_termios=y +else + printf "no\n" fi # -- cgit v1.2.3