aboutsummaryrefslogtreecommitdiffstats
path: root/main/arpon/fix-ppc64le-werror.patch
diff options
context:
space:
mode:
authorMike Sullivan <mksully22@gmail.com>2018-11-26 15:44:25 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-11-26 17:37:47 +0000
commit88794580a16f512ea86dceae7bbf6aec3002c501 (patch)
tree4a48fff32ed099d4dbdf144c2bcd4d340c9e6cb6 /main/arpon/fix-ppc64le-werror.patch
parent90f77d1d43a8a224cc1700882ff1f36cb22e57d7 (diff)
downloadaports-88794580a16f512ea86dceae7bbf6aec3002c501.tar.bz2
aports-88794580a16f512ea86dceae7bbf6aec3002c501.tar.xz
main/arpon: disable werror fixing ppc64le strncpy build error
Diffstat (limited to 'main/arpon/fix-ppc64le-werror.patch')
-rw-r--r--main/arpon/fix-ppc64le-werror.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/main/arpon/fix-ppc64le-werror.patch b/main/arpon/fix-ppc64le-werror.patch
new file mode 100644
index 0000000000..d6ef46ac6c
--- /dev/null
+++ b/main/arpon/fix-ppc64le-werror.patch
@@ -0,0 +1,17 @@
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -88,12 +88,12 @@
+ message(STATUS "Build type: Debug")
+
+ set(CMAKE_BUILD_TYPE "Debug")
+- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -Wextra -Wformat=2 -Winit-self -Wreturn-type -Wswitch-default -Wswitch-enum -Wunused-parameter -Wuninitialized -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wdeclaration-after-statement -Wundef -Wpointer-arith -Wunsafe-loop-optimizations -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsizeof-pointer-memaccess -Wlogical-op -Waggregate-return -Wstrict-prototypes -Wold-style-declaration -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wlong-long -Wvariadic-macros -Wvarargs -Wvla -Wdisabled-optimization -Woverlength-strings -O0 -g -ggdb")
++ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -Wformat=2 -Winit-self -Wreturn-type -Wswitch-default -Wswitch-enum -Wunused-parameter -Wuninitialized -Wstrict-aliasing=3 -Wstrict-overflow=5 -Wdeclaration-after-statement -Wundef -Wpointer-arith -Wunsafe-loop-optimizations -Wbad-function-cast -Wcast-qual -Wcast-align -Wwrite-strings -Wconversion -Wsizeof-pointer-memaccess -Wlogical-op -Waggregate-return -Wstrict-prototypes -Wold-style-declaration -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wlong-long -Wvariadic-macros -Wvarargs -Wvla -Wdisabled-optimization -Woverlength-strings -O0 -g -ggdb")
+ else(cmake_build_type_tolower STREQUAL "debug")
+ message(STATUS "Build type: Release")
+
+ set(CMAKE_BUILD_TYPE "Release")
+- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Werror -Wextra -O3 -DNDEBUG")
++ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra -O3 -DNDEBUG")
+ endif(cmake_build_type_tolower STREQUAL "debug")
+
+ find_package(Headers)