freeswitch-stable: backport pcre fix 353/head
authorSebastian Kemper <sebastian_ml@gmx.net>
Sun, 22 Jul 2018 07:32:44 +0000 (09:32 +0200)
committerSebastian Kemper <sebastian_ml@gmx.net>
Sun, 22 Jul 2018 09:21:57 +0000 (11:21 +0200)
Backport from master.

This patch is strictly speaking only needed for pcre 8.42 and up.
Add it anyway in case pcre maintainer decides to bump the version.

Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
net/freeswitch-stable/Makefile
net/freeswitch-stable/patches/350-fix-pcre-pointer-type.patch [new file with mode: 0644]

index b22ef456ad47299b8041f47d515a65634ab1d404..c416b60d0dd7092c6320ecc2d96b7de9a559d663 100644 (file)
@@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
 PRG_NAME:=freeswitch
 PKG_NAME:=$(PRG_NAME)-stable
 PKG_VERSION:=1.6.20
-PKG_RELEASE:=7
+PKG_RELEASE:=8
 PKG_MAINTAINER:=Sebastian Kemper <sebastian_ml@gmx.net>
 
 PKG_SOURCE:=$(PRG_NAME)-$(PKG_VERSION).tar.xz
diff --git a/net/freeswitch-stable/patches/350-fix-pcre-pointer-type.patch b/net/freeswitch-stable/patches/350-fix-pcre-pointer-type.patch
new file mode 100644 (file)
index 0000000..dbbd0ff
--- /dev/null
@@ -0,0 +1,11 @@
+--- a/src/switch_regex.c
++++ b/src/switch_regex.c
+@@ -37,7 +37,7 @@ SWITCH_DECLARE(switch_regex_t *) switch_
+                                                                                                         int options, const char **errorptr, int *erroroffset, const unsigned char *tables)
+ {
+-      return pcre_compile(pattern, options, errorptr, erroroffset, tables);
++      return (switch_regex_t *)pcre_compile(pattern, options, errorptr, erroroffset, tables);
+ }