From: brarcher Date: Mon, 14 Oct 2013 23:03:19 +0000 (+0000) Subject: Fix enable_fork check X-Git-Tag: 0.10.0~376 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=239d15682d231ab7d1cb948e0afce0ccdfb821f7;p=check Fix enable_fork check git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@838 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- diff --git a/configure.ac b/configure.ac index e28ee01..828a8f6 100644 --- a/configure.ac +++ b/configure.ac @@ -221,7 +221,7 @@ AC_CHECK_DECLS([alarm, clock_gettime, timer_create, timer_settime, timer_delete, AC_CHECK_FUNCS([setitimer]) # Checks for functions not available in Windows -if $enable_fork; then +if test "xtrue" = x"$enable_fork"; then AC_CHECK_FUNCS([fork], HAVE_FORK=1, HAVE_FORK=0) else HAVE_FORK=0