Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 21 Feb 2015 15:11:22 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r379519 - head/devel/py-gevent/files
Message-ID:  <201502211511.t1LFBMON002730@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Feb 21 15:11:21 2015
New Revision: 379519
URL: https://svnweb.freebsd.org/changeset/ports/379519
QAT: https://qat.redports.org/buildarchive/r379519/

Log:
  - Fix build with Clang 3.6.0
  
  PR:		197868
  Submitted by:	dim

Added:
  head/devel/py-gevent/files/
  head/devel/py-gevent/files/patch-libev-ev.c   (contents, props changed)

Added: head/devel/py-gevent/files/patch-libev-ev.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-gevent/files/patch-libev-ev.c	Sat Feb 21 15:11:21 2015	(r379519)
@@ -0,0 +1,13 @@
+--- libev/ev.c.orig	2014-04-30 16:45:07.000000000 +0200
++++ libev/ev.c	2015-02-20 23:33:36.945803000 +0100
+@@ -967,8 +967,8 @@
+   #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 */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201502211511.t1LFBMON002730>