diff options
author | adam <adam> | 2007-03-18 17:34:41 +0000 |
---|---|---|
committer | adam <adam> | 2007-03-18 17:34:41 +0000 |
commit | fa1a292d4bcb1b3f53bc91bae753fafab1eafcf4 (patch) | |
tree | e2ab3e1512f96126499bcc7a30c24de203a7b0a0 /x11/qt4-pgsql | |
parent | cf62b4a7983a43e6e68cefaf3412acfb8d19a5a9 (diff) | |
download | pkgsrc-fa1a292d4bcb1b3f53bc91bae753fafab1eafcf4.tar.gz |
Changes 4.2.3:
This is a bug-fix release. It maintains both forward and backward
compatibility (source and binary) with Qt 4.2.0.
- Configuration/Compilation
* Fixed architecture detection on UltraSPARC-T1 systems.
* Fixed compilation on embedded architectures when qreal is not double.
- Documentation
* Completed documentation for "Implementing Atomic Operations",
which is useful for people porting Qt to a new hardware architecture.
- Translations
* Added a new unofficial Portuguese translation courtesy of Helder
Correia.
- Qt Linguist
* Made the columns in the phrasebook resizeable.
- lupdate
* Fixed bug in the .pro parser of lupdate. It should accept backslashes.
* Fixed a severe slowdown in lupdate. (~400x speedup.)
* Fixed traversal of subdirectories.
- moc
* Don't create trigraphs in the generated code for C++ casts.
- uic
* Fixed a bug that generated excessive margins for Q3GroupBox.
Diffstat (limited to 'x11/qt4-pgsql')
-rw-r--r-- | x11/qt4-pgsql/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/x11/qt4-pgsql/Makefile b/x11/qt4-pgsql/Makefile index 5b5f65e5b2f..ba8a701c6f9 100644 --- a/x11/qt4-pgsql/Makefile +++ b/x11/qt4-pgsql/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.2 2006/12/28 12:12:59 joerg Exp $ +# $NetBSD: Makefile,v 1.3 2007/03/18 17:34:41 adam Exp $ .include "../../x11/qt4-libs/Makefile.common" PKGNAME= qt4-psql-${QTVERSION} -PKGREVISION= 1 COMMENT= QT postgresql driver CONFIGURE_ARGS+= -I${QTDIR}/include @@ -13,9 +12,8 @@ CONFIGURE_ARGS+= -L${QTDIR}/lib BUILD_QT4= yes do-build: - cd ${WRKSRC}/src/tools/moc && ${SETENV} ${MAKE_ENV} ${GMAKE} - cd ${WRKSRC}/src/plugins/sqldrivers/psql && \ - ${SETENV} ${MAKE_ENV} ${GMAKE} + cd ${WRKSRC}/src/tools/moc && env ${MAKE_ENV} ${GMAKE} + cd ${WRKSRC}/src/plugins/sqldrivers/psql && env ${MAKE_ENV} ${GMAKE} SQLDRVDIR= ${QTPREFIX}/plugins/sqldrivers |