--- pygobject-2.14.0/configure.ac 2007/11/12 00:09:09 1.1 +++ pygobject-2.14.0/configure.ac 2007/11/12 00:22:35 @@ -129,10 +129,26 @@ AC_SUBST([pygobject_CODEGEN_DEFINES]) dnl libffi AC_MSG_CHECKING(for ffi.h) -AC_TRY_CPP([#include ], pygobject_ffi_h=yes, pygobject_ffi_h=no) -if test $pygobject_ffi_h = yes; then - AC_DEFINE(HAVE_FFI_H,1,[Have ffi.h include file]) - FFI_LIBS="-lffi" +AC_ARG_WITH(libffi, + AC_HELP_STRING([--without-ffi], [Disable libffi support]), + with_ffi=$withval, + with_ffi=auto) +if test x"$with_ffi" = xno ; then + pygobject_ffi_h=disabled +else + AC_TRY_CPP([#include ], pygobject_ffi_h=yes, pygobject_ffi_h=no) + if test $pygobject_ffi_h = yes; then + AC_DEFINE(HAVE_FFI_H,1,[Have ffi.h include file]) + save_LIBS=$LIBS + if test x"$with_ffi" != xyes && test x"$with_ffi" != xauto; then + LIBS=$with_ffi + fi + AC_SEARCH_LIBS(ffi_call,ffi,FFI_LIBS=$LIBS,AC_MSG_ERROR(libffi not found)) + LIBS=$save_LIBS + fi +fi +if test x"$with_ffi" != xauto && test x"$pygobject_ffi_h" != xyes ; then + AC_MSG_ERROR([libffi requested, but ffi.h not found]) fi AC_MSG_RESULT([$pygobject_ffi_h]) AM_CONDITIONAL(HAVE_LIBFFI, test "$pygobject_ffi_h" = "yes")