diff options
author | clement <clement@FreeBSD.org> | 2004-10-16 17:15:52 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-10-16 17:15:52 +0800 |
commit | ec86ef1303760d7b4e34a4b8e82d79daefc456ea (patch) | |
tree | 8c7db23b6f95c7bc6bd68fb70989630ec391325d | |
parent | e4de67babebd53328f7c7330be2874f262bc128d (diff) | |
download | freebsd-ports-gnome-ec86ef1303760d7b4e34a4b8e82d79daefc456ea.tar.gz freebsd-ports-gnome-ec86ef1303760d7b4e34a4b8e82d79daefc456ea.tar.zst freebsd-ports-gnome-ec86ef1303760d7b4e34a4b8e82d79daefc456ea.zip |
- Fix apr detection
WARNING: apache2 + apr 1.0 is BROKEN
I'm working on a small compat hack. But don't dream too much.
apache 2.0.x is not designed to work with apr 1.x.
Forgotten by: kuriyama
-rw-r--r-- | www/apache2/Makefile | 4 | ||||
-rw-r--r-- | www/apache20/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/www/apache2/Makefile b/www/apache2/Makefile index c1c71b8cbe1e..5a3dde87d761 100644 --- a/www/apache2/Makefile +++ b/www/apache2/Makefile @@ -132,8 +132,8 @@ CONFIGURE_ARGS+= --with-ldap \ IGNORE= "You can't set WITH_BDB or WITH_BERKELEYDB when WITH_APR_FROM_PORTS is defined" . endif LIB_DEPENDS+= apr-1:${PORTSDIR}/devel/apr -CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-config \ - --with-apr-util=${LOCALBASE}/bin/apu-config +CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-1-config \ + --with-apr-util=${LOCALBASE}/bin/apu-1-config CONFIGURE_ENV+= LTFLAGS="--tag=CXX" PLIST_SUB+= PORTS_APR="@comment " .else diff --git a/www/apache20/Makefile b/www/apache20/Makefile index c1c71b8cbe1e..5a3dde87d761 100644 --- a/www/apache20/Makefile +++ b/www/apache20/Makefile @@ -132,8 +132,8 @@ CONFIGURE_ARGS+= --with-ldap \ IGNORE= "You can't set WITH_BDB or WITH_BERKELEYDB when WITH_APR_FROM_PORTS is defined" . endif LIB_DEPENDS+= apr-1:${PORTSDIR}/devel/apr -CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-config \ - --with-apr-util=${LOCALBASE}/bin/apu-config +CONFIGURE_ARGS+= --with-apr=${LOCALBASE}/bin/apr-1-config \ + --with-apr-util=${LOCALBASE}/bin/apu-1-config CONFIGURE_ENV+= LTFLAGS="--tag=CXX" PLIST_SUB+= PORTS_APR="@comment " .else |