From: Bruno Haible <bruno@clisp.org> Date: Sun, 9 Sep 2007 17:10:10 +0000 (+0000) Subject: Oops, invert the direction of the test. X-Git-Tag: cvs-readonly~17 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=d339512e0462b528144011094b1e7f79bdab10e2;p=gnulib.git Oops, invert the direction of the test. --- diff --git a/m4/malloc.m4 b/m4/malloc.m4 index 36ca01a151..764f2a9fa1 100644 --- a/m4/malloc.m4 +++ b/m4/malloc.m4 @@ -33,7 +33,7 @@ AC_DEFUN([gl_CHECK_MALLOC_POSIX], dnl some systems go to their knees when you do that. So assume that dnl all Unix implementations of the function are POSIX compliant. AC_TRY_COMPILE([], - [#if !((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) + [#if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ choke me #endif ], [gl_cv_func_malloc_posix=yes], [gl_cv_func_malloc_posix=no])