Tiny update to openbsd target code

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@17399 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2003-07-30 10:28:40 +00:00
parent ecdde45764
commit 33ce5e72b8
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
Wed Jul 30 09:52:16 2003 Nicola Pero <n.pero@mi.flashnet.it>
* target.make (BUNDLE_LDFLAGS): openbsd: use -fPIC instead of
-fpic to match the -fPIC flag used when compiling as recommended
by the gcc manual.
Tue Jul 29 12:06:02 2003 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: If flattened, add library combo to headers

View file

@ -691,12 +691,12 @@ SHARED_LIBEXT = .so
HAVE_BUNDLES = yes
BUNDLE_LD = $(CC)
BUNDLE_LDFLAGS += -shared -fpic
BUNDLE_LDFLAGS += -shared -fPIC
#ADDITIONAL_LDFLAGS += -rdynamic
STATIC_LDFLAGS += -static
endif
#
# end OpenBSD 2.x
# end OpenBSD 3.x
#
####################################################