diff options
author | mat <mat@FreeBSD.org> | 2015-01-26 21:51:51 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2015-01-26 21:51:51 +0800 |
commit | 2674bdd86c842505583ad3cfd6f92b9a23754384 (patch) | |
tree | cda43bd802bfb9c91ff13bfb2a329b8830932d0a | |
parent | 0cff7a78e4f879a0a44e0972087b646051a4a17c (diff) | |
download | freebsd-ports-gnome-2674bdd86c842505583ad3cfd6f92b9a23754384.tar.gz freebsd-ports-gnome-2674bdd86c842505583ad3cfd6f92b9a23754384.tar.zst freebsd-ports-gnome-2674bdd86c842505583ad3cfd6f92b9a23754384.zip |
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
-rw-r--r-- | net/quagga/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile index 5980ed086e0b..29e28b7fdc90 100644 --- a/net/quagga/Makefile +++ b/net/quagga/Makefile @@ -19,7 +19,7 @@ CONFLICTS= openbgpd-[0-9]* openospfd-[0-9]* zebra-0* quagga-re-[0-9]* 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 |