diff options
author | jbeich <jbeich@FreeBSD.org> | 2018-10-28 17:36:56 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2018-10-28 17:36:56 +0800 |
commit | ea3c160881eb60292f774b135239dcf59b5fdfaa (patch) | |
tree | 5b1656d091ca74a23ee2a9be5fc60e5f9fc374fb /net-p2p | |
parent | 6d36f8955989ea766354bf6dc7b19885bf353df8 (diff) | |
download | freebsd-ports-gnome-ea3c160881eb60292f774b135239dcf59b5fdfaa.tar.gz freebsd-ports-gnome-ea3c160881eb60292f774b135239dcf59b5fdfaa.tar.zst freebsd-ports-gnome-ea3c160881eb60292f774b135239dcf59b5fdfaa.zip |
Downgrade C++03 to C++98, actual default for GCC < 6
GCC 4.2 in base system doesn't support C++03:
cc1plus: error: unrecognized command line option "-std=gnu++03"
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/verlihub-plugins-floodprotect/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-p2p/verlihub-plugins-floodprotect/Makefile b/net-p2p/verlihub-plugins-floodprotect/Makefile index 5b55bc475f17..b13d9aef7b48 100644 --- a/net-p2p/verlihub-plugins-floodprotect/Makefile +++ b/net-p2p/verlihub-plugins-floodprotect/Makefile @@ -17,7 +17,7 @@ PLUGIN_DESC= Floodprotect # Bug 219281: the port fails to build in C++14 mode (the default in GCC 6), # switch back to the old default GCC used before. -USE_CXXSTD= gnu++03 +USE_CXXSTD= gnu++98 .include "../verlihub-plugins/Makefile.plugins" .include <bsd.port.mk> |