From 234e64f584d7e60ff590c6620f2603d4e08bcc53 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Sat, 26 Aug 2017 10:50:30 +0200 Subject: [PATCH] Fix syntax error in configure.ac (fix #96) --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index a4bcaf5..421baef 100644 --- a/configure.ac +++ b/configure.ac @@ -51,7 +51,7 @@ if test "x$found_jemalloc" == "xyes" ; then AC_MSG_CHECKING([Checking jemalloc version]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], - [[ + [[ #ifdef JEMALLOC_VERSION_MAJOR > 2 return 0; #endif @@ -123,7 +123,8 @@ if test "x$enable_check" != "xunset" ; then PKG_CHECK_MODULES(CHECK,[check >= 0.9.4],:,[ ifdef([AM_PATH_CHECK], [AM_PATH_CHECK(,[have_check="yes"])], - AC_MSG_WARN([Check not found; cannot run unit tests!]) [have_check="no"] + AC_MSG_WARN([Check not found; cannot run unit tests!]) + [have_check="no"] )] ]) fi