diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-05-29 22:07:37 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-05-29 22:07:37 +0000 |
commit | e4bf8af6bdd6e589f4aae7bfd7a4627973e00a13 (patch) | |
tree | 88858c352d4adf5093496da576f6dc473833c9b9 /www/apache20 | |
parent | f042b7076892cecc0a754cd6d15f801ec47124d9 (diff) | |
download | ports-e4bf8af6bdd6e589f4aae7bfd7a4627973e00a13.tar.gz ports-e4bf8af6bdd6e589f4aae7bfd7a4627973e00a13.zip |
Notes
Diffstat (limited to 'www/apache20')
-rw-r--r-- | www/apache20/Makefile | 4 | ||||
-rw-r--r-- | www/apache20/Makefile.modules | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/www/apache20/Makefile b/www/apache20/Makefile index 81d048263e0a..833a0150bb03 100644 --- a/www/apache20/Makefile +++ b/www/apache20/Makefile @@ -106,7 +106,7 @@ CONFIGURE_ARGS+= --with-ldap \ # Untested and may fail ! .if defined(WITH_APR_FROM_PORTS) . if defined (WITH_BDB) || defined(WITH_BERKELEYDB) -BROKEN= "You can't set WITH_BDB or WITH_BERKELEYDB when WITH_APR_FROM_PORTS is defined" +IGNORE= "You can't set WITH_BDB or WITH_BERKELEYDB when WITH_APR_FROM_PORTS is defined" . endif LIB_DEPENDS+= apr-0.9:${PORTSDIR}/devel/apr CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-config \ @@ -115,7 +115,7 @@ CONFIGURE_ENV+= LTFLAGS="--tag=CXX" PLIST_SUB+= PORTS_APR="@comment " .else . if exists(${LOCALBASE}/lib/libapr-0.so) -BROKEN= "apr is installed and may conflict with apache one\ +IGNORE= "apr is installed and may conflict with apache one\ (if you want to use apr port define WITH_APR_FROM_PORTS,\ at your own risk)" . endif diff --git a/www/apache20/Makefile.modules b/www/apache20/Makefile.modules index 556c18a3b91c..f6c357f42d96 100644 --- a/www/apache20/Makefile.modules +++ b/www/apache20/Makefile.modules @@ -13,7 +13,7 @@ # .if defined(SLAVE_DESIGNED_FOR) && ${PORTVERSION} != ${SLAVE_DESIGNED_FOR} -BROKEN= "Sorry, ${SLAVENAME} and ${PORTNAME} versions are out of sync" +IGNORE= "Sorry, ${SLAVENAME} and ${PORTNAME} versions are out of sync" .endif # MPM section: @@ -30,7 +30,7 @@ PLIST_SUB+= PREFORK="@comment " WORKER="" . elif ${WITH_MPM:L} == "perchild" PLIST_SUB+= PREFORK="@comment " WORKER="@comment " . else -BROKEN= "Unknown MPM: ${WITH_MPM}" +IGNORE= "Unknown MPM: ${WITH_MPM}" . endif . else PLIST_SUB+= PREFORK="@comment " WORKER="@comment " @@ -79,10 +79,10 @@ LIB_DEPENDS+= db-4.2:${PORTSDIR}/databases/db42 CONFIGURE_ARGS+= --with-dbm=db42 \ --with-berkeley-db=${LOCALBASE}/include:${LOCALBASE}/lib/db42 . else -BROKEN= "Unknown Berkeley DB version" +IGNORE= "Unknown Berkeley DB version" . endif . else -BROKEN= "Unknown DBM" +IGNORE= "Unknown DBM" . endif .else CONFIGURE_ARGS+= --with-dbm=sdbm @@ -126,7 +126,7 @@ ${module}_PLIST_SUB= "@comment " # Configure .if defined(WITH_MODULES) && ( defined(WITHOUT_MODULES) || defined(WITH_EXTRA_MODULES)) -BROKEN= "WITH_MODULES and WITHOUT_MODULES are mutually exclusive" +IGNORE= "WITH_MODULES and WITHOUT_MODULES are mutually exclusive" .endif .if defined(WITHOUT_AUTH) || defined(WITH_CUSTOM_AUTH) || \ |