From owner-svn-ports-head@FreeBSD.ORG Mon Jan 26 13:51:52 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E8ADAB02; Mon, 26 Jan 2015 13:51:52 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D4CAC62D; Mon, 26 Jan 2015 13:51:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0QDpq6s062117; Mon, 26 Jan 2015 13:51:52 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0QDpqIr062116; Mon, 26 Jan 2015 13:51:52 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201501261351.t0QDpqIr062116@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 26 Jan 2015 13:51:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377934 - head/net/quagga X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jan 2015 13:51:53 -0000 Author: mat Date: Mon Jan 26 13:51:51 2015 New Revision: 377934 URL: https://svnweb.freebsd.org/changeset/ports/377934 QAT: https://qat.redports.org/buildarchive/r377934/ Log: Fix build on 8 and 9. This time for reals. So, quagga uses some anonymous structs/unions, it's part of c11, and gcc from base on 8 and 9, while not throwing errors when seeing those, kindly ignores the definition and breaks everything. Sponsored by: Absolight Modified: head/net/quagga/Makefile Modified: head/net/quagga/Makefile ============================================================================== --- head/net/quagga/Makefile Mon Jan 26 13:44:10 2015 (r377933) +++ head/net/quagga/Makefile Mon Jan 26 13:51:51 2015 (r377934) @@ -19,7 +19,7 @@ CONFLICTS= openbgpd-[0-9]* openospfd-[0- GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-exampledir=${PREFIX}/share/examples/quagga INSTALL_TARGET= install-strip -USES= gmake libtool makeinfo perl5 readline +USES= gmake libtool makeinfo perl5 readline compiler:c11 USE_LDCONFIG= yes USE_PERL5= build