Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src The Kerberos KDC belongs in /usr/sbin, not in /usr/libexec.
details: https://anonhg.NetBSD.org/src/rev/7c64ad582b2b
branches: trunk
changeset: 495797:7c64ad582b2b
user: thorpej <thorpej%NetBSD.org@localhost>
date: Sun Aug 06 19:31:24 2000 +0000
description:
The Kerberos KDC belongs in /usr/sbin, not in /usr/libexec.
diffstat:
libexec/Makefile | 4 ++--
libexec/kdc/Makefile | 51 ---------------------------------------------------
usr.sbin/Makefile | 4 ++--
usr.sbin/kdc/Makefile | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
4 files changed, 55 insertions(+), 55 deletions(-)
diffs (146 lines):
diff -r 2b6e3464f3f9 -r 7c64ad582b2b libexec/Makefile
--- a/libexec/Makefile Sun Aug 06 19:24:15 2000 +0000
+++ b/libexec/Makefile Sun Aug 06 19:31:24 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.38 2000/06/23 06:01:14 thorpej Exp $
+# $NetBSD: Makefile,v 1.39 2000/08/06 19:31:24 thorpej Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
.include <bsd.own.mk>
@@ -10,7 +10,7 @@
.if (${MKCRYPTO} != "no")
# Heimdal/KTH Kerberos
-SUBDIR+= hprop hpropd kadmind kdc kfd kpasswdd
+SUBDIR+= hprop hpropd kadmind kfd kpasswdd
.endif
.include <bsd.subdir.mk>
diff -r 2b6e3464f3f9 -r 7c64ad582b2b libexec/kdc/Makefile
--- a/libexec/kdc/Makefile Sun Aug 06 19:24:15 2000 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,51 +0,0 @@
-# $NetBSD: Makefile,v 1.5 2000/08/06 19:24:15 veego Exp $
-DIST= ${.CURDIR}/../../crypto/dist
-.PATH: ${DIST}/heimdal/kdc
-
-WARNS?= 1
-MKLINT= no
-
-PROG= kdc
-
-SRCS= 524.c \
- config.c \
- connect.c \
- kaserver.c \
- kdc_locl.h \
- kerberos4.c \
- kerberos4.h \
- kerberos5.c \
- log.c \
- main.c \
- misc.c \
-
-CPPFLAGS+= -I. \
- -I${DIST}/heimdal/kdc \
- -I${.CURDIR}/../../include/heimdal \
- -I${DIST}/heimdal/lib/asn1 \
- -I${DIST}/heimdal/lib/krb5 \
- -I${DESTDIR}/usr/include/kerberosIV \
- -I${DESTDIR}/usr/include/krb5 \
- -I${DIST}/openssl/crypto/md4 \
- -I${DIST}/openssl/crypto/md5 \
- -I${DIST}/openssl/crypto/sha \
- -I${DIST}/openssl/crypto/rc4 \
- -I${DIST}/openssl/crypto/des \
- -DHAVE_CONFIG_H
-
-VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
-
-LDADD= -lhdb \
- -lkrb5 \
- -lkrb \
- -lcrypto \
- -lasn1 \
- -lcom_err \
- -L${VERS} -lvers \
- -lroken \
- -lcrypt \
- -lutil
-
-MAN= kdc.8
-
-.include <bsd.prog.mk>
diff -r 2b6e3464f3f9 -r 7c64ad582b2b usr.sbin/Makefile
--- a/usr.sbin/Makefile Sun Aug 06 19:24:15 2000 +0000
+++ b/usr.sbin/Makefile Sun Aug 06 19:31:24 2000 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.146 2000/06/30 18:02:32 thorpej Exp $
+# $NetBSD: Makefile,v 1.147 2000/08/06 19:31:25 thorpej Exp $
# from: @(#)Makefile 5.20 (Berkeley) 6/12/93
.include <bsd.own.mk>
@@ -28,7 +28,7 @@
SUBDIR+=pvcsif pvctxctl
.if (${MKCRYPTO} != "no")
-SUBDIR+= kadmin kstash ktutil
+SUBDIR+= kadmin kdc kstash ktutil
.endif
.include <bsd.subdir.mk>
diff -r 2b6e3464f3f9 -r 7c64ad582b2b usr.sbin/kdc/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/usr.sbin/kdc/Makefile Sun Aug 06 19:31:24 2000 +0000
@@ -0,0 +1,51 @@
+# $NetBSD: Makefile,v 1.1 2000/08/06 19:31:26 thorpej Exp $
+DIST= ${.CURDIR}/../../crypto/dist
+.PATH: ${DIST}/heimdal/kdc
+
+WARNS?= 1
+MKLINT= no
+
+PROG= kdc
+
+SRCS= 524.c \
+ config.c \
+ connect.c \
+ kaserver.c \
+ kdc_locl.h \
+ kerberos4.c \
+ kerberos4.h \
+ kerberos5.c \
+ log.c \
+ main.c \
+ misc.c \
+
+CPPFLAGS+= -I. \
+ -I${DIST}/heimdal/kdc \
+ -I${.CURDIR}/../../include/heimdal \
+ -I${DIST}/heimdal/lib/asn1 \
+ -I${DIST}/heimdal/lib/krb5 \
+ -I${DESTDIR}/usr/include/kerberosIV \
+ -I${DESTDIR}/usr/include/krb5 \
+ -I${DIST}/openssl/crypto/md4 \
+ -I${DIST}/openssl/crypto/md5 \
+ -I${DIST}/openssl/crypto/sha \
+ -I${DIST}/openssl/crypto/rc4 \
+ -I${DIST}/openssl/crypto/des \
+ -DHAVE_CONFIG_H
+
+VERS!= cd ${.CURDIR}/../../lib/libvers && make print-objdir
+
+LDADD= -lhdb \
+ -lkrb5 \
+ -lkrb \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -L${VERS} -lvers \
+ -lroken \
+ -lcrypt \
+ -lutil
+
+MAN= kdc.8
+
+.include <bsd.prog.mk>
Home |
Main Index |
Thread Index |
Old Index