svn commit: r486166 - head/net/megatools

Mark Linimon linimon at FreeBSD.org
Thu Nov 29 11:07:59 UTC 2018


Author: linimon
Date: Thu Nov 29 11:07:58 2018
New Revision: 486166
URL: https://svnweb.freebsd.org/changeset/ports/486166

Log:
  Megatools dev doesn't state what GCC version is the minimum required
  for building, but they imply at least 5.4 should be used:
  
  https://github.com/megous/megatools/issues/381
  
  Thus, add USES=compiler:c11, since the port doesn't build with base GCC.
  
  PR:		233592
  Submitted by:	Piotr Kubaj
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/net/megatools/Makefile

Modified: head/net/megatools/Makefile
==============================================================================
--- head/net/megatools/Makefile	Thu Nov 29 11:05:39 2018	(r486165)
+++ head/net/megatools/Makefile	Thu Nov 29 11:07:58 2018	(r486166)
@@ -17,7 +17,8 @@ BUILD_DEPENDS=	asciidoc:textproc/asciidoc
 
 CONFIGURE_ENV=	OPENSSL_CFLAGS="-I${OPENSSLINC}" \
 		OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl"
-USES=		gettext-runtime gmake gnome libtool pathfix pkgconfig ssl
+USES=		compiler:c11 gettext-runtime gmake gnome libtool pathfix \
+		pkgconfig ssl
 GNU_CONFIGURE=	yes
 USE_GNOME=	glib20
 


More information about the svn-ports-all mailing list