From owner-svn-ports-all@freebsd.org Sun Sep 24 16:16:14 2017 Return-Path: Delivered-To: svn-ports-all@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 28238E2AD8B; Sun, 24 Sep 2017 16:16:14 +0000 (UTC) (envelope-from jbeich@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 E693C7DF68; Sun, 24 Sep 2017 16:16:13 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8OGGCgF020138; Sun, 24 Sep 2017 16:16:12 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8OGGCMj020137; Sun, 24 Sep 2017 16:16:12 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201709241616.v8OGGCMj020137@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 24 Sep 2017 16:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450495 - head/sysutils/pesign X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/sysutils/pesign X-SVN-Commit-Revision: 450495 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.23 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, 24 Sep 2017 16:16:14 -0000 Author: jbeich Date: Sun Sep 24 16:16:12 2017 New Revision: 450495 URL: https://svnweb.freebsd.org/changeset/ports/450495 Log: sysutils/pesign: unbreak on 11.1+ In file included from pesign.h:30:0, from pesign.c:35: efitypes.h:50:0: error: "EFI_VARIABLE_NON_VOLATILE" redefined [-Werror] #define EFI_VARIABLE_NON_VOLATILE 0x0000000000000001 ^ In file included from efitypes.h:22:0, from pesign.h:30, from pesign.c:35: /usr/include/efivar.h:38:0: note: this is the location of the previous definition #define EFI_VARIABLE_NON_VOLATILE 0x00000001 ^ Reported by: pkg-fallout Modified: head/sysutils/pesign/Makefile (contents, props changed) Modified: head/sysutils/pesign/Makefile ============================================================================== --- head/sysutils/pesign/Makefile Sun Sep 24 15:59:26 2017 (r450494) +++ head/sysutils/pesign/Makefile Sun Sep 24 16:16:12 2017 (r450495) @@ -11,7 +11,7 @@ COMMENT= Signing utility for UEFI secure boot LICENSE= GPLv2 -LIB_DEPENDS= libefivar.so:devel/efivar \ +LIB_DEPENDS= libefivar.so.0:devel/efivar \ libnspr4.so:devel/nspr \ libnss3.so:security/nss \ libpopt.so:devel/popt \