diff options
author | tnn <tnn@pkgsrc.org> | 2015-10-15 14:19:54 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2015-10-15 14:19:54 +0000 |
commit | 26d833341fc8bdaa4b22b390f0fd264973f42247 (patch) | |
tree | ad717ecdc91ca3aaff9f6a35cd9da4a1bd031a32 | |
parent | 19603e9d1a5a3c030c4189005fc59dfbd7102074 (diff) | |
download | pkgsrc-26d833341fc8bdaa4b22b390f0fd264973f42247.tar.gz |
Add -std=c++11 to CXXFLAGS to fix some high value packages, pending
tech-pkg@ discussion on how to better declare need for C++11.
This is necessary due to libsigc++ headers and will probably be
required for everything that depends on gtkmm{,3}.
(there are ~25 or so such packages in pkgsrc the I have not yet tested)
-rw-r--r-- | devel/atkmm/Makefile | 3 | ||||
-rw-r--r-- | devel/glibmm/Makefile | 3 | ||||
-rw-r--r-- | devel/pangomm/Makefile | 3 | ||||
-rw-r--r-- | graphics/inkscape/Makefile | 3 | ||||
-rw-r--r-- | x11/gtkmm/Makefile | 3 |
5 files changed, 10 insertions, 5 deletions
diff --git a/devel/atkmm/Makefile b/devel/atkmm/Makefile index 65d759a521e..0678ccfd4f8 100644 --- a/devel/atkmm/Makefile +++ b/devel/atkmm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2015/06/12 10:48:47 wiz Exp $ +# $NetBSD: Makefile,v 1.15 2015/10/15 14:19:54 tnn Exp $ DISTNAME= atkmm-2.22.7 PKGREVISION= 3 @@ -14,6 +14,7 @@ LICENSE= gnu-lgpl-v2.1 AND gnu-gpl-v2 CONFLICTS+= gtkmm<2.22.0 USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_LIBTOOL= yes USE_TOOLS+= autoconf gmake perl pkg-config GNU_CONFIGURE= yes diff --git a/devel/glibmm/Makefile b/devel/glibmm/Makefile index 5f2657b5c88..01443dc0d75 100644 --- a/devel/glibmm/Makefile +++ b/devel/glibmm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.65 2015/06/14 16:13:14 wiz Exp $ +# $NetBSD: Makefile,v 1.66 2015/10/15 14:19:54 tnn Exp $ DISTNAME= glibmm-2.44.0 CATEGORIES= devel gnome @@ -11,6 +11,7 @@ COMMENT= C++ bindings for glib LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1 USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake pkg-config perl:run diff --git a/devel/pangomm/Makefile b/devel/pangomm/Makefile index 2a90fc9e755..18c7051215f 100644 --- a/devel/pangomm/Makefile +++ b/devel/pangomm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2015/06/12 10:49:59 wiz Exp $ +# $NetBSD: Makefile,v 1.40 2015/10/15 14:19:54 tnn Exp $ DISTNAME= pangomm-2.34.0 PKGREVISION= 10 @@ -14,6 +14,7 @@ LICENSE= gnu-lgpl-v2.1 CONFLICTS+= gtkmm<=2.13.5 USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake pkg-config perl:run diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index 8ac00f7d3a7..87bd38bb9f6 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.122 2015/10/10 01:58:09 ryoon Exp $ +# $NetBSD: Makefile,v 1.123 2015/10/15 14:19:54 tnn Exp $ DISTNAME= inkscape-0.91 PKGREVISION= 8 @@ -22,6 +22,7 @@ DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml EXTRACT_USING= bsdtar GCC_REQD+= 4.5.2 USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_LIBTOOL= yes USE_PKGLOCALEDIR= yes USE_TOOLS+= gmake intltool msgfmt perl:run pkg-config diff --git a/x11/gtkmm/Makefile b/x11/gtkmm/Makefile index 308110faa3a..e16432881ea 100644 --- a/x11/gtkmm/Makefile +++ b/x11/gtkmm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.103 2015/06/12 10:52:17 wiz Exp $ +# $NetBSD: Makefile,v 1.104 2015/10/15 14:19:54 tnn Exp $ DISTNAME= gtkmm-2.24.4 PKGREVISION= 6 @@ -12,6 +12,7 @@ COMMENT= C++ interface to Gtk+ v2 LICENSE= gnu-lgpl-v2.1 USE_LANGUAGES= c c++ +CXXFLAGS+= -std=c++11 USE_LIBTOOL= yes USE_TOOLS+= gmake perl:run pkg-config GNU_CONFIGURE= yes |