mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Fix for NETBSD
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22324 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c31205a461
commit
6ed3076cce
2 changed files with 9 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2006-01-18 Andrew Ruder <aeruder@ksu.edu>
|
||||
|
||||
* config/addlibrarypath.m4: new file
|
||||
* configure.ac: Use new function to set library paths for netbsd
|
||||
|
||||
2006-01-17 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Tools/plget.m: New file to extract a string from a plist.
|
||||
|
|
10
configure.ac
10
configure.ac
|
@ -27,6 +27,7 @@ builtin(include, config/procfs-exe-link.m4)dnl
|
|||
builtin(include, config/procfs.m4)dnl
|
||||
builtin(include, config/pathxml.m4)dnl
|
||||
builtin(include, config/codeset.m4)dnl
|
||||
builtin(include, config/addlibrarypath.m4)dnl
|
||||
|
||||
AC_INIT
|
||||
AC_CONFIG_SRCDIR([Source/NSArray.m])
|
||||
|
@ -1213,8 +1214,7 @@ AC_ARG_WITH(ffi-library,
|
|||
[ --with-ffi-library=PATH Library path for ffi (ffcall/libffi) libs],
|
||||
ffi_libdir="$withval", ffi_libdir="no")
|
||||
if test ${ffi_libdir} != "no"; then
|
||||
LDFLAGS="$LDFLAGS -L${ffi_libdir}"
|
||||
LDIR_FLAGS="$LDIR_FLAGS -L${ffi_libdir}"
|
||||
GS_ADD_LIBRARY_PATH([${ffi_libdir}])
|
||||
fi
|
||||
|
||||
AC_CHECK_HEADER(ffi.h, have_libffi=yes, have_libffi=no)
|
||||
|
@ -1329,8 +1329,7 @@ if test $found_iconv = no ; then
|
|||
libiconv_libdir="$withval", libiconv_libdir="no")
|
||||
|
||||
if test "$libiconv_libdir" != "no"; then
|
||||
LDFLAGS="$LDFLAGS -L$libiconv_libdir"
|
||||
LDIR_FLAGS="$LDIR_FLAGS -L$libiconv_libdir"
|
||||
GS_ADD_LIBRARY_PATH([${libiconv_libdir}])
|
||||
fi
|
||||
|
||||
old_LIBS="$LIBS"
|
||||
|
@ -1454,8 +1453,7 @@ if test "$gmp_incdir" != "no"; then
|
|||
INCLUDE_FLAGS="$INCLUDE_FLAGS -I$gmp_incdir"
|
||||
fi
|
||||
if test "$gmp_libdir" != "no"; then
|
||||
LDFLAGS="$LDFLAGS -L$gmp_libdir"
|
||||
LDIR_FLAGS="$LDIR_FLAGS -L$gmp_libdir"
|
||||
GS_ADD_LIBRARY_PATH([${gmp_libdir}])
|
||||
fi
|
||||
|
||||
USE_GMP=0
|
||||
|
|
Loading…
Reference in a new issue