diff options
| author | Geoff Rehmet <csgr@FreeBSD.org> | 1994-09-29 13:06:54 +0000 |
|---|---|---|
| committer | Geoff Rehmet <csgr@FreeBSD.org> | 1994-09-29 13:06:54 +0000 |
| commit | c368d11dd254623bef4a57867d286025fc877b7c (patch) | |
| tree | d7768b90fa6e2ae30b1a6c769ed4e2de71513bb8 /usr.bin/su/Makefile | |
| parent | cf843099195b87fb3ef096f059cd9f72bf871bfd (diff) | |
Notes
Diffstat (limited to 'usr.bin/su/Makefile')
| -rw-r--r-- | usr.bin/su/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/usr.bin/su/Makefile b/usr.bin/su/Makefile index 33dc0620922ad..4eeb2f689ca50 100644 --- a/usr.bin/su/Makefile +++ b/usr.bin/su/Makefile @@ -2,9 +2,15 @@ PROG= su LDADD= -lcrypt -#CFLAGS+=-DKERBEROS -#DPADD= ${LIBKRB} ${LIBDES} -#LDADD+=-lkrb -ldes +DPADD= ${LIBCRYPT} + +.if exists(${DESTDIR}/usr/lib/libkrb.a) && (defined(MAKE_KERBEROS) \ + || defined(MAKE_EBONES)) +CFLAGS+=-DKERBEROS +DPADD+= ${LIBKRB} ${LIBDES} +LDADD+= -lkrb -ldes +.endif + BINOWN= root BINMODE=4555 INSTALLFLAGS=-fschg |
