summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Slachta2018-02-05 20:59:04 +0000
committerGitHub2018-02-05 20:59:04 +0000
commit7da1a413c2610f93c4d712652028f665b364803c (patch)
treea182f933383dd49c9a295cedf218c5b05c7036d0
parent6b6e7a9d5d6ad40ea081e6417da441463d1172e7 (diff)
parent489adca0dbea894920b36a5e6e0400f563a87ae0 (diff)
downloadtelephony-7da1a413c2610f93c4d712652028f665b364803c.tar.gz
Merge pull request #264 from micmac1/yate-change-error-to-warning
yate: turn miniwebrtc error into warning
-rw-r--r--net/yate/Makefile6
-rw-r--r--net/yate/patches/140-warning-unknown-architecture.patch20
2 files changed, 23 insertions, 3 deletions
diff --git a/net/yate/Makefile b/net/yate/Makefile
index 14fae5b..738953c 100644
--- a/net/yate/Makefile
+++ b/net/yate/Makefile
@@ -12,7 +12,7 @@ RELEASEVER:=6.0.0
PKG_NAME:=yate
PKG_VERSION:=$(RELEASEVER)-1
-PKG_RELEASE:=2
+PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://yate.null.ro/tarballs/yate6/
@@ -228,8 +228,8 @@ $(eval $(call BuildPlugin,filetransfer,,File Transfer Driver,,,y))
$(eval $(call BuildPlugin,gvoice,,Google Voice support,,,y))
$(eval $(call BuildPlugin,heartbeat,server,Linux-HA compatible heartbeat,,,y))
$(eval $(call BuildPlugin,ilbccodec,,iLBC Codec,))
-$(eval $(call BuildPlugin,ilbcwebrtc,,iLBC Codec from the WebRTC project,@!arc))
-$(eval $(call BuildPlugin,isaccodec,,internet Speech Audio Codec,@!arc))
+$(eval $(call BuildPlugin,ilbcwebrtc,,iLBC Codec from the WebRTC project,))
+$(eval $(call BuildPlugin,isaccodec,,internet Speech Audio Codec,))
$(eval $(call BuildPlugin,isupmangler,sig,ISUP parameter mangling in a STP,,,y))
$(eval $(call BuildPlugin,jabberclient,client,Jabber Client,,,y))
$(eval $(call BuildPlugin,jabberserver,jabber,Jabber Server,,,y))
diff --git a/net/yate/patches/140-warning-unknown-architecture.patch b/net/yate/patches/140-warning-unknown-architecture.patch
new file mode 100644
index 0000000..8a8590f
--- /dev/null
+++ b/net/yate/patches/140-warning-unknown-architecture.patch
@@ -0,0 +1,20 @@
+--- a/libs/miniwebrtc/typedefs.h
++++ b/libs/miniwebrtc/typedefs.h
+@@ -101,7 +101,7 @@
+ #endif
+
+ #else
+-#error Please add support for your architecture in typedefs.h
++#warning : Please add support for your architecture in typedefs.h
+ #endif
+
+ #if defined(__SSE2__) || defined(_MSC_VER)
+@@ -160,7 +160,7 @@
+ #define WEBRTC_LITTLE_ENDIAN
+
+ #else
+- #error "No platform defined for WebRTC type definitions (typedefs.h)"
++ #warning : "No platform defined for WebRTC type definitions (typedefs.h)"
+ #endif
+
+ #endif // WEBRTC_TYPEDEFS_H_