From 65ca69925947aad1307e6ab2bff8501d7c49b249 Mon Sep 17 00:00:00 2001 From: Dagobert Michelsen Date: Mon, 15 Jun 2015 18:49:46 +0200 Subject: [PATCH] Fix 64 bit check issue, running the preprocessor does not honour CFLAGS which holds the relevant -m64 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8daa32b6..553aa0ab 100644 --- a/configure.ac +++ b/configure.ac @@ -115,7 +115,7 @@ then AC_DEFINE(_REENTRANT, 1, [Define to enable reentrancy interfaces.]) AC_MSG_CHECKING([whether compiler builds 64bit binaries]) - AC_PREPROC_IFELSE([AC_LANG_PROGRAM([ + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([ #ifndef _LP64 # error "Compiler not in 64bit mode." #endif -- 2.11.0