Hello

On HPUX IA64, the suffix of the shared library is .so instead of .sl.

Here's a small patch so that gnustep-make can produce the correct
shared lib.

Hope this helps (and besh wishes for 2002).

-- 
[EMAIL PROTECTED]
diff -urN gnustep-make-1.0.1.old/target.make gnustep-make-1.0.1.new/target.make
--- gnustep-make-1.0.1.old/target.make	Thu May 10 22:07:23 2001
+++ gnustep-make-1.0.1.new/target.make	Thu Dec 20 11:01:50 2001
@@ -966,7 +966,13 @@
 SHARED_CFLAGS   += -fPIC
 BUNDLE_CFLAGS   += -fPIC
 endif
+
+# added by DD for ia64
+ifeq ($(GNUSTEP_HOST_CPU), ia64)
+SHARED_LIBEXT   = .so
+else
 SHARED_LIBEXT   = .sl
+endif
 
 HAVE_BUNDLES    = yes
 BUNDLE_LD	= $(CC)

Reply via email to