diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-31 18:59:17 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2006-08-31 18:59:17 +0000 |
commit | 7bf903b488b4e226f94c2a6ead40ed6bbd0055ee (patch) | |
tree | 4503c45f1c6e9edaa38bc38844aac47114689de1 /www/rt36 | |
parent | liborigin and opj2dat - library and tool for reading (diff) |
- Enforce 2.0+ apache when WITH_APACHE2 is defined
PR: ports/102348
Submitted by: Vivek Khera <vivek@khera.org> (maintainer)
Diffstat (limited to 'www/rt36')
-rw-r--r-- | www/rt36/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/www/rt36/Makefile b/www/rt36/Makefile index 97cdb9f79129..df645fcd396d 100644 --- a/www/rt36/Makefile +++ b/www/rt36/Makefile @@ -67,7 +67,11 @@ LATEST_LINK= rt36 HAS_CONFIGURE= yes NO_BUILD= yes NO_PACKAGE= Executes scripts in post-install phase +.if defined(WITH_APACHE2) +USE_APACHE= 2.0+ +.else USE_APACHE= 1.3+ +.endif CONFIGURE_ARGS= --prefix=${RT_PATH} \ --enable-layout=${LAYOUT} \ |