svn commit: r495245 - head/Mk/Uses

Adriaan de Groot adridg at FreeBSD.org
Sun Mar 10 10:02:39 UTC 2019


Author: adridg
Date: Sun Mar 10 10:02:38 2019
New Revision: 495245
URL: https://svnweb.freebsd.org/changeset/ports/495245

Log:
  During the transition from Mk/bsd.qt.mk to Mk/Uses/qt.mk in r473503, a previous change to the former was omitted; in particular, r463394:
  
    "Disable Qt4 sql-ibase plugin on not-(i386|amd64)
  
     ibase is Firebird, which only builds on i386 and amd64. This patch
     squashes the ibase plugin for Qt4."
  
  Re-apply lost change (databases/qt5-sqldrivers-ibase is x86-only).
  
  PR:		236307
  Submitted by:	linimon

Modified:
  head/Mk/Uses/qt.mk

Modified: head/Mk/Uses/qt.mk
==============================================================================
--- head/Mk/Uses/qt.mk	Sun Mar 10 09:57:36 2019	(r495244)
+++ head/Mk/Uses/qt.mk	Sun Mar 10 10:02:38 2019	(r495245)
@@ -140,9 +140,12 @@ _QT_MK_POST_INCLUDED=	qt.mk
 _USE_QT_ALL=		assistant dbus declarative designer doc gui help \
 			imageformats l10n linguist linguisttools multimedia \
 			network opengl pixeltool qdbusviewer qmake script \
-			scripttools sql sql-ibase sql-mysql sql-odbc sql-pgsql \
+			scripttools sql sql-mysql sql-odbc sql-pgsql \
 			sql-sqlite2 sql-sqlite3 svg testlib webkit \
 			xml xmlpatterns
+.if ${ARCH} == amd64 || ${ARCH} == i386
+_USE_QT_ALL+=	sql-ibase
+.endif
 
 _USE_QT4_ONLY=		accessible assistant-adp assistantclient clucene codecs-cn codecs-jp \
 			codecs-kr codecs-tw corelib demo graphicssystems-opengl \


More information about the svn-ports-all mailing list