diff options
author | ru <ru@FreeBSD.org> | 2001-05-23 13:32:32 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-05-23 13:32:32 +0000 |
commit | 196fd7759f1cf679623146c047cdcd0e200c93df (patch) | |
tree | 3078c66ab78ae90eddd5390981f4b5b81f566cbe /etc | |
parent | 1f29dc129c6abe779c638f8424e0d8f8654da7f6 (diff) | |
download | FreeBSD-src-196fd7759f1cf679623146c047cdcd0e200c93df.zip FreeBSD-src-196fd7759f1cf679623146c047cdcd0e200c93df.tar.gz |
Add NO_I4B to avoid building/installing isdn4bsd package.
Prompted by: Alexandr Listopad <laa@laa.zp.ua>
MFC after: 3 days
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 10 | ||||
-rw-r--r-- | etc/defaults/make.conf | 1 |
2 files changed, 9 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index 0f3d3d5..6ff50f6 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -14,7 +14,7 @@ BIN1= amd.map apmd.conf auth.conf \ pam.conf phones pim6dd.conf pim6sd.conf \ printcap profile protocols \ rc rc.atm rc.devfs rc.diskless1 rc.diskless2 rc.firewall rc.firewall6 \ - rc.isdn rc.network rc.network6 rc.pccard rc.serial rc.shutdown \ + rc.network rc.network6 rc.pccard rc.serial rc.shutdown \ rc.syscons rc.sysctl remote rpc security services shells sysctl.conf \ syslog.conf usbd.conf \ etc.${MACHINE_ARCH}/disktab \ @@ -24,6 +24,10 @@ BIN1= amd.map apmd.conf auth.conf \ ${.CURDIR}/../usr.bin/mail/misc/mail.rc \ ${.CURDIR}/../usr.bin/locate/locate/locate.rc +.if !defined(NO_I4B) +BIN1+= rc.isdn +.endif + .if exists(${.CURDIR}/../crypto) && !defined(NO_OPENSSH) SSH= ${.CURDIR}/../crypto/openssh/ssh_config \ ${.CURDIR}/../crypto/openssh/sshd_config \ @@ -76,8 +80,10 @@ distribution: ( cd ${.CURDIR}/../gnu/usr.bin/send-pr; ${MAKE} etc-gnats-freefall ); \ ( cd ${.CURDIR}/../share/termcap; ${MAKE} etc-termcap ); \ ( cd ${.CURDIR}/../usr.sbin/rmt; ${MAKE} etc-rmt ); \ - ( cd ${.CURDIR}/isdn; ${MAKE} install ); \ pwd_mkdb -p -d ${DESTDIR}/etc ${DESTDIR}/etc/master.passwd; ) +.if !defined(NO_I4B) + ( cd ${.CURDIR}/isdn; ${MAKE} install ) +.endif .if !defined(NO_SENDMAIL) ( cd ${.CURDIR}/sendmail; ${MAKE} distribution ); .endif diff --git a/etc/defaults/make.conf b/etc/defaults/make.conf index 920f85a..9fee8f5 100644 --- a/etc/defaults/make.conf +++ b/etc/defaults/make.conf @@ -86,6 +86,7 @@ BDECFLAGS= -W -Wall -ansi -pedantic -Wbad-function-cast -Wcast-align \ #NO_CVS= true # do not build CVS #NO_BIND= true # do not build BIND #NO_FORTRAN= true # do not build g77 and related libraries +#NO_I4B= true # do not build isdn4bsd package #NO_LPR= true # do not build lpr and related programs #NO_MAILWRAPPER=true # do not build the mailwrapper(8) MTA selector #NO_MODULES= true # do not build modules with the kernel |