Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 11 Oct 2020 19:02:18 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r552075 - branches/2020Q4/security/tpm2-tools
Message-ID:  <202010111902.09BJ2IsU089159@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Sun Oct 11 19:02:18 2020
New Revision: 552075
URL: https://svnweb.freebsd.org/changeset/ports/552075

Log:
  MFH: r551632
  
  security/tpm2-tools: fix build on GCC architectures
  
  Use C11 compiler:
  tools/tpm2_tool.c:92: error: 'tpm2_option_flags' has no member named 'verbose'
  tools/tpm2_tool.c:103: error: 'tpm2_option_flags' has no member named 'quiet'
  tools/tpm2_tool.c:116: error: 'tpm2_option_flags' has no member named 'enable_errata'
  
  Approved by:	portmgr (fix build blanket)

Modified:
  branches/2020Q4/security/tpm2-tools/Makefile
Directory Properties:
  branches/2020Q4/   (props changed)

Modified: branches/2020Q4/security/tpm2-tools/Makefile
==============================================================================
--- branches/2020Q4/security/tpm2-tools/Makefile	Sun Oct 11 18:38:03 2020	(r552074)
+++ branches/2020Q4/security/tpm2-tools/Makefile	Sun Oct 11 19:02:18 2020	(r552075)
@@ -14,7 +14,7 @@ LIB_DEPENDS=	libtss2-esys.so:security/tpm2-tss \
 		libcurl.so:ftp/curl \
 		libuuid.so:misc/e2fsprogs-libuuid
 
-USES=	gmake libtool pkgconfig ssl
+USES=		compiler:c11 gmake libtool pkgconfig ssl
 
 GNU_CONFIGURE=	yes
 CONFIGURE_ENV=	CRYPTO_CFLAGS="-I${OPENSSLINC}" CRYPTO_LIBS="-L${OPENSSLLIB} -lcrypto"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010111902.09BJ2IsU089159>