From 4443267e4e3349e0ed299d347b26a370c1c258bc Mon Sep 17 00:00:00 2001 From: curt Date: Tue, 22 Nov 2005 16:52:18 +0000 Subject: [PATCH] "info -f autoconf" is a beautiful thing. Fixed the configure script so we can actually configure the project without threads. Previously threads were always forced on no matter what configuration options were passed in. --- configure.ac | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index f073f2a96..41ceae444 100644 --- a/configure.ac +++ b/configure.ac @@ -74,11 +74,8 @@ AM_CONDITIONAL(ENABLE_SP_FDM, test "x$enable_sp_fdms" != "xno") dnl Thread related checks # defaults to yes -with_threads=yes -AC_ARG_WITH(threads, [ --with-threads Include tile loading threads [default=yes]]) -if test "x$with_threads" != "xyes"; then - AC_DEFINE([ENABLE_THREADS], 0, [Define to enable threaded tile paging]) -else +AC_ARG_WITH(threads, [ --with-threads Include tile loading threads [default=yes]], [], [with_threads=yes]) +if test "x$with_threads" = "xyes"; then AC_DEFINE([ENABLE_THREADS], 1, [Define to enable threaded tile paging]) CXXFLAGS="$CXXFLAGS -D_REENTRANT" CFLAGS="$CFLAGS -D_REENTRANT" -- 2.39.5