svn commit: r435086 - head/audio/qjackctl
Jason E. Hale
jhale at FreeBSD.org
Tue Feb 28 21:23:42 UTC 2017
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 \
More information about the svn-ports-all
mailing list