aboutsummaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorBartek Rutkowski <robak@FreeBSD.org>2015-03-22 15:22:23 +0000
committerBartek Rutkowski <robak@FreeBSD.org>2015-03-22 15:22:23 +0000
commit882a7cd3f3d42b7a767b130df356db3fa534d74c (patch)
tree3b7056517cd98ea963e3275557a50b801828f1e0 /net
parent1bcadb0f1ef9d32b1646e8a1c193e25e9917867f (diff)
downloadports-882a7cd3f3d42b7a767b130df356db3fa534d74c.tar.gz
ports-882a7cd3f3d42b7a767b130df356db3fa534d74c.zip
net/shadowsocks-libev: fix clang 3.6 build
PR: 198194 Submitted by: Dimitry Andric <dim@FreeBSD.org>
Notes
Notes: svn path=/head/; revision=381929
Diffstat (limited to 'net')
-rw-r--r--net/shadowsocks-libev/files/patch-libev__ev.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/shadowsocks-libev/files/patch-libev__ev.c b/net/shadowsocks-libev/files/patch-libev__ev.c
new file mode 100644
index 000000000000..f485717349ed
--- /dev/null
+++ b/net/shadowsocks-libev/files/patch-libev__ev.c
@@ -0,0 +1,18 @@
+--- libev/ev.c.orig 2015-01-07 13:54:19.000000000 +0100
++++ libev/ev.c 2015-03-02 20:39:18.150956000 +0100
+@@ -1022,12 +1022,12 @@
+ }
+ #endif
+
+-#if ECB_GCC_VERSION(4,5)
++#if ECB_GCC_VERSION(4,5) || defined __clang__
+ #define ecb_unreachable() __builtin_unreachable ()
+ #else
+ /* this seems to work fine, but gcc always emits a warning for it :/ */
+- ecb_inline void ecb_unreachable (void) ecb_noreturn;
+- ecb_inline void ecb_unreachable (void) { }
++ ecb_inline ecb_noreturn void ecb_unreachable (void);
++ ecb_inline ecb_noreturn void ecb_unreachable (void) { }
+ #endif
+
+ /* try to tell the compiler that some condition is definitely true */