mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix for 29291
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@30095 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
e3423f8694
commit
8476fbf103
3 changed files with 7929 additions and 8197 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-04-07 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac: Fix for bug #29291 based on suggestion by Niels Grewe
|
||||
|
||||
2010-04-06 Wolfgang Lux <wolfgang.lux@gmail.com>
|
||||
|
||||
* Source/cifframe.m (cifframe_type): Fix the defunct test for the
|
||||
|
|
17
configure.ac
17
configure.ac
|
@ -123,6 +123,19 @@ if test x"$GNUSTEP_SYSTEM_LIBRARIES" = x""; then
|
|||
GNUSTEP_SYSTEM_LIBRARIES="$GNUSTEP_SYSTEM_ROOT/Library/Libraries"
|
||||
fi
|
||||
|
||||
if test x"$GNUSTEP_IS_FLATTENED" = x"no"; then
|
||||
GNUSTEP_SYSTEM_HEADERS="$GNUSTEP_SYSTEM_HEADERS/$LIBRARY_COMBO"
|
||||
GNUSTEP_LOCAL_HEADERS="$GNUSTEP_LOCAL_HEADERS/$LIBRARY_COMBO"
|
||||
# FIXME ... check that gnustep-make exports target cpu and os
|
||||
if test x"$GNUSTEP_TARGET_CPU" = x""; then
|
||||
GNUSTEP_SYSTEM_LIBRARIES="$GNUSTEP_SYSTEM_LIBRARIES/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO"
|
||||
GNUSTEP_LOCAL_LIBRARIES="$GNUSTEP_LOCAL_LIBRARIES/$GNUSTEP_HOST_CPU/$GNUSTEP_HOST_OS/$LIBRARY_COMBO"
|
||||
else
|
||||
GNUSTEP_SYSTEM_LIBRARIES="$GNUSTEP_SYSTEM_LIBRARIES/$GNUSTEP_TARGET_CPU/$GNUSTEP_TARGET_OS/$LIBRARY_COMBO"
|
||||
GNUSTEP_LOCAL_LIBRARIES="$GNUSTEP_LOCAL_LIBRARIES/$GNUSTEP_TARGET_CPU/$GNUSTEP_TARGET_OS/$LIBRARY_COMBO"
|
||||
fi
|
||||
fi
|
||||
|
||||
#
|
||||
# Add standard library and header directories for configure to use to locate
|
||||
# plain C developer headers/libraries which haver been installed in the
|
||||
|
@ -1425,7 +1438,9 @@ if test $have_libffi = no; then
|
|||
enable_libffi=no
|
||||
# If we don't have libffi but do have ffcall, use ffcall
|
||||
if test $have_ffcall = yes; then
|
||||
enable_ffcall=yes
|
||||
if test $enable_ffcall = no; then
|
||||
AC_MSG_WARN([ffi support seems to be missing on this system ... please install a recent libffi or perhaps try enabling ffcall])
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue