diff options
author | pst <pst@FreeBSD.org> | 1996-10-09 20:34:09 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-10-09 20:34:09 +0000 |
commit | f6fcd5628924f362d20a7a4769ddcad6b76508a9 (patch) | |
tree | 411f57ee32c89113363cdb27eadf27267e0b93c2 /usr.sbin/sendmail/src | |
parent | d99784fcebe18e0aa5a12163e12f39c3cc1c41d2 (diff) | |
download | FreeBSD-src-f6fcd5628924f362d20a7a4769ddcad6b76508a9.zip FreeBSD-src-f6fcd5628924f362d20a7a4769ddcad6b76508a9.tar.gz |
Enable NIS support
Diffstat (limited to 'usr.sbin/sendmail/src')
-rw-r--r-- | usr.sbin/sendmail/src/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/usr.sbin/sendmail/src/Makefile b/usr.sbin/sendmail/src/Makefile index 86ba9d5..c85896b 100644 --- a/usr.sbin/sendmail/src/Makefile +++ b/usr.sbin/sendmail/src/Makefile @@ -17,7 +17,11 @@ PROG= sendmail # spiral snail, but it will work. DBMDEF= -DNEWDB -CFLAGS+=-I${.CURDIR} ${DBMDEF} #-DNETISO +# if you don't want NIS support, comment out this line +# FreeBSD supports NIS +NIS= -DNIS + +CFLAGS+=-I${.CURDIR} ${DBMDEF} ${NIS} #-DNETISO SRCS= alias.c arpadate.c clock.c collect.c conf.c convtime.c daemon.c \ deliver.c domain.c envelope.c err.c headers.c macro.c main.c map.c \ @@ -36,8 +40,6 @@ BINOWN= root BINMODE=4555 beforeinstall: -# ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ -# ${DESTDIR}/etc/sendmail.fc ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \ ${DESTDIR}/var/log/sendmail.st ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/sendmail.hf \ |