From owner-svn-ports-branches@freebsd.org Tue Oct 13 14:27:16 2015 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 231DC9D2059; Tue, 13 Oct 2015 14:27:16 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 C4511B60; Tue, 13 Oct 2015 14:27:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9DERE1J046990; Tue, 13 Oct 2015 14:27:14 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9DEREcD046988; Tue, 13 Oct 2015 14:27:14 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201510131427.t9DEREcD046988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 13 Oct 2015 14:27:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r399194 - in branches/2015Q4/devel/clanlib22: . files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Oct 2015 14:27:16 -0000 Author: amdmi3 Date: Tue Oct 13 14:27:14 2015 New Revision: 399194 URL: https://svnweb.freebsd.org/changeset/ports/399194 Log: MFH: r399175 - Don't specify protocol in socketpair(AF_UNIX, SOCK_DGRAM, ...), otherwise it fails with EPROTONOSUPPORT Approved by: ports-secteam (feld) Added: branches/2015Q4/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp - copied unchanged from r399175, head/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp Modified: branches/2015Q4/devel/clanlib22/Makefile Directory Properties: branches/2015Q4/ (props changed) Modified: branches/2015Q4/devel/clanlib22/Makefile ============================================================================== --- branches/2015Q4/devel/clanlib22/Makefile Tue Oct 13 14:25:53 2015 (r399193) +++ branches/2015Q4/devel/clanlib22/Makefile Tue Oct 13 14:27:14 2015 (r399194) @@ -3,7 +3,7 @@ PORTNAME= clanlib PORTVERSION= 2.2.12 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel MASTER_SITES= http://www.clanlib.org/download/releases-2.0/ DISTNAME= ClanLib-${PORTVERSION} Copied: branches/2015Q4/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp (from r399175, head/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2015Q4/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp Tue Oct 13 14:27:14 2015 (r399194, copy of r399175, head/devel/clanlib22/files/patch-Sources_Core_System_Unix_event__provider_socketpair.cpp) @@ -0,0 +1,11 @@ +--- Sources/Core/System/Unix/event_provider_socketpair.cpp.orig 2011-01-13 11:17:34 UTC ++++ Sources/Core/System/Unix/event_provider_socketpair.cpp +@@ -45,7 +45,7 @@ CL_EventProvider_Socketpair::CL_EventPro + // Not sure if its better to use 0 or PF_UNIX for Linux then. The + // documentation for socketpair is not that clear about the + // difference. -- mbn 15 april 2005 +-#ifdef __APPLE__ ++#if defined(__APPLE__) || defined(__FreeBSD__) + int result = socketpair(AF_UNIX, SOCK_DGRAM, 0, wait_sockets); + #else + int result = socketpair(AF_UNIX, SOCK_DGRAM, PF_UNIX, wait_sockets);