From: Tom Yu Date: Fri, 28 Mar 1997 07:19:51 +0000 (+0000) Subject: * aclocal.m4 (KRB5_LIB_AUX): add lib$(LIB)$(SHLIBVEXT) to the list X-Git-Tag: krb5-1.1-beta1~1163 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9907a3df3c39cd353543839c2cdeef39c249edab;p=krb5.git * aclocal.m4 (KRB5_LIB_AUX): add lib$(LIB)$(SHLIBVEXT) to the list of libraries that get symlinked into $(TOPLIBD). This allows linkers that look for libfoo.so.maj.min rather than libfoo.so at link time to work, e.g. NetBSD/i386. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10035 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/ChangeLog b/src/ChangeLog index 8e898a4fd..b1229366d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,10 @@ +Fri Mar 28 02:18:20 1997 Tom Yu + + * aclocal.m4 (KRB5_LIB_AUX): add lib$(LIB)$(SHLIBVEXT) to the list + of libraries that get symlinked into $(TOPLIBD). This allows + linkers that look for libfoo.so.maj.min rather than libfoo.so at + link time to work, e.g. NetBSD/i386. + Wed Mar 19 15:43:27 1997 Theodore Y. Ts'o * Makefile.in: Fix up Macintosh and Windows build rules now that diff --git a/src/aclocal.m4 b/src/aclocal.m4 index d6cbc7606..6fa159777 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -1071,9 +1071,9 @@ AC_ARG_ENABLE([shared], *) AC_MSG_RESULT([Enabling shared libraries.]) LIBLIST="$LIBLIST "'lib$(LIB)$(SHLIBEXT)' - LIBLINKS="$LIBLINKS "'$(TOPLIBD)/lib$(LIB)$(SHLIBEXT)' + LIBLINKS="$LIBLINKS "'$(TOPLIBD)/lib$(LIB)$(SHLIBEXT) $(TOPLIBD)/lib$(LIB)$(SHLIBVEXT)' case "$SHLIBSEXT" in - .so-snobuild) + .so.s-nobuild) LIBINSTLIST="$LIBINSTLIST install-shared" ;; *)