[Midnightbsd-cvs] src [11041] trunk/kerberos5/usr.bin: update build
laffer1 at midnightbsd.org
laffer1 at midnightbsd.org
Sun Jun 17 13:46:22 EDT 2018
Revision: 11041
http://svnweb.midnightbsd.org/src/?rev=11041
Author: laffer1
Date: 2018-06-17 13:46:22 -0400 (Sun, 17 Jun 2018)
Log Message:
-----------
update build
Modified Paths:
--------------
trunk/kerberos5/usr.bin/Makefile
trunk/kerberos5/usr.bin/Makefile.inc
trunk/kerberos5/usr.bin/hxtool/Makefile
trunk/kerberos5/usr.bin/kadmin/Makefile
trunk/kerberos5/usr.bin/kcc/Makefile
trunk/kerberos5/usr.bin/string2key/Makefile
Property Changed:
----------------
trunk/kerberos5/usr.bin/Makefile.inc
Modified: trunk/kerberos5/usr.bin/Makefile
===================================================================
--- trunk/kerberos5/usr.bin/Makefile 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/Makefile 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,6 +1,8 @@
-# $FreeBSD: stable/10/kerberos5/usr.bin/Makefile 233294 2012-03-22 08:48:42Z stas $
+# $MidnightBSD$
+# $FreeBSD: stable/10/kerberos5/usr.bin/Makefile 289252 2015-10-13 18:56:50Z bdrewery $
SUBDIR= hxtool kadmin kcc kdestroy kgetcred kf kinit kpasswd krb5-config ksu \
string2key verify_krb5_conf
+SUBDIR_PARALLEL=
.include <bsd.subdir.mk>
Modified: trunk/kerberos5/usr.bin/Makefile.inc
===================================================================
--- trunk/kerberos5/usr.bin/Makefile.inc 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/Makefile.inc 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,3 +1,4 @@
+# $MidnightBSD$
# $FreeBSD: stable/10/kerberos5/usr.bin/Makefile.inc 56068 2000-01-15 21:38:08Z markm $
BINDIR= /usr/bin
Property changes on: trunk/kerberos5/usr.bin/Makefile.inc
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/kerberos5/usr.bin/hxtool/Makefile
===================================================================
--- trunk/kerberos5/usr.bin/hxtool/Makefile 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/hxtool/Makefile 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,4 +1,5 @@
-# $FreeBSD: stable/10/kerberos5/usr.bin/hxtool/Makefile 276486 2014-12-31 23:25:37Z ngie $
+# $MidnightBSD$
+# $FreeBSD: stable/10/kerberos5/usr.bin/hxtool/Makefile 289042 2015-10-08 17:49:14Z bdrewery $
PROG= hxtool
MAN=
@@ -10,12 +11,12 @@
LDADD= -lhx509 -lroken -lasn1 -lcrypto -lcrypt ${LIBSL} ${LIBVERS} -ledit
SRCS= hxtool.c hxtool-commands.c hxtool-commands.h
+CLEANFILES= hxtool-commands.h hxtool-commands.c
+
hxtool-commands.h: hxtool-commands.in
${SLC} ${.ALLSRC:M*.in}
-.for ext in c o
-hxtool-commands.${ext}: hxtool-commands.h
-.endfor
+hxtool-commands.c: hxtool-commands.h
.include <bsd.prog.mk>
Modified: trunk/kerberos5/usr.bin/kadmin/Makefile
===================================================================
--- trunk/kerberos5/usr.bin/kadmin/Makefile 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/kadmin/Makefile 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,4 +1,5 @@
-# $FreeBSD: stable/10/kerberos5/usr.bin/kadmin/Makefile 236422 2012-06-01 21:26:28Z obrien $
+# $MidnightBSD$
+# $FreeBSD: stable/10/kerberos5/usr.bin/kadmin/Makefile 289042 2015-10-08 17:49:14Z bdrewery $
PROG= kadmin
MAN= kadmin.8
@@ -29,21 +30,21 @@
DPADD= ${LIBKADM5CLNT} ${LIBKADM5SRV} ${LIBHDB} ${LIBKRB5} ${LIBHX509} \
${LIBSL} ${LIBROKEN} ${LIBVERS} ${LIBASN1} \
${LIBCRYPTO} ${LIBCRYPT} ${LIBCOM_ERR} \
- ${LIBREADLINE} ${LIBNCURSES} ${LDAPDPADD}
+ ${LIBEDIT} ${LIBNCURSES} ${LDAPDPADD}
LDADD= -lkadm5clnt -lkadm5srv -lhdb -lkrb5 -lhx509 \
${LIBSL} -lroken ${LIBVERS} -lasn1 \
-lcrypto -lcrypt -lcom_err \
- -lreadline -lncurses ${LDAPLDADD}
+ -ledit -lncurses ${LDAPLDADD}
LDFLAGS=${LDAPLDFLAGS}
+CLEANFILES= kadmin-commands.h kadmin-commands.c
+
.include <bsd.prog.mk>
kadmin-commands.h: ${KRB5DIR}/kadmin/kadmin-commands.in
${SLC} ${.ALLSRC:M*.in}
-.for ext in o c
-kadmin-commands.${ext}: kadmin-commands.h
-.endfor
+kadmin-commands.c: kadmin-commands.h
.PATH: ${KRB5DIR}/kadmin
Modified: trunk/kerberos5/usr.bin/kcc/Makefile
===================================================================
--- trunk/kerberos5/usr.bin/kcc/Makefile 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/kcc/Makefile 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,4 +1,5 @@
-# $FreeBSD: stable/10/kerberos5/usr.bin/kcc/Makefile 236422 2012-06-01 21:26:28Z obrien $
+# $MidnightBSD$
+# $FreeBSD: stable/10/kerberos5/usr.bin/kcc/Makefile 289042 2015-10-08 17:49:14Z bdrewery $
PROG= kcc
MAN= klist.1 kswitch.1
@@ -19,12 +20,12 @@
kswitch.c \
copy_cred_cache.c
+CLEANFILES= kcc-commands.h kcc-commands.c
+
kcc-commands.h: kcc-commands.in
${SLC} ${.ALLSRC:M*.in}
-.for ext in c o
-kcc-commands.${ext}: kcc-commands.h
-.endfor
+kcc-commands.c: kcc-commands.h
.include <bsd.prog.mk>
Modified: trunk/kerberos5/usr.bin/string2key/Makefile
===================================================================
--- trunk/kerberos5/usr.bin/string2key/Makefile 2018-06-17 17:04:45 UTC (rev 11040)
+++ trunk/kerberos5/usr.bin/string2key/Makefile 2018-06-17 17:46:22 UTC (rev 11041)
@@ -1,4 +1,5 @@
-# $FreeBSD: stable/10/kerberos5/usr.bin/string2key/Makefile 236337 2012-05-30 22:21:25Z obrien $
+# $MidnightBSD$
+# $FreeBSD: stable/10/kerberos5/usr.bin/string2key/Makefile 287428 2015-09-03 11:33:33Z ume $
PROG= string2key
MAN= string2key.8
@@ -7,9 +8,9 @@
-I${KRB5DIR}/lib/krb5 \
-I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/lib/windc
-DPADD= ${LIBHDB} ${LIBKRB5} ${LIBROKEN} ${LIBASN1} ${LIBCRYPTO} \
+DPADD= ${LIBKRB5} ${LIBROKEN} ${LIBASN1} ${LIBCRYPTO} \
${LIBCRYPT} ${LIBVERS}
-LDADD= -lhdb -lkrb5 -lroken -lasn1 -lcrypto -lcrypt ${LIBVERS}
+LDADD= -lkrb5 -lroken -lasn1 -lcrypto -lcrypt ${LIBVERS}
.include <bsd.prog.mk>
More information about the Midnightbsd-cvs
mailing list