From ccc0d1eb1dda5fab0e021f7e82ac272535e56e2f Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Sun, 12 Jan 2003 03:28:13 +0000 Subject: [PATCH] Oops, had the sense of the test for the existence of alloca() backwards. --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 6775dd68..a5976872 100644 --- a/configure.in +++ b/configure.in @@ -421,7 +421,7 @@ then AC_MSG_RESULT($srcdir/popt) BUILD_POPT='$(popt_OBJS)' CFLAGS="$CFLAGS -I$srcdir/popt" - if test -z "$ALLOCA" + if test -n "$ALLOCA" then # this can be removed when/if we add an included alloca.c; see # autoconf documentation on AC_FUNC_ALLOCA -- 2.34.1