diff options
author | jeh <jeh@FreeBSD.org> | 2003-09-29 18:12:15 +0800 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2003-09-29 18:12:15 +0800 |
commit | aa37151479b123c92d8750ffe2f5a6787067e088 (patch) | |
tree | 72453f44203beb7fb73fb375020b76e762b2d466 /www/mod_auth_mysql | |
parent | 235e8fdd9532ac219fb95e1d29de5cadfb80b282 (diff) | |
download | freebsd-ports-graphics-aa37151479b123c92d8750ffe2f5a6787067e088.tar.gz freebsd-ports-graphics-aa37151479b123c92d8750ffe2f5a6787067e088.tar.zst freebsd-ports-graphics-aa37151479b123c92d8750ffe2f5a6787067e088.zip |
Jeremy Prior pointed out that there is USE_MYSQL= available, use that
instead. No version bump.
Diffstat (limited to 'www/mod_auth_mysql')
-rw-r--r-- | www/mod_auth_mysql/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/www/mod_auth_mysql/Makefile b/www/mod_auth_mysql/Makefile index b5c54f97420..88f54a4e243 100644 --- a/www/mod_auth_mysql/Makefile +++ b/www/mod_auth_mysql/Makefile @@ -15,15 +15,10 @@ MAINTAINER= jeh@FreeBSD.org COMMENT= Allows users to use MySQL databases for user authentication BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/${AP_PORT} -.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) -LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client -.elif exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) -LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client -.else -LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client -.endif RUN_DEPENDS= ${LOCALBASE}/sbin/${AP_TARGET}:${PORTSDIR}/www/${AP_PORT} +USE_MYSQL= yes + .include <bsd.port.pre.mk> APXS= ${LOCALBASE}/sbin/apxs |