]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Check to see if the -lgen library exists; if so, add it to the
authorTheodore Tso <tytso@mit.edu>
Fri, 8 Nov 1996 22:43:05 +0000 (22:43 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 8 Nov 1996 22:43:05 +0000 (22:43 +0000)
SHLIB_LIBS line, since it will be needed by an_to_ln.c, in all
probability.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@9346 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/ChangeLog
src/lib/krb5/Makefile.in
src/lib/krb5/configure.in

index 0c5fd26115166f46a260f49135c567433bb63199..00b17c7d8f3c4b6722fde7ce364d5272bf335d50 100644 (file)
@@ -1,3 +1,9 @@
+Wed Oct 23 01:15:40 1996  Theodore Y. Ts'o  <tytso@mit.edu>
+
+       * configure.in, Makefile.in: Check to see if the -lgen library
+               exists; if so, add it to the SHLIB_LIBS line, since it
+               will be needed by an_to_ln.c, in all probability.
+
 Fri Jun  7 17:38:09 1996  Theodore Y. Ts'o  <tytso@mit.edu>
 
        * Makefile.in (all-windows, clean-windows): Use full directory
index 964617deaea10c492925c48fa718a89669e6f081..7387c76a5cdf1942f0c693d95d8c40ac1dbcee6f 100644 (file)
@@ -22,7 +22,7 @@ COMERR_VER=@COMERR_SH_VERS@
 DEPLIBS=$(TOPLIBD)/libcrypto.$(SHEXT).$(CRYPTO_VER) \
        $(TOPLIBD)/libcom_err.$(SHEXT).$(COMERR_VER) \
        $(ANAME_DBDEP)
-SHLIB_LIBS=-lcrypto -lcom_err $(ANAME_DBLIB)
+SHLIB_LIBS=-lcrypto -lcom_err $(ANAME_DBLIB) @SHLIB_GEN@
 SHLIB_LDFLAGS= $(LDFLAGS) @SHLIB_RPATH_DIRS@   
 #      $(LD_UNRESOLVED_PREFIX)_et_list $(LD_UNRESOLVED_PREFIX)error_message
 SHLIB_LIBDIRS= @SHLIB_LIBDIRS@
index 74cc026c419d5fea6f4be4496b7c6fd1803ae104..c612ed7c952a5f48ba0725e505473d51cf3270b4 100644 (file)
@@ -13,6 +13,9 @@ ANAME_DBLIB="$kaname_libs"
 AC_SUBST(ANAME_DBDEP)
 AC_SUBST(ANAME_DBLIB)
 dnl
+AC_CHECK_LIB(gen,compile,SHLIB_GEN=-lgen,SHLIB_GEN='')
+AC_SUBST(SHLIB_GEN)
+dnl
 V5_MAKE_SHARED_LIB(libkrb5,0.1,.., ./krb5)
 CRYPTO_SH_VERS=$krb5_cv_shlib_version_libcrypto
 AC_SUBST(CRYPTO_SH_VERS)