diff options
author | Maciej Mrozowski <reavertm@gentoo.org> | 2016-01-09 04:23:52 +0100 |
---|---|---|
committer | Maciej Mrozowski <reavertm@gentoo.org> | 2016-01-09 04:28:12 +0100 |
commit | c5f15263cb5934dde6af72544a7aaeb0a22bdb3b (patch) | |
tree | c77bb1939024691450d82e63c3de4e9db8359c29 /dev-libs/injeqt/files | |
parent | sys-fs/lxcfs: bump to 0.16 (diff) | |
download | gentoo-c5f15263cb5934dde6af72544a7aaeb0a22bdb3b.tar.gz gentoo-c5f15263cb5934dde6af72544a7aaeb0a22bdb3b.tar.bz2 gentoo-c5f15263cb5934dde6af72544a7aaeb0a22bdb3b.zip |
dev-libs/injeqt: Preserve CXX flags, fixes bug 570954.
Package-Manager: portage-2.2.26
Diffstat (limited to 'dev-libs/injeqt/files')
-rw-r--r-- | dev-libs/injeqt/files/injeqt-cmake-preserve-cxxflags.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dev-libs/injeqt/files/injeqt-cmake-preserve-cxxflags.patch b/dev-libs/injeqt/files/injeqt-cmake-preserve-cxxflags.patch new file mode 100644 index 000000000000..7428c5c673fc --- /dev/null +++ b/dev-libs/injeqt/files/injeqt-cmake-preserve-cxxflags.patch @@ -0,0 +1,12 @@ +diff -ruN injeqt-1.0.0/CMakeLists.txt injeqt-my/CMakeLists.txt +--- injeqt-1.0.0/CMakeLists.txt 2015-01-25 00:09:26.000000000 +0100 ++++ injeqt-my/CMakeLists.txt 2016-01-09 04:01:39.162295444 +0100 +@@ -39,7 +39,7 @@ + + set (WARNINGS "-Werror -W -Wall -Wextra -Wundef -Wunused -Wuninitialized -Wcast-align -Wpointer-arith -Woverloaded-virtual -Wnon-virtual-dtor -fno-common") + set (VISIBILITY "-fvisibility=hidden -fvisibility-inlines-hidden") +-set (CMAKE_CXX_FLAGS "-std=c++11 ${WARNINGS} ${VISIBILITY}") ++set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 ${WARNINGS} ${VISIBILITY}") + + if (CMAKE_BUILD_TYPE STREQUAL "Debug") + set (CMAKE_CXX_FLAGS "-O0 ${CMAKE_CXX_FLAGS}") |