diff options
author | mi <mi@FreeBSD.org> | 2005-07-23 23:05:34 +0800 |
---|---|---|
committer | mi <mi@FreeBSD.org> | 2005-07-23 23:05:34 +0800 |
commit | b0220406cd0278eefd28216a219b8d3fde75a288 (patch) | |
tree | 24846104891e624fa7f98f269f71a9545966b1c8 | |
parent | 3b84b3637cb38d3323caca9369e2be0f23ff2340 (diff) | |
download | freebsd-ports-gnome-b0220406cd0278eefd28216a219b8d3fde75a288.tar.gz freebsd-ports-gnome-b0220406cd0278eefd28216a219b8d3fde75a288.tar.zst freebsd-ports-gnome-b0220406cd0278eefd28216a219b8d3fde75a288.zip |
Switch to USE_MYSQL=yes instead of explicitly LIB_DEPEND-ing on
mysqlclient.
Now, if only someone could remove the explicit shared library number
requirement on mysqlclient (currently 14)...
Submitted by: Richard Bejtlich
-rw-r--r-- | databases/mysqltcl/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/databases/mysqltcl/Makefile b/databases/mysqltcl/Makefile index 3eab413178dc..7f1d2caaec07 100644 --- a/databases/mysqltcl/Makefile +++ b/databases/mysqltcl/Makefile @@ -13,9 +13,9 @@ MASTER_SITES= http://www.xdobry.de/mysqltcl/ MAINTAINER= mi@aldan.algebra.com COMMENT= TCL module for accessing MySQL databases based on msqltcl -LIB_DEPENDS= mysqlclient:${PORTSDIR}/databases/mysql323-client \ - ${TCL_NODOT}:${PORTSDIR}/lang/${TCL_NODOT} +LIB_DEPENDS= ${TCL_NODOT}:${PORTSDIR}/lang/${TCL_NODOT} +USE_MYSQL= yes TCL_VERSION?= tcl8.4 TCL_NODOT= ${TCL_VERSION:S/.//} SQL_DIR= ${PREFIX}/lib/${TCL_VERSION}/mysqltcl |