From owner-svn-ports-all@FreeBSD.ORG Sun May 24 16:41:18 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 696A4C42; Sun, 24 May 2015 16:41:18 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3E0A4166C; Sun, 24 May 2015 16:41:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t4OGfIxa092916; Sun, 24 May 2015 16:41:18 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t4OGfHT6092907; Sun, 24 May 2015 16:41:17 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201505241641.t4OGfHT6092907@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 24 May 2015 16:41:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r387281 - in head: Mk devel/qt5-core x11-toolkits/qt5-declarative x11-toolkits/qt5-gui X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 24 May 2015 16:41:18 -0000 Author: tijl Date: Sun May 24 16:41:16 2015 New Revision: 387281 URL: https://svnweb.freebsd.org/changeset/ports/387281 Log: Qt 5.3 removed runtime detection of SSE2 so it needs to be configured with -no-sse2 at buildtime on i386. PR: 198738, 200258 Reported by: sasamotikomi@gmail.com Approved by: maintainer timeout (2 weeks) Modified: head/Mk/bsd.qt.mk head/devel/qt5-core/Makefile head/x11-toolkits/qt5-declarative/Makefile head/x11-toolkits/qt5-gui/Makefile Modified: head/Mk/bsd.qt.mk ============================================================================== --- head/Mk/bsd.qt.mk Sun May 24 16:27:37 2015 (r387280) +++ head/Mk/bsd.qt.mk Sun May 24 16:41:16 2015 (r387281) @@ -146,6 +146,9 @@ CONFIGURE_ARGS+=-nomake examples -nomake -qmldir ${PREFIX}/${QT_QMLDIR_REL} \ -examplesdir ${PREFIX}/${QT_EXAMPLEDIR_REL} \ -testsdir ${PREFIX}/${QT_TESTDIR_REL} +. if ${ARCH} == i386 && !(defined(MACHINE_CPU) && ${MACHINE_CPU:Msse2}) +CONFIGURE_ARGS+=-no-sse2 +. endif . endif . if defined(WANT_QT_DEBUG) || defined(WITH_DEBUG) Modified: head/devel/qt5-core/Makefile ============================================================================== --- head/devel/qt5-core/Makefile Sun May 24 16:27:37 2015 (r387280) +++ head/devel/qt5-core/Makefile Sun May 24 16:41:16 2015 (r387281) @@ -2,7 +2,7 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- Modified: head/x11-toolkits/qt5-declarative/Makefile ============================================================================== --- head/x11-toolkits/qt5-declarative/Makefile Sun May 24 16:27:37 2015 (r387280) +++ head/x11-toolkits/qt5-declarative/Makefile Sun May 24 16:41:16 2015 (r387281) @@ -2,6 +2,7 @@ PORTNAME= declarative DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= x11-toolkits PKGNAMEPREFIX= qt5- Modified: head/x11-toolkits/qt5-gui/Makefile ============================================================================== --- head/x11-toolkits/qt5-gui/Makefile Sun May 24 16:27:37 2015 (r387280) +++ head/x11-toolkits/qt5-gui/Makefile Sun May 24 16:41:16 2015 (r387281) @@ -2,7 +2,7 @@ PORTNAME= gui DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits graphics PKGNAMEPREFIX= qt5-