1994-08-09 17:07:27 +00:00
|
|
|
#
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-08-09 17:07:27 +00:00
|
|
|
#
|
|
|
|
|
1999-09-21 17:52:05 +00:00
|
|
|
SHLIB_MAJOR= 2
|
2000-12-28 10:32:02 +00:00
|
|
|
LIB= crypt
|
2003-08-17 08:28:46 +00:00
|
|
|
SHLIBDIR?= /lib
|
1999-09-21 14:44:27 +00:00
|
|
|
|
1999-09-20 12:45:49 +00:00
|
|
|
.PATH: ${.CURDIR}/../libmd
|
2003-06-02 19:29:27 +00:00
|
|
|
SRCS= crypt.c misc.c \
|
|
|
|
crypt-md5.c md5c.c \
|
|
|
|
crypt-nthash.c md4c.c
|
2001-03-27 17:27:19 +00:00
|
|
|
MAN= crypt.3
|
2000-08-22 02:15:54 +00:00
|
|
|
MLINKS= crypt.3 crypt_get_format.3 crypt.3 crypt_set_format.3
|
2001-03-21 22:54:59 +00:00
|
|
|
CFLAGS+= -I${.CURDIR}/../libmd -I${.CURDIR}/../libutil
|
2003-06-02 19:29:27 +00:00
|
|
|
|
|
|
|
# Pull in the strong crypto, if it is present.
|
2004-12-21 10:16:04 +00:00
|
|
|
.if exists(${.CURDIR}/../../secure/lib/libcrypt) && !defined(NO_CRYPT)
|
2000-12-28 10:32:02 +00:00
|
|
|
.PATH: ${.CURDIR}/../../secure/lib/libcrypt
|
2001-03-11 16:05:43 +00:00
|
|
|
SRCS+= crypt-des.c crypt-blowfish.c blowfish.c
|
|
|
|
CFLAGS+= -I${.CURDIR} -DHAS_DES -DHAS_BLOWFISH
|
2000-12-28 10:32:02 +00:00
|
|
|
.endif
|
2003-06-02 19:29:27 +00:00
|
|
|
|
2000-12-28 10:32:02 +00:00
|
|
|
# And the auth_getval() code and support.
|
|
|
|
.PATH: ${.CURDIR}/../libutil
|
|
|
|
SRCS+= auth.c property.c
|
2003-06-02 19:29:27 +00:00
|
|
|
.for sym in auth_getval property_find properties_read properties_free \
|
|
|
|
MD4Init MD4Final MD4Update MD4Pad \
|
|
|
|
MD5Init MD5Final MD5Update MD5Pad
|
2000-12-28 10:32:02 +00:00
|
|
|
CFLAGS+= -D${sym}=__${sym}
|
|
|
|
.endfor
|
2003-06-02 19:29:27 +00:00
|
|
|
|
2004-10-24 15:33:08 +00:00
|
|
|
PRECIOUSLIB=
|
1999-01-23 08:27:46 +00:00
|
|
|
|
1994-08-09 17:07:27 +00:00
|
|
|
.include <bsd.lib.mk>
|