diff options
author | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2013-11-13 14:10:52 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@dside.dyndns.org> | 2013-11-13 14:10:52 +0100 |
commit | 6779f05cec7a5f2f5c28f62f8b02fc6cb305ba20 (patch) | |
tree | b58464625b7fddf80ce68795072dc197f00ab479 /m4 | |
parent | 62da7abf083ca1f9305f66c5f9f0683267a01e65 (diff) | |
download | librcc-6779f05cec7a5f2f5c28f62f8b02fc6cb305ba20.tar.gz librcc-6779f05cec7a5f2f5c28f62f8b02fc6cb305ba20.tar.bz2 librcc-6779f05cec7a5f2f5c28f62f8b02fc6cb305ba20.tar.xz librcc-6779f05cec7a5f2f5c28f62f8b02fc6cb305ba20.zip |
Fix build system for compatibility with latest versions of automake
Diffstat (limited to 'm4')
-rw-r--r-- | m4/aspell.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/aspell.m4 b/m4/aspell.m4 index 164e534..5e50c1d 100644 --- a/m4/aspell.m4 +++ b/m4/aspell.m4 @@ -18,7 +18,7 @@ CFLAGS="$CFLAGS $ASPELL_CFLAGS" LIBS="$LIBS $ASPELL_LIBS" AC_MSG_CHECKING([for Aspell]) -AC_RUN_IFELSE([ +AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include <aspell.h> int main() { @@ -26,7 +26,7 @@ int main() { exit(0); } -], [found=yes], [found=no], [found=yes]) +]])], [found=yes], [found=no], [found=yes]) AC_MSG_RESULT($found) CFLAGS="$ac_save_CFLAGS" |