Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src link against the not-installed libvers
details: https://anonhg.NetBSD.org/src/rev/766db10af09c
branches: trunk
changeset: 495737:766db10af09c
user: assar <assar%NetBSD.org@localhost>
date: Thu Aug 03 22:47:37 2000 +0000
description:
link against the not-installed libvers
diffstat:
libexec/hprop/Makefile | 6 ++++--
libexec/hpropd/Makefile | 6 ++++--
libexec/kadmind/Makefile | 6 ++++--
libexec/kdc/Makefile | 6 ++++--
libexec/kfd/Makefile | 6 ++++--
libexec/kpasswdd/Makefile | 6 ++++--
libexec/telnetd/Makefile | 6 ++++--
usr.bin/compile_et/Makefile | 6 ++++--
usr.bin/kdestroy/Makefile | 6 ++++--
usr.bin/kf/Makefile | 6 ++++--
usr.bin/kinit/Makefile | 6 ++++--
usr.bin/klist/Makefile | 6 ++++--
usr.bin/kpasswd/Makefile | 6 ++++--
usr.bin/mk_cmds/Makefile | 6 ++++--
usr.bin/string2key/Makefile | 6 ++++--
usr.bin/telnet/Makefile | 4 ++--
usr.sbin/kadmin/Makefile | 6 ++++--
usr.sbin/kstash/Makefile | 6 ++++--
usr.sbin/ktutil/Makefile | 6 ++++--
19 files changed, 74 insertions(+), 38 deletions(-)
diffs (truncated from 467 to 300 lines):
diff -r 3655a9264e00 -r 766db10af09c libexec/hprop/Makefile
--- a/libexec/hprop/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/hprop/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:09:27 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:39 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kdc
@@ -26,6 +26,8 @@
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lhdb \
-lkrb5 \
-lkdb \
@@ -33,7 +35,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/hpropd/Makefile
--- a/libexec/hpropd/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/hpropd/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:09:28 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:40 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kdc
@@ -23,6 +23,8 @@
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lhdb \
-lkrb5 \
-lkdb \
@@ -30,7 +32,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/kadmind/Makefile
--- a/libexec/kadmind/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/kadmind/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:09:28 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:40 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kadmin
@@ -27,6 +27,8 @@
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lkadm5srv \
-lhdb \
-lkrb5 \
@@ -35,7 +37,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/kdc/Makefile
--- a/libexec/kdc/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/kdc/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:09:29 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:40 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kdc
@@ -33,13 +33,15 @@
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lhdb \
-lkrb5 \
-lkrb \
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/kfd/Makefile
--- a/libexec/kfd/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/kfd/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 04:09:29 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/03 22:47:40 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/appl/kf
@@ -15,11 +15,13 @@
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/kpasswdd/Makefile
--- a/libexec/kpasswdd/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/kpasswdd/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:09:29 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:41 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kpasswd
@@ -21,13 +21,15 @@
-I${DIST}/openssl/crypto/des \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lkadm5srv \
-lhdb \
-lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c libexec/telnetd/Makefile
--- a/libexec/telnetd/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/libexec/telnetd/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.26 2000/08/03 04:09:30 assar Exp $
+# $NetBSD: Makefile,v 1.27 2000/08/03 22:47:39 assar Exp $
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
.include <bsd.own.mk>
@@ -23,7 +23,9 @@
CPPFLAGS+=-I${DESTDIR}/usr/include/krb5
CPPFLAGS+=-DKRB5
-LDADD+= -lkrb5 -lkrb -lcrypto -lasn1 -lcom_err -lvers -lroken
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
+LDADD+= -lkrb5 -lkrb -lcrypto -lasn1 -lcom_err -L${VERS} -lvers -lroken
DPADD+= ${LIBKRB5} ${LIBKRB} ${LIBCRYPTO} ${LIBASN1} ${LIBCOM_ERR} ${LIBROKEN}
.endif
diff -r 3655a9264e00 -r 766db10af09c usr.bin/compile_et/Makefile
--- a/usr.bin/compile_et/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/usr.bin/compile_et/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:02:29 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:41 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/lib/com_err
@@ -17,7 +17,9 @@
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
-LDADD= -lvers \
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
+LDADD= -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c usr.bin/kdestroy/Makefile
--- a/usr.bin/kdestroy/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/usr.bin/kdestroy/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:02:30 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:42 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kuser
@@ -18,6 +18,8 @@
-I${DESTDIR}/usr/include/openssl \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= \
-lkafs \
-lkrb5 \
@@ -25,7 +27,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c usr.bin/kf/Makefile
--- a/usr.bin/kf/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/usr.bin/kf/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2000/08/03 04:02:30 assar Exp $
+# $NetBSD: Makefile,v 1.5 2000/08/03 22:47:41 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/appl/kf
@@ -15,11 +15,13 @@
-I${DESTDIR}/usr/include/krb5 \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= -lkrb5 \
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c usr.bin/kinit/Makefile
--- a/usr.bin/kinit/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/usr.bin/kinit/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:02:31 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:41 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kuser
@@ -18,6 +18,8 @@
-I${DESTDIR}/usr/include/openssl \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= \
-lkafs \
-lkrb5 \
@@ -25,7 +27,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
-lcrypt
diff -r 3655a9264e00 -r 766db10af09c usr.bin/klist/Makefile
--- a/usr.bin/klist/Makefile Thu Aug 03 21:42:01 2000 +0000
+++ b/usr.bin/klist/Makefile Thu Aug 03 22:47:37 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.3 2000/08/03 04:02:31 assar Exp $
+# $NetBSD: Makefile,v 1.4 2000/08/03 22:47:42 assar Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/kuser
@@ -18,6 +18,8 @@
-I${DESTDIR}/usr/include/openssl \
-DHAVE_CONFIG_H
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
LDADD= \
-lkafs \
-lkrb5 \
@@ -25,7 +27,7 @@
-lcrypto \
-lasn1 \
-lcom_err \
- -lvers \
+ -L${VERS} -lvers \
-lroken \
Home |
Main Index |
Thread Index |
Old Index