diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-03-21 09:15:39 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-03-21 09:15:39 +0000 |
| commit | 7a43a96ab0f7805f65711627ed9b8fae71ef2787 (patch) | |
| tree | 2a46595d7dbcf62515f44f58ae1d572ede6a2581 /share | |
| parent | 6a1bd01754a8b0836ba4aaa0c246ec1fa8bee31f (diff) | |
Notes
Diffstat (limited to 'share')
| -rw-r--r-- | share/examples/Makefile | 5 | ||||
| -rw-r--r-- | share/examples/etc/make.conf | 1 | ||||
| -rw-r--r-- | share/man/man5/make.conf.5 | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/share/examples/Makefile b/share/examples/Makefile index 35f35464782dc..d2cd800dd59ad 100644 --- a/share/examples/Makefile +++ b/share/examples/Makefile @@ -41,7 +41,10 @@ etc-examples: .endif .if ${SHARED} != "symlinks" -SUBDIR= ipfilter smbfs +SUBDIR= smbfs +.if !defined(NO_IPFILTER) +SUBDIR+=ipfilter +.endif .endif .include <bsd.subdir.mk> diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 076cd590b27e2..7516e80fbd7e2 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -95,6 +95,7 @@ #NO_FORTRAN= true # do not build g77 and related libraries #NO_GDB= true # do not build GDB #NO_I4B= true # do not build isdn4bsd package +#NO_IPFILTER= true # do not build IP Filter 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 diff --git a/share/man/man5/make.conf.5 b/share/man/man5/make.conf.5 index 71da97f74d9c3..89795d62e97f2 100644 --- a/share/man/man5/make.conf.5 +++ b/share/man/man5/make.conf.5 @@ -370,6 +370,9 @@ and related libraries. .It Va NO_I4B .Pq Vt bool Set to not build isdn4bsd package. +.It Va NO_IPFILTER +.Pq Vt bool +Set to not build IP Filter package. .It Va NO_LPR .Pq Vt bool Set to not build |
