diff options
author | Olli Hauer <ohauer@FreeBSD.org> | 2012-09-09 17:01:30 +0000 |
---|---|---|
committer | Olli Hauer <ohauer@FreeBSD.org> | 2012-09-09 17:01:30 +0000 |
commit | 6cd848448fecb92e03ef692f77a22af3b027307b (patch) | |
tree | c3fb428dc42eeda79b5c4768e38db3115e56b998 /www | |
parent | 63e6d4d925255134fd57e70b445048501b93fe88 (diff) |
Notes
Diffstat (limited to 'www')
-rw-r--r-- | www/apache22/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/www/apache22/Makefile b/www/apache22/Makefile index 2b3f2812c6b6..066293121e77 100644 --- a/www/apache22/Makefile +++ b/www/apache22/Makefile @@ -47,6 +47,24 @@ WITH_HTTP_PORT?= 80 MPM_ITK_VERSION?= 20110321-01 .include "${APACHEDIR}/Makefile.options" + +# stop users from using old WITH/WITHOUT parameters +.for opt in ${OPTIONS_DEFINE} +. if defined(WITH_${opt}) || defined(WITHOUT_${opt}) +BROKEN= WITH/WITHOUT parameters are obsolete. \ + The port use the new options NG framework. Please read\ + http://wiki.freebsd.org/Ports/Options/OptionsNG +. endif +.endfor + +.for cat in ${ALL_MODULES_CATEGORIES} +. if defined(WITH_${cat}_MODULES) +BROKEN= WITH/WITHOUT_..._MODULES parameters are obsolete. \ + The port use the new options NG framework. Please read\ + http://wiki.freebsd.org/Ports/Options/OptionsNG +. endif +.endfor + .include <bsd.port.options.mk> .include "${APACHEDIR}/Makefile.doc" |