diff options
author | Michael Nottebrock <lofi@FreeBSD.org> | 2007-07-13 00:04:21 +0000 |
---|---|---|
committer | Michael Nottebrock <lofi@FreeBSD.org> | 2007-07-13 00:04:21 +0000 |
commit | ee279d859feb6202deabda725cb8c0a4ec94f21f (patch) | |
tree | e2474571fc19a9826f4556e85411a5a38b27ca41 /databases/qt4-pgsql-plugin/files/Makefile.bsd | |
parent | 0c0668d340ea6e82704a5585b6095e7d01a19ee8 (diff) |
During regression testing the WIP Qt 4.3.0 ports, I found that the sql
driver plugins were all broken - even in the current ports! :(
I am quite astonished nobody complained about this yet. Is there nobody
developing applications with database backends using Qt4 on FreeBSD? The
ports let you use the QtSql library and the database plugins without any
X11 dependencies! Using Qt for database frontends has never been so
attractive!
Anyway, this should fix the plugins.
Notes
Notes:
svn path=/head/; revision=195506
Diffstat (limited to 'databases/qt4-pgsql-plugin/files/Makefile.bsd')
-rw-r--r-- | databases/qt4-pgsql-plugin/files/Makefile.bsd | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/databases/qt4-pgsql-plugin/files/Makefile.bsd b/databases/qt4-pgsql-plugin/files/Makefile.bsd index 52e180ad5692..6caf331a909d 100644 --- a/databases/qt4-pgsql-plugin/files/Makefile.bsd +++ b/databases/qt4-pgsql-plugin/files/Makefile.bsd @@ -1,19 +1,25 @@ SHLIB_NAME= libqsql${DB}.so -VPATH= ${DRIVER} +VPATH= ${PLUGIN}:${DRIVER} CXXFLAGS+= -I${DRIVER} \ -I${LOCALBASE}/include/Qt \ -I${LOCALBASE}/include/postgresql/server \ -I${LOCALBASE}/include -I${X11BASE}/include \ - ${PTHREAD_CFLAGS} -DQT_THREAD_SUPPORT + ${PTHREAD_CFLAGS} -DQT_NO_CAST_TO_ASCII -DQT_NO_CAST_FROM_ASCII \ + -DQT_PLUGIN -DQT_SQL_LIB -DQT_CORE_LIB -D_LARGEFILE64_SOURCE \ + -D_LARGEFILE_SOURCE -DQT_SHARED +MOC?= ${LOCALBASE}/bin/moc-qt4 LDADD= -L${LOCALBASE}/lib ${PTHREAD_LIBS} -lQtSql -lpq -SRCS= qsql_${DB}.cpp +SRCS= main.cpp qsql_${DB}.cpp moc_qsql_${DB}.cpp LIBDIR= ${PREFIX}/lib/plugins/sqldrivers ${LIBDIR}: mkdir -p ${LIBDIR} +moc_qsql_${DB}.cpp: qsql_${DB}.h + $(MOC) $(.ALLSRC) -o $(.TARGET) + beforeinstall: ${LIBDIR} .include <bsd.lib.mk> |