diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-03-11 11:02:51 +0000 |
---|---|---|
committer | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2016-03-11 11:02:51 +0000 |
commit | a3ffa09586beacd8a4f4ebef60fc38a49ef5f0b1 (patch) | |
tree | 7746ca97b7c3be179839c53d617d6e8e995f2a3f | |
parent | e92308a31bcb18667293a30cadada4c8531bf4a4 (diff) |
Notes
-rw-r--r-- | databases/qt4-odbc-plugin/Makefile | 4 | ||||
-rw-r--r-- | databases/qt4-sqlite3-plugin/Makefile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/databases/qt4-odbc-plugin/Makefile b/databases/qt4-odbc-plugin/Makefile index 60e93158b782..2b3bd4d7297e 100644 --- a/databases/qt4-odbc-plugin/Makefile +++ b/databases/qt4-odbc-plugin/Makefile @@ -1,11 +1,13 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 DB= odbc COMMENT= Qt Open Database Connectivity plugin LIB_DEPENDS= libodbc.so:${PORTSDIR}/databases/unixODBC +LDFLAGS+= -lodbc + .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" diff --git a/databases/qt4-sqlite3-plugin/Makefile b/databases/qt4-sqlite3-plugin/Makefile index 0ef4f1287ddb..651f86d3903c 100644 --- a/databases/qt4-sqlite3-plugin/Makefile +++ b/databases/qt4-sqlite3-plugin/Makefile @@ -1,10 +1,12 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= Qt SQLite 3 database plugin DB= sqlite USES= sqlite:3 +LDFLAGS+= -lsqlite3 + .include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers" |