void-packages/srcpkgs/kdevelop/patches/use-std-c99.patch
2019-10-05 01:14:13 +02:00

15 lines
590 B
Diff

KDECompilerSettings (of extra-cmake-modules 5.40) sets "-std=iso9899:1990" that is
too restrictive for C build with Qt *.h files: comments in c++ style.
Let's use C99 instead.
--- CMakeLists.txt.ORIG
+++ CMakeLists.txt
@@ -15,6 +15,8 @@
include(KDEInstallDirs)
include(KDECMakeSettings)
include(KDECompilerSettings NO_POLICY_SCOPE) # needs to be first, as set policies influence following macros
+string(REPLACE " -std=iso9899:1990" "" CMAKE_C_FLAGS " ${CMAKE_C_FLAGS} ")
+set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99")
include(ECMOptionalAddSubdirectory)
include(ECMInstallIcons)