From owner-svn-ports-all@freebsd.org Tue Feb 28 21:23:42 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7ADCCCF2579; Tue, 28 Feb 2017 21:23:42 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 47BD52D3; Tue, 28 Feb 2017 21:23:42 +0000 (UTC) (envelope-from jhale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1SLNfLX048084; Tue, 28 Feb 2017 21:23:41 GMT (envelope-from jhale@FreeBSD.org) Received: (from jhale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1SLNf76048083; Tue, 28 Feb 2017 21:23:41 GMT (envelope-from jhale@FreeBSD.org) Message-Id: <201702282123.v1SLNf76048083@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jhale set sender to jhale@FreeBSD.org using -f From: "Jason E. Hale" Date: Tue, 28 Feb 2017 21:23:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435086 - head/audio/qjackctl 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.23 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: Tue, 28 Feb 2017 21:23:42 -0000 Author: jhale Date: Tue Feb 28 21:23:41 2017 New Revision: 435086 URL: https://svnweb.freebsd.org/changeset/ports/435086 Log: Fix configure for QT5 option after Qt 5.7.1 update (r434380) configure:4371: checking for Qt library version >= 5.1 configure:4392: c++ -c -O2 -fno-strict-aliasing -pipe -march=core2 -fstack-protector -isystem /usr/local/include - isystem /usr/local/include -I/usr/local/include/qt5 -fPIC -isystem /usr/local/include conftest.cpp >&5 In file included from conftest.cpp:17: In file included from /usr/local/include/qt5/QtCore/qglobal.h:83: /usr/local/include/qt5/QtCore/qcompilerdetection.h:562:6: error: Qt requires a C++11 compiler and yours does not seem to be that. Modified: head/audio/qjackctl/Makefile Modified: head/audio/qjackctl/Makefile ============================================================================== --- head/audio/qjackctl/Makefile Tue Feb 28 21:15:15 2017 (r435085) +++ head/audio/qjackctl/Makefile Tue Feb 28 21:23:41 2017 (r435086) @@ -47,9 +47,12 @@ QT4_USE= QT4=corelib,dbus,gui,xml \ QT4=linguisttools_build \ QT4=moc_build,qmake_build,rcc_build,uic_build QT4_CONFIGURE_ENABLE= qt4 + +QT5_USES= compiler:c++11-lib QT5_USE= QT5=core,dbus,gui,widgets,x11extras,xml \ QT5=buildtools_build,linguisttools_build,qmake_build \ - GL=gl + GL=gl \ + CXXSTD=c++11 post-configure: @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${QMAKE} -o ${PORTNAME}.mak \