blob: 485b6c21a969075d04ab8da8628dcf98eb74265a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
configure.ac | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/configure.ac b/configure.ac
index 2be95ec..13e876b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1034,12 +1034,12 @@ dnl -----------------------------------------------------------------------
dnl we need to always configure imported-soft/libffi in order to be able
dnl to run "make dist"
-#if test x"$use_ffi" = xinternal; then
+if test x"$use_ffi" = xinternal; then
mkdir -p "imported-soft/libffi"
AC_CONFIG_SUBDIRS([imported-soft/libffi])
-#else
-# AC_MSG_NOTICE([Not compiling embedded copy of libffi])
-#fi
+else
+ AC_MSG_NOTICE([Not compiling embedded copy of libffi])
+fi
dnl -----------------------------------------------------------------------
dnl Dependencies between libs
|