Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/usr.bin/login Approved by thorpej:



details:   https://anonhg.NetBSD.org/src/rev/d23c74df5eeb
branches:  netbsd-1-5
changeset: 488745:d23c74df5eeb
user:      mycroft <mycroft%NetBSD.org@localhost>
date:      Wed Jul 26 23:17:34 2000 +0000

description:
Approved by thorpej:
Fix library link order.

basesrc/usr.bin/login/Makefile                          1.30 -> 1.31

diffstat:

 usr.bin/login/Makefile |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (24 lines):

diff -r 2d36fdc5b06e -r d23c74df5eeb usr.bin/login/Makefile
--- a/usr.bin/login/Makefile    Wed Jul 26 23:15:49 2000 +0000
+++ b/usr.bin/login/Makefile    Wed Jul 26 23:17:34 2000 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.29.2.2 2000/06/24 06:59:36 thorpej Exp $
+#      $NetBSD: Makefile,v 1.29.2.3 2000/07/26 23:17:34 mycroft Exp $
 #      @(#)Makefile    8.1 (Berkeley) 7/19/93
 
 .include <bsd.own.mk>
@@ -21,11 +21,13 @@
 .if (${MKKERBEROS} != "no")
 SRCS+= k5login.c
 CPPFLAGS+=-DKERBEROS5 -I${DESTDIR}/usr/include/krb5
-LDADD+= -lkrb5 -lcrypto -lasn1 -lcom_err -lroken
+LDADD+= -lkrb5 -lasn1
 
 SRCS+= klogin.c
 CPPFLAGS+=-DKERBEROS -I${DESTDIR}/usr/include/kerberosIV
 LDADD+= -lkrb
+
+LDADD+=        -lcrypto -lroken -lcom_err
 .endif
 
 .include <bsd.prog.mk>



Home | Main Index | Thread Index | Old Index