diff options
author | Ben Gamari <ben@smart-cactus.org> | 2021-09-17 17:53:39 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-09-23 16:00:18 -0400 |
commit | 316ac68fb88e2d61e2dc07c2a75bcfb6d43e0d43 (patch) | |
tree | 76bcd01d1394c79e8187ab58d171b4661e0e3399 /configure.ac | |
parent | 0282706681ccc7748082c8ada61a7ca916fcc820 (diff) | |
download | haskell-316ac68fb88e2d61e2dc07c2a75bcfb6d43e0d43.tar.gz |
configure: Clarify meaning of CabalHaveLibffi
Previously the meaning of this flag was unclear and as a result I
suspect that CabalHaveLibffi could be incorrectly False.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 84d7e0fd87..a1a561d70e 100644 --- a/configure.ac +++ b/configure.ac @@ -1117,7 +1117,6 @@ AC_ARG_WITH([ffi-libraries], AC_SUBST(FFILibDir) -AC_SUBST([CabalHaveLibffi],[False]) AS_IF([test "$UseSystemLibFFI" = "YES"], [ CFLAGS2="$CFLAGS" CFLAGS="$LIBFFI_CFLAGS $CFLAGS" @@ -1134,8 +1133,7 @@ AS_IF([test "$UseSystemLibFFI" = "YES"], [ fi AC_CHECK_LIB(ffi, ffi_call, [AC_CHECK_HEADERS([ffi.h], [break], []) - AC_DEFINE([HAVE_LIBFFI], [1], [Define to 1 if you have libffi.])] - AC_SUBST([CabalHaveLibffi],[True]), + AC_DEFINE([HAVE_SYSTEM_LIBFFI], [1], [Define to 1 if you have libffi.])], [AC_MSG_ERROR([Cannot find system libffi])]) CFLAGS="$CFLAGS2" LDFLAGS="$LDFLAGS2" |