diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-05-02 17:12:09 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2013-10-08 20:53:23 +0200 |
commit | e67a2068e208b6c4ceabdd791e58b96030e42001 (patch) | |
tree | 230944e98e587652ee6be73bca34ff57f5011c91 /configure.ac | |
parent | 85a1b423bbd5bdc27c76c77d0b9d30174f05d6e2 (diff) | |
download | gobject-introspection-e67a2068e208b6c4ceabdd791e58b96030e42001.tar.gz |
build: actually require libffi >= 3.0.0
as documented in README...
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a73b8606..d85a131d 100644 --- a/configure.ac +++ b/configure.ac @@ -167,7 +167,7 @@ AC_SUBST(CAIRO_GIR_PACKAGE) PKG_CHECK_MODULES(SCANNER, [gobject-2.0 gio-2.0]) dnl libffi -PKG_CHECK_MODULES(FFI, libffi, have_ffi_pkgconfig=yes, have_ffi_pkgconfig=no) +PKG_CHECK_MODULES(FFI, [libffi >= 3.0.0 ], have_ffi_pkgconfig=yes, have_ffi_pkgconfig=no) FFI_PC_CFLAGS="" FFI_PC_LIBS="" FFI_PC_PACKAGES="" |