mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Fix pkg-config configuration for libffi to make it really work on
systems where additional include options are needed. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34259 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
932cb8a0e6
commit
4538670b25
3 changed files with 2873 additions and 17035 deletions
|
@ -1,3 +1,10 @@
|
|||
2011-12-08 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* configure.ac: Fix pkg-config configuration for libffi to make it
|
||||
really work on systems where additional include options are
|
||||
needed.
|
||||
* configure: Regenerated.
|
||||
|
||||
2011-12-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/AGSParser.m: Fix suggested by Daniel Santos (ifStack was
|
||||
|
|
|
@ -2544,8 +2544,9 @@ if test "$do_broken_libffi" = "no"; then
|
|||
if test "$PKGCONFIG" = "yes"; then
|
||||
if pkg-config --exists libffi; then
|
||||
pkg_config_libffi=yes
|
||||
ffi_CFLAGS=`pkg-config --cflags libffi`
|
||||
CFLAGS="$CFLAGS $ffi_CFLAGS"
|
||||
ffi_CFLAGS=`pkg-config --cflags libffi`;
|
||||
CPPFLAGS="$CPPFLAGS $ffi_CFLAGS"
|
||||
INCLUDE_FLAGS="$INCLUDE_FLAGS $ffi_CFLAGS"
|
||||
fi
|
||||
fi
|
||||
AC_CHECK_HEADER(ffi.h, have_libffi=yes, have_libffi=no)
|
||||
|
|
Loading…
Reference in a new issue