configure.ac: Add flags for openbsd like freebsd.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17155 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2003-07-06 02:55:01 +00:00
parent 4d4d11949e
commit 6284e2fd88
10 changed files with 232 additions and 4 deletions

3
configure vendored
View file

@ -2343,7 +2343,8 @@ LIBS="$LDFLAGS $LIBS"
# This is just for configuring. Later, in config.make, INCLUDE_FLAGS
# goes in CONFIG_SYSTEM_INCL and LIBS goes in CONFIG_SYSTEM_LIBS
case "$target_os" in
freebsd*) CPPFLAGS="$CPPFLAGS -I/usr/local/include"
freebsd* | openbsd* )
CPPFLAGS="$CPPFLAGS -I/usr/local/include"
LDFLAGS="$LDFLAGS -L/usr/local/lib";;
netbsd*) CPPFLAGS="$CPPFLAGS -I/usr/pkg/include"
LDFLAGS="$LDFLAGS -L/usr/pkg/lib";;