From: David Levine Date: Sat, 7 Jan 2012 15:17:34 +0000 (-0600) Subject: Quoted argument to AC_LINK_IFELSE to silence authoheader warnings. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/597b45b7764ccf1fc6a8cafaa4423d47e70995f5?hp=03fe41ba1d68108808c966c6d7ff74bd8c1d648c Quoted argument to AC_LINK_IFELSE to silence authoheader warnings. --- diff --git a/aclocal.m4 b/aclocal.m4 index eada9242..a7e54474 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -56,11 +56,11 @@ dnl my autoconf skills -- feel free to put it in :-> -- PMM nmh_saved_libs="$LIBS" LIBS="$nmh_libs $5 $LIBS" -AC_LINK_IFELSE(AC_LANG_PROGRAM([[ +AC_LINK_IFELSE([AC_LANG_PROGRAM([[ #define DB_DBM_HSEARCH 1 #include <$1> ]], -[[dbm_open("",0,0);]]),[nmh_ndbm_found=yes],[nmh_ndbm_found=no]) +[[dbm_open("",0,0);]])],[nmh_ndbm_found=yes],[nmh_ndbm_found=no]) LIBS="$nmh_saved_libs" if test "$nmh_ndbm_found" = "yes"; then