svn commit: r505994 - in head: databases/p5-DBD-mysql lang/perl5-devel lang/perl5.26 lang/perl5.28 lang/perl5.30

Piotr Kubaj pkubaj at FreeBSD.org
Sat Jul 6 13:21:58 UTC 2019


Author: pkubaj
Date: Sat Jul  6 13:21:56 2019
New Revision: 505994
URL: https://svnweb.freebsd.org/changeset/ports/505994

Log:
  databases/p5-DBD-mysql: fix build with GCC architectures
  
  Add USES=compiler:c11 (also to lang/perl5* ports) since it's necessary:
  Can't link/include C library 'atomic', aborting.
  
  Approved by:    mentors (implicit approval)

Modified:
  head/databases/p5-DBD-mysql/Makefile
  head/lang/perl5-devel/Makefile
  head/lang/perl5.26/Makefile
  head/lang/perl5.28/Makefile
  head/lang/perl5.30/Makefile

Modified: head/databases/p5-DBD-mysql/Makefile
==============================================================================
--- head/databases/p5-DBD-mysql/Makefile	Sat Jul  6 13:14:08 2019	(r505993)
+++ head/databases/p5-DBD-mysql/Makefile	Sat Jul  6 13:21:56 2019	(r505994)
@@ -22,7 +22,7 @@ TEST_DEPENDS=	p5-Test-Deep>=0:devel/p5-Test-Deep
 
 CONFLICTS_INSTALL?=	p5-DBD-mysql[45][0-9]-[0-9]*
 
-USES=		mysql perl5
+USES=		compiler:c11 mysql perl5
 USE_PERL5=	configure
 
 OPTIONS_DEFINE=	SSL

Modified: head/lang/perl5-devel/Makefile
==============================================================================
--- head/lang/perl5-devel/Makefile	Sat Jul  6 13:14:08 2019	(r505993)
+++ head/lang/perl5-devel/Makefile	Sat Jul  6 13:21:56 2019	(r505994)
@@ -26,7 +26,7 @@ LICENSE_FILE_GPLv1+ =	${WRKSRC}/Copying
 #EXPIRATION_DATE=<Release date of .0 + 3 years>
 
 # XXX releases are .tar.xz, add: tar:xz
-USES=	cpe
+USES=	compiler:c11 cpe
 
 # Give a hint of where libperl.so can be found.
 USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE

Modified: head/lang/perl5.26/Makefile
==============================================================================
--- head/lang/perl5.26/Makefile	Sat Jul  6 13:14:08 2019	(r505993)
+++ head/lang/perl5.26/Makefile	Sat Jul  6 13:21:56 2019	(r505994)
@@ -79,7 +79,7 @@ SITE_MAN1?=	${PREFIX}/${SITE_MAN1_REL}
 _PRIV_LIB=	lib/perl5/${PERL_VER}
 _ARCH_LIB=	${_PRIV_LIB}/${PERL_ARCH}
 
-USES=	cpe tar:xz
+USES=	compiler:c11 cpe tar:xz
 
 HAS_CONFIGURE=	yes
 CONFIGURE_SCRIPT=Configure

Modified: head/lang/perl5.28/Makefile
==============================================================================
--- head/lang/perl5.28/Makefile	Sat Jul  6 13:14:08 2019	(r505993)
+++ head/lang/perl5.28/Makefile	Sat Jul  6 13:21:56 2019	(r505994)
@@ -79,7 +79,7 @@ SITE_MAN1?=	${PREFIX}/${SITE_MAN1_REL}
 _PRIV_LIB=	lib/perl5/${PERL_VER}
 _ARCH_LIB=	${_PRIV_LIB}/${PERL_ARCH}
 
-USES=	cpe tar:xz
+USES=	compiler:c11 cpe tar:xz
 
 HAS_CONFIGURE=	yes
 CONFIGURE_SCRIPT=Configure

Modified: head/lang/perl5.30/Makefile
==============================================================================
--- head/lang/perl5.30/Makefile	Sat Jul  6 13:14:08 2019	(r505993)
+++ head/lang/perl5.30/Makefile	Sat Jul  6 13:21:56 2019	(r505994)
@@ -19,7 +19,7 @@ LICENSE_FILE_GPLv1+ =	${WRKSRC}/Copying
 #DEPRECATED=	Support end three years after .0 release, please upgrade to a more recent version of Perl
 #EXPIRATION_DATE=	2022-05-22
 
-USES=	cpe tar:xz
+USES=	compiler:c11 cpe tar:xz
 
 # Give a hint of where libperl.so can be found.
 USE_LDCONFIG=	${PREFIX}/${_ARCH_LIB}/CORE


More information about the svn-ports-all mailing list