diff options
author | tcberner <tcberner@FreeBSD.org> | 2017-06-06 13:00:56 +0800 |
---|---|---|
committer | tcberner <tcberner@FreeBSD.org> | 2017-06-06 13:00:56 +0800 |
commit | 2a50f547193a527f8c0c7a92d44549cf4fe12068 (patch) | |
tree | 9e74af8e9dd32b5831b312d37a3fc1cb5785f9e3 /databases | |
parent | 68a1c4be2fda812eac24a2214cb51a7e20b69602 (diff) | |
download | freebsd-ports-gnome-2a50f547193a527f8c0c7a92d44549cf4fe12068.tar.gz freebsd-ports-gnome-2a50f547193a527f8c0c7a92d44549cf4fe12068.tar.zst freebsd-ports-gnome-2a50f547193a527f8c0c7a92d44549cf4fe12068.zip |
Fix qt4 ports on armv6.
Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform
used ARM_ARCH_6ZK instead of ARM_ARCH_6KZ.
[1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html
PR: 210027
Submitted by: Mikaƫl Urankar <mikael.urankar@gmail.com>
Reviewed by: rakuco
Differential Revision: https://reviews.freebsd.org/D8322
Diffstat (limited to 'databases')
-rw-r--r-- | databases/qt4-mysql-plugin/Makefile | 2 | ||||
-rw-r--r-- | databases/qt4-odbc-plugin/Makefile | 2 | ||||
-rw-r--r-- | databases/qt4-pgsql-plugin/Makefile | 2 | ||||
-rw-r--r-- | databases/qt4-sql/Makefile | 2 | ||||
-rw-r--r-- | databases/qt4-sqlite-plugin/Makefile | 2 | ||||
-rw-r--r-- | databases/qt4-sqlite3-plugin/Makefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/databases/qt4-mysql-plugin/Makefile b/databases/qt4-mysql-plugin/Makefile index 64b86f348ea8..83359ca19d2c 100644 --- a/databases/qt4-mysql-plugin/Makefile +++ b/databases/qt4-mysql-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Kay Lehmann <kay_lehmann@web.de> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt MySQL database plugin DB= mysql diff --git a/databases/qt4-odbc-plugin/Makefile b/databases/qt4-odbc-plugin/Makefile index e1513612c95d..63982ceb4f3a 100644 --- a/databases/qt4-odbc-plugin/Makefile +++ b/databases/qt4-odbc-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 DB= odbc COMMENT= Qt Open Database Connectivity plugin diff --git a/databases/qt4-pgsql-plugin/Makefile b/databases/qt4-pgsql-plugin/Makefile index d98591f71091..e8203b3ece08 100644 --- a/databases/qt4-pgsql-plugin/Makefile +++ b/databases/qt4-pgsql-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Lauri Watts <lauri@kde.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt PostgreSQL database plugin DB= psql diff --git a/databases/qt4-sql/Makefile b/databases/qt4-sql/Makefile index be5ccb12cfe0..b5b8e85013ae 100644 --- a/databases/qt4-sql/Makefile +++ b/databases/qt4-sql/Makefile @@ -3,7 +3,7 @@ PORTNAME= sql DISTVERSION= ${QT4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases PKGNAMEPREFIX= qt4- diff --git a/databases/qt4-sqlite-plugin/Makefile b/databases/qt4-sqlite-plugin/Makefile index 23b38c401231..2100fbc29d1b 100644 --- a/databases/qt4-sqlite-plugin/Makefile +++ b/databases/qt4-sqlite-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 2 +PORTREVISION= 3 COMMENT= Qt SQLite 2 database plugin DB= sqlite2 diff --git a/databases/qt4-sqlite3-plugin/Makefile b/databases/qt4-sqlite3-plugin/Makefile index 725062588e08..4284f87debce 100644 --- a/databases/qt4-sqlite3-plugin/Makefile +++ b/databases/qt4-sqlite3-plugin/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Nottebrock <lofi@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 3 +PORTREVISION= 4 COMMENT= Qt SQLite 3 database plugin DB= sqlite |