From owner-svn-ports-all@FreeBSD.ORG Mon Feb 23 09:39:08 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 353A71D1; Mon, 23 Feb 2015 09:39:08 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 206028D3; Mon, 23 Feb 2015 09:39:08 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1N9d8kv013063; Mon, 23 Feb 2015 09:39:08 GMT (envelope-from vsevolod@FreeBSD.org) Received: (from vsevolod@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1N9d74C013062; Mon, 23 Feb 2015 09:39:07 GMT (envelope-from vsevolod@FreeBSD.org) Message-Id: <201502230939.t1N9d74C013062@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: vsevolod set sender to vsevolod@FreeBSD.org using -f From: Vsevolod Stakhov Date: Mon, 23 Feb 2015 09:39:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379653 - head/devel/libev/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Feb 2015 09:39:08 -0000 Author: vsevolod Date: Mon Feb 23 09:39:07 2015 New Revision: 379653 URL: https://svnweb.freebsd.org/changeset/ports/379653 QAT: https://qat.redports.org/buildarchive/r379653/ Log: - Fix positioning of _Noreturn attribute for libev - Do not bump portrevision, since a package has not been changed PR: 197864 Submitted by: dim Modified: head/devel/libev/files/patch-ev.c Modified: head/devel/libev/files/patch-ev.c ============================================================================== --- head/devel/libev/files/patch-ev.c Mon Feb 23 09:32:21 2015 (r379652) +++ head/devel/libev/files/patch-ev.c Mon Feb 23 09:39:07 2015 (r379653) @@ -1,6 +1,17 @@ --- ./ev.c.orig 2011-02-09 00:17:37.000000000 +0100 +++ ./ev.c 2011-08-19 17:01:35.000000000 +0200 -@@ -1591,10 +1591,12 @@ +@@ -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 */ +@@ -2443,10 +2443,12 @@ unsigned int flags = ev_supported_backends (); #ifndef __NetBSD__