mirror of
https://git.freebsd.org/ports.git
synced 2025-07-01 09:30:30 -04:00
According to upstream, this is the last planned Qt4 release. A list of changes since 4.8.6 can be found here: <http://download.qt.io/official_releases/qt/4.8/4.8.7/changes-4.8.7> Porting notes and changes: - Remove several patches that have been upstreamed. - Make Uses/qmake.mk pass the contents of LIBS to the qmake environment. [1] - Repurpose devel/qt4/files/extrapatch-src-corelib-global-qglobal.h now the original patch is part of the release (curiously enough, the original patch was never actually used, as the ?= assignment in r362837 after r362770 was never possible). This works around the way compiler support for C++11 features is detected in Qt 4.8.7: while it originally only uses the compiler to determine if something is supported or not, the initializer lists feature also depends on the C++ standard library being used. It's a problem in FreeBSD 9.x, where USES=compiler:c++0x or USES=compiler:c++11-lang means we will use clang to build a port but use libstdc++ from base (GCC 4.2). The latter obviously does not support initializer lists, and the build fails because Qt tries to include headers that do not exist (<initializer_list>). Since detecting libstdc++'s version is not trivial (we need to include a non-lightweight header like cstdio and then check for __GLIBCXX__), we just enable Q_COMPILER_INITIALIZER_LISTS support only when libc++ is used (there should be no reason for someone to be using clang with GCC 4.8's libstdc++, for example). x11/kdelibs4's FindQt4.cmake had to include a backported change from the upstream FindQt4.cmake in CMake itself to use a C++ compiler to detect flags like Q_WS_X11, otherwise the inclusion of <ciso646> in qglobal.h makes the build fail. This patch contains changes by me, makc@ and alonso@. PR: 202552 [1] PR: 202808 [exp-run] Submitted by: pawel@ [1]
55 lines
1.5 KiB
Text
55 lines
1.5 KiB
Text
--- configure.orig 2014-04-10 18:37:08.000000000 +0000
|
|
+++ configure
|
|
@@ -916,7 +916,7 @@ OPT_HELP=
|
|
CFG_SILENT=no
|
|
CFG_GRAPHICS_SYSTEM=default
|
|
CFG_RUNTIME_SYSTEM=
|
|
-CFG_ALSA=auto
|
|
+CFG_ALSA=no
|
|
CFG_PULSEAUDIO=auto
|
|
CFG_COREWLAN=auto
|
|
CFG_ICD=auto
|
|
@@ -2704,11 +2704,6 @@ if [ "$OPT_SHADOW" = "yes" ]; then
|
|
fi
|
|
done
|
|
|
|
- # symlink the mkspecs directory
|
|
- mkdir -p "$outpath/mkspecs"
|
|
- rm -rf "$outpath"/mkspecs/*
|
|
- ln -s "$relpath"/mkspecs/* "$outpath/mkspecs"
|
|
- rm -f "$outpath/mkspecs/default"
|
|
|
|
ShadowMkspecs()
|
|
{
|
|
@@ -3019,6 +3014,7 @@ else
|
|
PLATFORMS=`find "$relpath/mkspecs/" -type f | grep -v qws | sed "s,$relpath/mkspecs/qws/,,"`
|
|
fi
|
|
|
|
+PLATFORM=`realpath $PLATFORM`
|
|
[ -z "$XPLATFORM" ] && XPLATFORM="$PLATFORM"
|
|
|
|
case `basename "$XPLATFORM"` in win32-g++*) XPLATFORM_MINGW=yes;; esac
|
|
@@ -4915,7 +4911,7 @@ setBootstrapVariable()
|
|
}
|
|
|
|
# build qmake
|
|
-if true; then ###[ '!' -f "$outpath/bin/qmake" ];
|
|
+if false; then ###[ '!' -f "$outpath/bin/qmake" ];
|
|
echo "Creating qmake. Please wait..."
|
|
|
|
OLD_QCONFIG_H=
|
|
@@ -6041,14 +6037,6 @@ if [ "$PLATFORM_X11" = "yes" -a "$CFG_GU
|
|
X11TESTS_FLAGS="$X11TESTS_FLAGS -fpermissive"
|
|
fi
|
|
|
|
- # Check we actually have X11 :-)
|
|
- compileTest x11/xlib "XLib" $X11TESTS_FLAGS
|
|
- if [ $? != "0" ]; then
|
|
- echo "Basic XLib functionality test failed!"
|
|
- echo " You might need to modify the include and library search paths by editing"
|
|
- echo " QMAKE_INCDIR_X11 and QMAKE_LIBDIR_X11 in ${XQMAKESPEC}."
|
|
- exit 1
|
|
- fi
|
|
fi
|
|
|
|
# X11/MINGW/SYMBIAN OpenGL
|