mirror of
https://github.com/gnustep/tools-make.git
synced 2025-05-29 16:31:13 +00:00
Fixed SHARED_LIBEXT for HPUX IA64
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@11976 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
5c97ca2167
commit
df27cb310c
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Jan 4 08:09:26 2002 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* target.make (SHARED_LIBEXT): For HP-UX IA64, use .so rather than
|
||||
.sl as the shared library extension (Patch from Dominique Dumont
|
||||
<domi@komarr.grenoble.hp.com>).
|
||||
|
||||
2001-12-29 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Documentation/README.NetBSD: Typos.
|
||||
|
|
|
@ -1055,7 +1055,12 @@ else
|
|||
SHARED_CFLAGS += -fPIC
|
||||
BUNDLE_CFLAGS += -fPIC
|
||||
endif
|
||||
|
||||
ifeq ($(GNUSTEP_HOST_CPU), ia64)
|
||||
SHARED_LIBEXT = .so
|
||||
else
|
||||
SHARED_LIBEXT = .sl
|
||||
endif
|
||||
|
||||
HAVE_BUNDLES = yes
|
||||
BUNDLE_LD = $(CC)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue