aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2000-03-01 12:51:11 +0000
committerTom Yu <tlyu@mit.edu>2000-03-01 12:51:11 +0000
commit9b664731499c1c47f288824f82b5aab3ed647b88 (patch)
treee9ec56a14ba1236a969d539f13fe426db7659db7
parent716028865235bb0953431df6ad77af79b78d93a8 (diff)
downloadkrb5-9b664731499c1c47f288824f82b5aab3ed647b88.zip
krb5-9b664731499c1c47f288824f82b5aab3ed647b88.tar.gz
krb5-9b664731499c1c47f288824f82b5aab3ed647b88.tar.bz2
* aclocal.m4: Tweak the HPUX shared lib build some more. Don't
use $(INSTALL_PROGRAM) for shared libs, since it strips them! We should fix this at some point. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12096 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/ChangeLog4
-rw-r--r--src/aclocal.m48
2 files changed, 8 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9f28934..a982834 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
2000-03-01 Tom Yu <tlyu@mit.edu>
+ * aclocal.m4: Tweak the HPUX shared lib build some more. Don't
+ use $(INSTALL_PROGRAM) for shared libs, since it strips them! We
+ should fix this at some point.
+
* aclocal.m4: Add support for setting the INSTALL_SHLIB variable.
Tweak the HPUX shared lib build somewhat.
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index dba8355..0ad89f1 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1146,11 +1146,11 @@ alpha-dec-osf*)
#
*-*-hpux*)
PICFLAGS=+z
- INSTALL_SHLIB='$(INSTALL_PROGRAM)'
+ INSTALL_SHLIB='$(INSTALL)'
SHLIBEXT=.sl
- SHLIBVEXT='.sl.$(LIBMAJOR).$(LIBMINOR)'
- SHLIBSEXT='.sl.$(LIBMAJOR)'
- SHLIB_EXPFLAGS='+b $(SHLIB_RDIRS) $(SHLIB_DIRS) $(SHLIB_EXPLIBS)'
+ SHLIBVEXT='.$(LIBMAJOR).$(LIBMINOR)'
+ SHLIBSEXT='.$(LIBMAJOR)'
+ SHLIB_EXPFLAGS='+s +b $(SHLIB_RDIRS) $(SHLIB_DIRS) $(SHLIB_EXPLIBS)'
LDCOMBINE='ld -b +h lib$(LIB)$(SHLIBSEXT)'
CC_LINK_SHARED='$(CC) $(PROG_LIBPATH) -Wl,+s -Wl,+b,$(PROG_RPATH)'
CC_LINK_STATIC='$(CC) $(PROG_LIBPATH)'