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:
Nicola Pero 2002-01-04 10:14:58 +00:00
parent 5c97ca2167
commit df27cb310c
2 changed files with 11 additions and 0 deletions

View file

@ -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.

View file

@ -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)