* aclocal.m4: Tweak the HPUX shared lib build some more. Don't
authorTom Yu <tlyu@mit.edu>
Wed, 1 Mar 2000 12:51:11 +0000 (12:51 +0000)
committerTom Yu <tlyu@mit.edu>
Wed, 1 Mar 2000 12:51:11 +0000 (12:51 +0000)
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

src/ChangeLog
src/aclocal.m4

index 9f28934dc47d367e9d18357f8d7b8913bbde0c84..a9828340b9e2e079460d0fd7e6120fadeb6d254b 100644 (file)
@@ -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.
 
index dba83554a06012fc09a00d884518f78a0dd91b4f..0ad89f1f7038f0c1883f6b18ff0ae10e48d11d22 100644 (file)
@@ -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)'