From owner-svn-ports-all@freebsd.org Sun Aug 19 01:01:38 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35515107B7F9; Sun, 19 Aug 2018 01:01:38 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DDC5B80470; Sun, 19 Aug 2018 01:01:37 +0000 (UTC) (envelope-from gerald@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BEF971F268; Sun, 19 Aug 2018 01:01:37 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7J11bNd042161; Sun, 19 Aug 2018 01:01:37 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7J11bFX042160; Sun, 19 Aug 2018 01:01:37 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201808190101.w7J11bFX042160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 19 Aug 2018 01:01:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477552 - head/emulators/wine-devel/files X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/emulators/wine-devel/files X-SVN-Commit-Revision: 477552 X-SVN-Commit-Repository: ports 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.27 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: Sun, 19 Aug 2018 01:01:38 -0000 Author: gerald Date: Sun Aug 19 01:01:37 2018 New Revision: 477552 URL: https://svnweb.freebsd.org/changeset/ports/477552 Log: Add the temporary fix I created (but failed to commit) as part of the update to Wine 3.14 in revision r477548 to work around a Linuxism when it comes to include files. Added: head/emulators/wine-devel/files/patch-wbemprox-builtin.c (contents, props changed) Added: head/emulators/wine-devel/files/patch-wbemprox-builtin.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/emulators/wine-devel/files/patch-wbemprox-builtin.c Sun Aug 19 01:01:37 2018 (r477552) @@ -0,0 +1,21 @@ +commit 2d35c22a51fb7cfc611045537cea06e1118cabd9 +Author: Gerald Pfeifer +Date: Sat Aug 18 16:52:27 2018 +0000 + + Fix the build on FreeBSD by including sys/socket.h. + +--- UTC +diff --git a/dlls/wbemprox/builtin.c b/dlls/wbemprox/builtin.c +index 72c6b4e933..3b8b43e868 100644 +--- dlls/wbemprox/builtin.c ++++ dlls/wbemprox/builtin.c +@@ -26,6 +26,9 @@ + #ifdef HAVE_UNISTD_H + # include + #endif ++#ifdef HAVE_SYS_SOCKET_H ++# include ++#endif + #ifdef HAVE_ARPA_INET_H + # include + #endif