summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>2000-06-16 23:32:37 +0000
committerthorpej <thorpej@NetBSD.org>2000-06-16 23:32:37 +0000
commitb4bbc15da4f69ca1af13267da616a98afbd27b88 (patch)
treeaf45999abbfee57fe394b4f44c31f66e3b925805 /libexec
parent8b48fb7c4566119ea01cdb5214c453f4af98581b (diff)
Import libexec portions of Heimdal, from cryptosrc-intl.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/hprop/Makefile39
-rw-r--r--libexec/hpropd/Makefile38
-rw-r--r--libexec/kadmind/Makefile41
-rw-r--r--libexec/kdc/Makefile46
-rw-r--r--libexec/kfd/Makefile27
-rw-r--r--libexec/kpasswdd/Makefile35
6 files changed, 226 insertions, 0 deletions
diff --git a/libexec/hprop/Makefile b/libexec/hprop/Makefile
new file mode 100644
index 00000000000..d2664ead200
--- /dev/null
+++ b/libexec/hprop/Makefile
@@ -0,0 +1,39 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:37 thorpej Exp $
+DIST= ${.CURDIR}/../../dist
+.PATH: ${DIST}/heimdal/kdc
+
+WARNS?= 1
+MKLINT= no
+
+PROG= hprop
+
+SRCS= hprop.c \
+ hprop-common.c
+
+CPPFLAGS+= -I. \
+ -I${DIST}/heimdal/kdc \
+ -I${DIST}/heimdal/lib/hdb \
+ -I${DIST}/heimdal/lib/krb5 \
+ -I${.CURDIR}/../../include/heimdal \
+ -I${DIST}/heimdal/lib/asn1 \
+ -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
+
+LDADD= -lhdb \
+ -lkrb5 \
+ -lkdb \
+ -lkrb \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+MAN= hprop.8
+
+.include <bsd.prog.mk>
diff --git a/libexec/hpropd/Makefile b/libexec/hpropd/Makefile
new file mode 100644
index 00000000000..fd2437e3cdc
--- /dev/null
+++ b/libexec/hpropd/Makefile
@@ -0,0 +1,38 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
+DIST= ${.CURDIR}/../../dist
+.PATH: ${DIST}/heimdal/kdc
+
+WARNS?= 1
+MKLINT= no
+
+PROG= hpropd
+
+SRCS= hpropd.c \
+ hprop-common.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/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
+
+LDADD= -lhdb \
+ -lkrb5 \
+ -lkdb \
+ -lkrb \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+MAN= hpropd.8
+
+.include <bsd.prog.mk>
diff --git a/libexec/kadmind/Makefile b/libexec/kadmind/Makefile
new file mode 100644
index 00000000000..0be7bd08a64
--- /dev/null
+++ b/libexec/kadmind/Makefile
@@ -0,0 +1,41 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
+DIST= ${.CURDIR}/../../dist
+.PATH: ${DIST}/heimdal/kadmin
+
+WARNS?= 1
+MKLINT= no
+
+PROG= kadmind
+
+SRCS= kadmind.c \
+ server.c \
+ version4.c
+
+CPPFLAGS+= -I. \
+ -I${DIST}/heimdal/kadmin \
+ -I${DIST}/heimdal/lib/krb5 \
+ -I${DIST}/heimdal/lib/asn1 \
+ -I${.CURDIR}/../../include/heimdal \
+ -I${DESTDIR}/usr/include/kadm5 \
+ -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
+
+LDADD= -lkadm5srv \
+ -lhdb \
+ -lkrb5 \
+ -lkadm \
+ -lkrb \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+NOMAN=
+
+.include <bsd.prog.mk>
diff --git a/libexec/kdc/Makefile b/libexec/kdc/Makefile
new file mode 100644
index 00000000000..e87067795df
--- /dev/null
+++ b/libexec/kdc/Makefile
@@ -0,0 +1,46 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
+DIST= ${.CURDIR}/../../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/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
+
+LDADD= -lhdb \
+ -lkrb5 \
+ -lkrb \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+MAN= kdc.8
+
+.include <bsd.prog.mk>
diff --git a/libexec/kfd/Makefile b/libexec/kfd/Makefile
new file mode 100644
index 00000000000..75596f59d98
--- /dev/null
+++ b/libexec/kfd/Makefile
@@ -0,0 +1,27 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
+DIST= ${.CURDIR}/../../dist
+.PATH: ${DIST}/heimdal/appl/kf
+
+WARNS?= 1
+MKLINT= no
+
+PROG= kfd
+
+SRCS= kfd.c
+
+CPPFLAGS+= -I. \
+ -I${DIST}/heimdal/appl/kf \
+ -I${.CURDIR}/../../include/heimdal \
+ -I${DESTDIR}/usr/include/krb5 \
+ -DHAVE_CONFIG_H
+
+LDADD= -lkrb5 \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+NOMAN=
+
+.include <bsd.prog.mk>
diff --git a/libexec/kpasswdd/Makefile b/libexec/kpasswdd/Makefile
new file mode 100644
index 00000000000..be0fbc7b544
--- /dev/null
+++ b/libexec/kpasswdd/Makefile
@@ -0,0 +1,35 @@
+# $NetBSD: Makefile,v 1.1.1.1 2000/06/16 23:32:38 thorpej Exp $
+DIST= ${.CURDIR}/../../dist
+.PATH: ${DIST}/heimdal/kpasswd
+
+WARNS?= 1
+MKLINT= no
+
+PROG= kpasswdd
+
+SRCS= kpasswdd.c
+
+CPPFLAGS+= -I. \
+ -I${DIST}/heimdal/kpasswd \
+ -I${.CURDIR}/../../include/heimdal \
+ -I${DESTDIR}/usr/include/kadm5 \
+ -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
+
+LDADD= -lkadm5srv \
+ -lhdb \
+ -lkrb5 \
+ -lcrypto \
+ -lasn1 \
+ -lcom_err \
+ -lroken \
+ -lcrypt
+
+MAN = kpasswdd.8
+
+.include <bsd.prog.mk>