forked from Lainports/freebsd-ports
Some .pri files still get some of their information from Qt4's configure script by default. Since we are not using it for the sqldriver ports, both qt4-odbc-plugin and qt4-sqlite3-plugin were no longer linking against libodbc.so and libsqlite3.so. Fix it by explicitly passing those via LDFLAGS. Thanks to Luca Pizzamiglio <luca.pizzamiglio@gmail.com> for the report.
12 lines
225 B
Makefile
12 lines
225 B
Makefile
# Created by: Michael Nottebrock <lofi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTREVISION= 2
|
|
|
|
COMMENT= Qt SQLite 3 database plugin
|
|
DB= sqlite
|
|
USES= sqlite:3
|
|
|
|
LDFLAGS+= -lsqlite3
|
|
|
|
.include "${.CURDIR:H:H}/devel/qt4/Makefile.sqldrivers"
|