svn commit: r545529 - head/net/quagga

Eugene Grosbein eugen at FreeBSD.org
Thu Aug 20 11:17:34 UTC 2020


Author: eugen
Date: Thu Aug 20 11:17:34 2020
New Revision: 545529
URL: https://svnweb.freebsd.org/changeset/ports/545529

Log:
  net/quagga: fix build for clang 11 and gcc 10 (FreeBSD 13)
  
  Adding -fcommon to CFLAGS as patching would be too invasive.
  PORTREVISION not bumped as it fixes build for FreeBSD 13.
  Pet portlint.
  
  Reported by:	pkg-fallout

Modified:
  head/net/quagga/Makefile

Modified: head/net/quagga/Makefile
==============================================================================
--- head/net/quagga/Makefile	Thu Aug 20 11:15:07 2020	(r545528)
+++ head/net/quagga/Makefile	Thu Aug 20 11:17:34 2020	(r545529)
@@ -15,11 +15,13 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	gawk:lang/gawk
 
-CONFLICTS=	frr5 frr6 frr7 openbgpd pimd zebra
-
 USES=		compiler:c11 cpe gmake libtool makeinfo \
 		perl5 readline ssl
+
+CONFLICTS=	frr5 frr6 frr7 openbgpd pimd zebra
+
 GNU_CONFIGURE=	yes
+CFLAGS+=	-fcommon
 INSTALL_TARGET=	install-strip
 USE_LDCONFIG=	yes
 USE_PERL5=	build


More information about the svn-ports-head mailing list