diff options
author | pav <pav@FreeBSD.org> | 2004-05-05 18:56:44 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-05-05 18:56:44 +0800 |
commit | 986e7a5e8dcaa4da2eab6180a8fccd4baf7061c8 (patch) | |
tree | 2a4338ba5a2835c544d53b5867d78bbfd7d05c04 /databases/mysql-connector-odbc | |
parent | 2203f545cfd86f8a84faee775952dbb99367193d (diff) | |
download | freebsd-ports-graphics-986e7a5e8dcaa4da2eab6180a8fccd4baf7061c8.tar.gz freebsd-ports-graphics-986e7a5e8dcaa4da2eab6180a8fccd4baf7061c8.tar.zst freebsd-ports-graphics-986e7a5e8dcaa4da2eab6180a8fccd4baf7061c8.zip |
- Fix build against unixodbc on FreeBSD 4.x: don't build samples, they
are not being installed anyway
Submitted by: Mattias Schlenker <mattias@schlenker-webdesign.de>
Diffstat (limited to 'databases/mysql-connector-odbc')
-rw-r--r-- | databases/mysql-connector-odbc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/databases/mysql-connector-odbc/Makefile b/databases/mysql-connector-odbc/Makefile index b140452e62d..dd2c57dae98 100644 --- a/databases/mysql-connector-odbc/Makefile +++ b/databases/mysql-connector-odbc/Makefile @@ -33,7 +33,8 @@ DRIVER_MANAGER?= iodbc .if ${DRIVER_MANAGER} == "unixodbc" CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/odbc.ini \ - --with-unixODBC=${LOCALBASE} + --with-unixODBC=${LOCALBASE} \ + --without-samples LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC .else # assume we're using iodbc LIB_DEPENDS+= iodbc.3:${PORTSDIR}/databases/libiodbc |