From 3a77d91e85cdeb6ff716683aaf242e633c9e960f Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sun, 13 Sep 2015 13:12:45 +0200 Subject: frameworkintegration: add "-fno-strict-aliasing" to compilerflags. Workaround a bug in Qt 5.5.0 which makes OwnCloud crash when interacting with the systray menu (and possibly other applications too) by adding "-fno-strict-aliasing" to CFLAGS and CXXFLAGS. See also http://bugzilla.redhat.com/1255902 and https://bugreports.qt.io/browse/QTBUG-47863 --- kde/cmake/frameworkintegration | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) mode change 120000 => 100644 kde/cmake/frameworkintegration (limited to 'kde/cmake') diff --git a/kde/cmake/frameworkintegration b/kde/cmake/frameworkintegration deleted file mode 120000 index ec699d7..0000000 --- a/kde/cmake/frameworkintegration +++ /dev/null @@ -1 +0,0 @@ -frameworks \ No newline at end of file diff --git a/kde/cmake/frameworkintegration b/kde/cmake/frameworkintegration new file mode 100644 index 0000000..1ac71b9 --- /dev/null +++ b/kde/cmake/frameworkintegration @@ -0,0 +1,27 @@ +# Workaround a bug in Qt 5.5.0 which makes OwnCloud crash when interacting +# with the systray menu (and possibly other applications too) +# by adding "-fno-strict-aliasing" to CFLAGS and CXXFLAGS +# See also http://bugzilla.redhat.com/1255902 +# and https://bugreports.qt.io/browse/QTBUG-47863 +mkdir build +cd build + cmake \ + $KDE_OPT_ARGS \ + -DKDE_PLATFORM_FEATURE_DISABLE_DEPRECATED=TRUE \ + -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS -fno-strict-aliasing" \ + -DCMAKE_C_FLAGS_RELEASE:STRING="$SLKCFLAGS -fno-strict-aliasing" \ + -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS -fno-strict-aliasing" \ + -DCMAKE_CXX_FLAGS_RELEASE:STRING="$SLKCFLAGS -fno-strict-aliasing" \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DMAN_INSTALL_DIR=/usr/man \ + -DSYSCONF_INSTALL_DIR=/etc/kde \ + -DLIB_SUFFIX=${LIBDIRSUFFIX} \ + -DLIB_INSTALL_DIR=lib$LIBDIRSUFFIX \ + -DLIBEXEC_INSTALL_DIR=lib$LIBDIRSUFFIX \ + -DQML_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/qml \ + -DQT_PLUGIN_INSTALL_DIR=lib$LIBDIRSUFFIX/qt5/plugins \ + -DKDE_INSTALL_USE_QT_SYS_PATHS=ON \ + -Dlconvert_executable=/usr/lib$LIBDIRSUFFIX/qt5/bin/lconvert \ + .. + -- cgit v1.2.3