summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-03-24 04:28:07 +0000
committerTheodore Tso <tytso@mit.edu>1995-03-24 04:28:07 +0000
commit6b29305dbf20e99c8e3ed6872810f96dc049cd57 (patch)
tree92796e84d2682276f0b4008355fd0a2a39d4540d /src
parentd757d388355717227149a38b507407ae320a0ad2 (diff)
Makefile.in (krshd): Move $(K4LIB) after $(KLIB) so that if
we're using des425, the V5 crypto library can be picked up. configure.in: Use the correct path to find libdes425 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5214 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/appl/bsd/ChangeLog7
-rw-r--r--src/appl/bsd/Makefile.in2
-rw-r--r--src/appl/bsd/configure.in2
3 files changed, 9 insertions, 2 deletions
diff --git a/src/appl/bsd/ChangeLog b/src/appl/bsd/ChangeLog
index 9f38f19bff..66c703db27 100644
--- a/src/appl/bsd/ChangeLog
+++ b/src/appl/bsd/ChangeLog
@@ -1,3 +1,10 @@
+Thu Mar 23 23:23:25 1995 Theodore Y. Ts'o <tytso@dcl>
+
+ * Makefile.in (krshd): Move $(K4LIB) after $(KLIB) so that if
+ we're using des425, the V5 crypto library can be picked up.
+
+ * configure.in: Use the correct path to find libdes425
+
Thu Mar 23 20:22:57 1995 Mark Eichin <eichin@cygnus.com>
* logutil.c (update_wtmp): initialize ut from ent the way the V4
diff --git a/src/appl/bsd/Makefile.in b/src/appl/bsd/Makefile.in
index 54abb2ceec..8c295b92ac 100644
--- a/src/appl/bsd/Makefile.in
+++ b/src/appl/bsd/Makefile.in
@@ -52,7 +52,7 @@ install::
$(INSTALL_DATA) $(srcdir)/rlogin.M ${DESTDIR}$(CLIENT_MANDIR)/rlogin.1
krshd: krshd.o kcmd.o logutil.o forward.o $(SETENVOBJ) $(LIBOBJS) $(DEPKLIB)
- $(CC) $(CFLAGS) -o krshd krshd.o kcmd.o logutil.o forward.o $(SETENVOBJ) $(LIBOBJS) $(K4LIB) $(KLIB) $(LIBS)
+ $(CC) $(CFLAGS) -o krshd krshd.o kcmd.o logutil.o forward.o $(SETENVOBJ) $(LIBOBJS) $(KLIB) $(K4LIB) $(LIBS)
install::
$(INSTALL_PROGRAM) krshd $(DESTDIR)$(SERVER_BINDIR)/krshd
diff --git a/src/appl/bsd/configure.in b/src/appl/bsd/configure.in
index ea5f95b757..f807b65a6d 100644
--- a/src/appl/bsd/configure.in
+++ b/src/appl/bsd/configure.in
@@ -57,7 +57,7 @@ PATH=$save_path
dnl
AC_ARG_WITH([krb4],[include Kerberos V4 support],
ADD_DEF(-DKRB5_KRB4_COMPAT)
-K4LIB='$(KRB4)/lib/libkrb.a $(KRB4)/lib/libdes425.a',
+K4LIB='$(KRB4)/lib/libkrb.a $(TOPLIBD)/lib/libdes425.a',
echo "warning: no krb4 backwards compatibility support"
K4LIB=)
AC_SUBST(K4LIB)