From owner-svn-ports-all@freebsd.org Tue Sep 1 07:13:56 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 754573BB30E; Tue, 1 Sep 2020 07:13:56 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BgdbS2Tdcz438K; Tue, 1 Sep 2020 07:13:56 +0000 (UTC) (envelope-from se@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 38FD8150D0; Tue, 1 Sep 2020 07:13:56 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0817DuYK096983; Tue, 1 Sep 2020 07:13:56 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0817DtR6096978; Tue, 1 Sep 2020 07:13:55 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009010713.0817DtR6096978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Tue, 1 Sep 2020 07:13:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547241 - in head/sysutils/ipmitool: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/sysutils/ipmitool: . files X-SVN-Commit-Revision: 547241 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.33 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: Tue, 01 Sep 2020 07:13:56 -0000 Author: se Date: Tue Sep 1 07:13:55 2020 New Revision: 547241 URL: https://svnweb.freebsd.org/changeset/ports/547241 Log: Fix build with -fno-common Approved by: antoine (implicit) Added: head/sysutils/ipmitool/files/patch-include_ipmitool_ipmi__hpmfwupg.h (contents, props changed) head/sysutils/ipmitool/files/patch-src_ipmitool.c (contents, props changed) Modified: head/sysutils/ipmitool/Makefile Modified: head/sysutils/ipmitool/Makefile ============================================================================== --- head/sysutils/ipmitool/Makefile Tue Sep 1 06:58:02 2020 (r547240) +++ head/sysutils/ipmitool/Makefile Tue Sep 1 07:13:55 2020 (r547241) @@ -3,7 +3,7 @@ PORTNAME= ipmitool PORTVERSION= 1.8.18 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= SF Added: head/sysutils/ipmitool/files/patch-include_ipmitool_ipmi__hpmfwupg.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ipmitool/files/patch-include_ipmitool_ipmi__hpmfwupg.h Tue Sep 1 07:13:55 2020 (r547241) @@ -0,0 +1,11 @@ +--- include/ipmitool/ipmi_hpmfwupg.h.orig 2016-06-29 18:01:49 UTC ++++ include/ipmitool/ipmi_hpmfwupg.h +@@ -800,7 +800,7 @@ typedef struct _VERSIONINFO { + char descString[HPMFWUPG_DESC_STRING_LENGTH + 1]; + }VERSIONINFO, *PVERSIONINFO; + +-VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX]; ++extern VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX]; + + #define TARGET_VER (0x01) + #define ROLLBACK_VER (0x02) Added: head/sysutils/ipmitool/files/patch-src_ipmitool.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ipmitool/files/patch-src_ipmitool.c Tue Sep 1 07:13:55 2020 (r547241) @@ -0,0 +1,10 @@ +--- src/ipmitool.c.orig 2016-08-21 06:59:27 UTC ++++ src/ipmitool.c +@@ -79,6 +79,7 @@ extern int ipmi_set_main(struct ipmi_intf * intf, int + extern int ipmi_exec_main(struct ipmi_intf * intf, int argc, char ** argv); + extern int ipmi_lan6_main(struct ipmi_intf *intf, int argc, char **argv); + ++VERSIONINFO gVersionInfo[HPMFWUPG_COMPONENT_ID_MAX]; + + int csv_output = 0; + int verbose = 0;