diff options
author | knu <knu@FreeBSD.org> | 2002-02-25 02:33:09 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2002-02-25 02:33:09 +0800 |
commit | 0b0a4b9875543c203e473b91f0dc2062eb7d7032 (patch) | |
tree | 2691978f3b4aa287fb7b01374443515bdd17efba /databases/sqlrelay | |
parent | 36e6df0d5c62d330d85eabc6cb7ea33e84ee6d42 (diff) | |
download | freebsd-ports-gnome-0b0a4b9875543c203e473b91f0dc2062eb7d7032.tar.gz freebsd-ports-gnome-0b0a4b9875543c203e473b91f0dc2062eb7d7032.tar.zst freebsd-ports-gnome-0b0a4b9875543c203e473b91f0dc2062eb7d7032.zip |
Explicitly disable the features that are not selected by the user.
Diffstat (limited to 'databases/sqlrelay')
-rw-r--r-- | databases/sqlrelay/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/databases/sqlrelay/Makefile b/databases/sqlrelay/Makefile index e6ae0640051a..59e0204679ed 100644 --- a/databases/sqlrelay/Makefile +++ b/databases/sqlrelay/Makefile @@ -56,6 +56,8 @@ CONFIGURE_ARGS+= --with-gdbm-prefix="${LOCALBASE}" \ --with-sqlite-prefix="${LOCALBASE}" IF_SQLITE= "" .else +CONFIGURE_ARGS+= --without-gdbm-prefix \ + --without-sqlite-prefix IF_SQLITE= "@comment " .endif @@ -64,6 +66,7 @@ LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client CONFIGURE_ARGS+= --with-mysql-prefix="${LOCALBASE}" IF_MYSQL= "" .else +CONFIGURE_ARGS+= --without-mysql-prefix IF_MYSQL= "@comment " .endif @@ -72,6 +75,7 @@ LIB_DEPENDS+= msql.1:${PORTSDIR}/databases/msql CONFIGURE_ARGS+= --with-msql-prefix="${LOCALBASE}" IF_MSQL= "" .else +CONFIGURE_ARGS+= --without-msql-prefix IF_MSQL= "@comment " .endif @@ -80,6 +84,7 @@ LIB_DEPENDS+= pq.2:${PORTSDIR}/databases/postgresql7 CONFIGURE_ARGS+= --with-postgresql-prefix="${LOCALBASE}" IF_POSTGRESQL= "" .else +CONFIGURE_ARGS+= --without-postgresql-prefix IF_POSTGRESQL= "@comment " .endif @@ -88,6 +93,7 @@ LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC CONFIGURE_ARGS+= --with-odbc-prefix="${LOCALBASE}" IF_ODBC= "" .else +CONFIGURE_ARGS+= --without-odbc-prefix IF_ODBC= "@comment " .endif @@ -96,6 +102,7 @@ LIB_DEPENDS+= tds.0:${PORTSDIR}/databases/freetds CONFIGURE_ARGS+= --with-freetds-prefix="${LOCALBASE}" IF_FREETDS= "" .else +CONFIGURE_ARGS+= --without-freetds-prefix IF_FREETDS= "@comment " .endif @@ -104,6 +111,7 @@ USE_GTK= yes CONFIGURE_ARGS+= --with-gtk-prefix="${X11BASE}" IF_GTK= "" .else +CONFIGURE_ARGS+= --without-gtk-prefix IF_GTK= "@comment " .endif |