Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 9 Oct 2017 11:18:16 +0000 (UTC)
From:      Emanuel Haupt <ehaupt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r451608 - head/net-p2p/dogecoin
Message-ID:  <201710091118.v99BIGS9034115@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ehaupt
Date: Mon Oct  9 11:18:16 2017
New Revision: 451608
URL: https://svnweb.freebsd.org/changeset/ports/451608

Log:
  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

Modified:
  head/net-p2p/dogecoin/Makefile

Modified: head/net-p2p/dogecoin/Makefile
==============================================================================
--- head/net-p2p/dogecoin/Makefile	Mon Oct  9 11:04:17 2017	(r451607)
+++ head/net-p2p/dogecoin/Makefile	Mon Oct  9 11:18:16 2017	(r451608)
@@ -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



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