summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Robby Workman2017-12-27 07:48:28 +0100
committer Robby Workman2017-12-28 01:10:32 +0100
commitd8f337bb0a5367786ac391c3cd942613b9cd333f (patch)
tree25fdf1ead4633a1d37563c0eb5609d24024797a1
parent4b306a3452bc27b996722d8a523686baa0c60b5c (diff)
downloadslackbuilds-d8f337bb0a5367786ac391c3cd942613b9cd333f.tar.gz
libraries/rapidjson: Fix build with gcc7
I ran into this trying to build rapidjson on ARM -current: https://github.com/Tencent/rapidjson/pull/941 Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--libraries/rapidjson/fix-build-on-gcc7.diff13
-rw-r--r--libraries/rapidjson/rapidjson.SlackBuild5
2 files changed, 17 insertions, 1 deletions
diff --git a/libraries/rapidjson/fix-build-on-gcc7.diff b/libraries/rapidjson/fix-build-on-gcc7.diff
new file mode 100644
index 0000000000..d55a477678
--- /dev/null
+++ b/libraries/rapidjson/fix-build-on-gcc7.diff
@@ -0,0 +1,13 @@
+diff -Nur rapidjson-1.1.0.orig/include/rapidjson/internal/regex.h rapidjson-1.1.0/include/rapidjson/internal/regex.h
+--- rapidjson-1.1.0.orig/include/rapidjson/internal/regex.h 2016-08-25 02:59:05.000000000 -0500
++++ rapidjson-1.1.0/include/rapidjson/internal/regex.h 2017-12-27 01:10:17.765316098 -0600
+@@ -29,6 +29,9 @@
+ #ifdef __GNUC__
+ RAPIDJSON_DIAG_PUSH
+ RAPIDJSON_DIAG_OFF(effc++)
++#if __GNUC__ >= 7
++RAPIDJSON_DIAG_OFF(implicit-fallthrough)
++#endif
+ #endif
+
+ #ifdef _MSC_VER
diff --git a/libraries/rapidjson/rapidjson.SlackBuild b/libraries/rapidjson/rapidjson.SlackBuild
index 85a240ac48..474a7d13e4 100644
--- a/libraries/rapidjson/rapidjson.SlackBuild
+++ b/libraries/rapidjson/rapidjson.SlackBuild
@@ -24,7 +24,7 @@
PRGNAM=rapidjson
VERSION=${VERSION:-1.1.0}
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@@ -69,6 +69,9 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
+# Patch for -current but should be harmless on -stable
+patch -p1 < $CWD/fix-build-on-gcc7.diff
+
mkdir -p build
cd build
cmake \