On netbsd, Use -Wl to pass linker options.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17513 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-08-23 03:02:47 +00:00
parent c4c66812d1
commit f169c339f3
3 changed files with 790 additions and 378 deletions

View file

@ -1,3 +1,7 @@
2003-08-22 Adam Fedor <fedor@gnu.org>
* configure.ac: On netbsd, Use -Wl to pass linker options.
2003-08-05 Martin Brecher <martin@mb-itconsulting.com>
* Documentation/openapp.1: New file.
* Documentation/GNUstep.7: Updated. File is now unprocessed.

1162
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -66,7 +66,7 @@ case "$target_os" in
INCLUDE_FLAGS="$INCLUDE_FLAGS -I/usr/local/include"
LIBS="$LIBS -L/usr/local/lib";;
netbsd*) INCLUDE_FLAGS="$INCLUDE_FLAGS -I/usr/pkg/include"
LIBS="$LIBS -R/usr/pkg/lib -L/usr/pkg/lib";;
LIBS="$LIBS -Wl,-R/usr/pkg/lib -L/usr/pkg/lib";;
esac
# Save the user supplied CPPFLAGS so we can restore them later.
user_CPPFLAGS="$CPPFLAGS"