From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Apr 18 03:40:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8FA291D5 for ; Fri, 18 Apr 2014 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 6BC9C16C7 for ; Fri, 18 Apr 2014 03:40:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3I3e0qK037817 for ; Fri, 18 Apr 2014 03:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3I3e0QF037816; Fri, 18 Apr 2014 03:40:00 GMT (envelope-from gnats) Resent-Date: Fri, 18 Apr 2014 03:40:00 GMT Resent-Message-Id: <201404180340.s3I3e0QF037816@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alfred Perlstein Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0A25189 for ; Fri, 18 Apr 2014 03:33:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 CDA8A16A8 for ; Fri, 18 Apr 2014 03:33:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s3I3XELB037663 for ; Fri, 18 Apr 2014 03:33:14 GMT (envelope-from alfred@freefall.freebsd.org) Received: (from alfred@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s3I3XEVV037662; Fri, 18 Apr 2014 03:33:14 GMT (envelope-from alfred) Message-Id: <201404180333.s3I3XEVV037662@freefall.freebsd.org> Date: Fri, 18 Apr 2014 03:33:14 GMT From: Alfred Perlstein To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.114 Subject: ports/188744: emulators/open-vm-tools clang fix X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Alfred Perlstein List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Apr 2014 03:40:00 -0000 >Number: 188744 >Category: ports >Synopsis: emulators/open-vm-tools clang fix >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Fri Apr 18 03:40:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Alfred Perlstein >Release: FreeBSD 10-STABLE amd64 >Organization: Norse Corp >Environment: 10.0-STABLE FreeBSD 10.0-STABLE #1 07966b6(freebsd-local/stable_10): Tue Apr 15 13:41:12 UTC 2014 >Description: Port breaks due to -Werror + stricter clang. >How-To-Repeat: >Fix: commit 982245204ec2a4016f432539eed77762021ffdca Author: Alfred Perlstein Date: Thu Apr 17 19:28:28 2014 +0000 Fix more pedantic warns with new clang. diff --git a/emulators/open-vm-tools/files/patch-libvmtools__i18n.c b/emulators/open-vm-tools/files/patch-libvmtools__i18n.c new file mode 100644 index 0000000..7b46bf0 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-libvmtools__i18n.c @@ -0,0 +1,18 @@ +--- ./libvmtools/i18n.c.orig 2014-04-17 19:02:44.102203216 +0000 ++++ ./libvmtools/i18n.c 2014-04-17 19:08:48.881598972 +0000 +@@ -88,6 +88,7 @@ + } + + ++#ifdef BUG_ON + /* + ****************************************************************************** + * MsgHasMsgID -- */ /** +@@ -112,6 +113,7 @@ + *(s += MSG_MAGIC_LEN) == '(' && + strchr(s + 1, ')') != NULL; + } ++#endif + + + /* diff --git a/emulators/open-vm-tools/files/patch-modules__freebsd__vmhgfs__channel.h b/emulators/open-vm-tools/files/patch-modules__freebsd__vmhgfs__channel.h new file mode 100644 index 0000000..351bba7 --- /dev/null +++ b/emulators/open-vm-tools/files/patch-modules__freebsd__vmhgfs__channel.h @@ -0,0 +1,11 @@ +--- ./modules/freebsd/vmhgfs/channel.h.orig 2014-04-17 19:09:26.524175474 +0000 ++++ ./modules/freebsd/vmhgfs/channel.h 2014-04-17 19:09:47.679175031 +0000 +@@ -21,7 +21,7 @@ + */ + + #ifndef _HGFS_CHANNEL_H_ +-#define _HGFS_CHANNEL__H_ ++#define _HGFS_CHANNEL_H_ + + #include "hgfs_kernel.h" + #include "requestInt.h" >Release-Note: >Audit-Trail: >Unformatted: