diff options
author | ohauer <ohauer@FreeBSD.org> | 2012-01-02 00:47:41 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2012-01-02 00:47:41 +0800 |
commit | 48837ab16bde31ea9c001422df6073d693256ce1 (patch) | |
tree | 64668ce4ec857bdbc987620cd74567b0e5e6f87f /www/cas | |
parent | 86447a151bfb3c2a9e868307ff3efab5eb72ca61 (diff) | |
download | freebsd-ports-gnome-48837ab16bde31ea9c001422df6073d693256ce1.tar.gz freebsd-ports-gnome-48837ab16bde31ea9c001422df6073d693256ce1.tar.zst freebsd-ports-gnome-48837ab16bde31ea9c001422df6073d693256ce1.zip |
- change required APACHE version from 13+ to 20+
(prepare to remove www/apache13)
- no PORTREVISION bump since apache22 is the default
with hat apache@
Diffstat (limited to 'www/cas')
-rw-r--r-- | www/cas/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/www/cas/Makefile b/www/cas/Makefile index 2363efb2d7f1..11e9b0601d9f 100644 --- a/www/cas/Makefile +++ b/www/cas/Makefile @@ -24,7 +24,6 @@ WITHOUT_NLS= yes OPTIONS= DEBUG_MODE "Enable debug output" off \ ENABLE_OPTIMIZATION "Enable optimization" on \ - BUILD_APACHE13_MODULE "Build Apache 1.3 module" off \ BUILD_APACHE2X_MODULE "Build Apache 2.x module" on \ BUILD_CURL_XMLRPC_CLIENT "Build cURL-based XMLRPC client" on \ INSTALL_EXAMPLE_MODULES "Install example modules" off \ @@ -51,14 +50,16 @@ CMAKE_ARGS+= -DENABLE_OPTIMIZATION=ON CMAKE_ARGS+= -DENABLE_OPTIMIZATION=OFF .endif -.if defined(WITH_BUILD_APACHE13_MODULE) -CMAKE_ARGS+= -DBUILD_APACHE13_MODULE=ON -USE_APACHE= 13 -PLIST_SUB+= APACHE13_MODULE="" -.else +# XXX apache13 was removed from portstree +# XXX +##.if defined(WITH_BUILD_APACHE13_MODULE) +##CMAKE_ARGS+= -DBUILD_APACHE13_MODULE=ON +##USE_APACHE= 13 +##PLIST_SUB+= APACHE13_MODULE="" +##.else CMAKE_ARGS+= -DBUILD_APACHE13_MODULE=OFF PLIST_SUB+= APACHE13_MODULE="@comment " -.endif +##.endif .if defined(WITH_BUILD_APACHE2X_MODULE) USE_APACHE= 20+ |