diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2017-10-09 19:18:16 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2017-10-09 19:18:16 +0800 |
commit | 2d9c6a49ad70195d60748fc5581ff6ee2749918b (patch) | |
tree | 13ef66ca929bdd1131b35ce20b0cdc6a5ae886d1 /net-p2p | |
parent | 7728c73f4d1e92bb295712dff715cb49751e8130 (diff) | |
download | freebsd-ports-gnome-2d9c6a49ad70195d60748fc5581ff6ee2749918b.tar.gz freebsd-ports-gnome-2d9c6a49ad70195d60748fc5581ff6ee2749918b.tar.zst freebsd-ports-gnome-2d9c6a49ad70195d60748fc5581ff6ee2749918b.zip |
Fix build on 10.3. Explicitly pass -std=c++11 to the compiler because Qt 5.7+
requires C++11 support, and FreeBSD 10.3 does not default to C++11 mode.
Notified by: pkg-fallout
Diffstat (limited to 'net-p2p')
-rw-r--r-- | net-p2p/dogecoin/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net-p2p/dogecoin/Makefile b/net-p2p/dogecoin/Makefile index 3b5c9e594cd3..1d0ab172021a 100644 --- a/net-p2p/dogecoin/Makefile +++ b/net-p2p/dogecoin/Makefile @@ -19,6 +19,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ USES= autoreconf bdb compiler:gcc-c++11-lib gmake libtool \ localbase:ldconfig pkgconfig ssl +USE_CXXSTD= c++11 USE_GITHUB= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes |