Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 Aug 2020 11:17:34 +0000 (UTC)
From:      Eugene Grosbein <eugen@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545529 - head/net/quagga
Message-ID:  <202008201117.07KBHYlK086501@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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