X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=configure.ac;h=41ceae44401dec01fd412da46ef04c1962b6d48d;hb=81797885ce38edf58d786b3e54555aca3070a08e;hp=2af7fb8d7230f69bf22a4f9c19e7259857e707d8;hpb=bf7cf64eb22477aeb712aeaeff617530353b5eb7;p=flightgear.git diff --git a/configure.ac b/configure.ac index 2af7fb8d7..41ceae444 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ AC_PREREQ(2.52) dnl Initialize the automake stuff dnl set the $host variable based on local machine/os AC_CANONICAL_TARGET -AM_INIT_AUTOMAKE(FlightGear, 0.9.9-pre1) +AM_INIT_AUTOMAKE(FlightGear, 0.9.9) dnl Checks for programs. AC_PROG_MAKE_SET @@ -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"