Received: by mail.netbsd.org (Postfix, from userid 605) id A178B84D4A; Thu, 12 Oct 2017 18:21:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 34F5A84D33 for ; Thu, 12 Oct 2017 18:21:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id vmtrToZr43qQ for ; Thu, 12 Oct 2017 18:21:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2670684CE1 for ; Thu, 12 Oct 2017 18:21:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1D47FFBC7; Thu, 12 Oct 2017 18:21:25 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1507832485172040" MIME-Version: 1.0 Date: Thu, 12 Oct 2017 18:21:25 +0000 From: "Niclas Rosenvik" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: nros@netbsd.org X-Mailer: log_accum Message-Id: <20171012182125.1D47FFBC7@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1507832485172040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nros Date: Thu Oct 12 18:21:24 UTC 2017 Modified Files: pkgsrc/databases/qore-freetds-module: Makefile pkgsrc/databases/qore-mysql-module: Makefile buildlink3.mk pkgsrc/databases/qore-openldap-module: Makefile pkgsrc/databases/qore-pgsql-module: Makefile pkgsrc/databases/qore-sqlite3-module: Makefile pkgsrc/devel/qore-uuid-module: Makefile pkgsrc/graphics/qore-glut-module: Makefile buildlink3.mk pkgsrc/graphics/qore-opengl-module: Makefile buildlink3.mk pkgsrc/security/qore-asn1-module: Makefile pkgsrc/security/qore-ssh2-module: Makefile pkgsrc/security/qore-xmlsec-module: Makefile pkgsrc/textproc/qore-xml-module: Makefile pkgsrc/textproc/qore-yaml-module: Makefile Log Message: Revbump and use of c++11 beacuse of lang/qore update. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/qore-freetds-module/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/qore-mysql-module/Makefile \ pkgsrc/databases/qore-mysql-module/buildlink3.mk cvs rdiff -u -r1.4 -r1.5 pkgsrc/databases/qore-openldap-module/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/databases/qore-pgsql-module/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/databases/qore-sqlite3-module/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/devel/qore-uuid-module/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/qore-glut-module/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/qore-glut-module/buildlink3.mk cvs rdiff -u -r1.5 -r1.6 pkgsrc/graphics/qore-opengl-module/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/graphics/qore-opengl-module/buildlink3.mk cvs rdiff -u -r1.4 -r1.5 pkgsrc/security/qore-asn1-module/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/security/qore-ssh2-module/Makefile cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/qore-xmlsec-module/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/qore-xml-module/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/textproc/qore-yaml-module/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1507832485172040 Content-Disposition: inline Content-Length: 12972 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/qore-freetds-module/Makefile diff -u pkgsrc/databases/qore-freetds-module/Makefile:1.7 pkgsrc/databases/qore-freetds-module/Makefile:1.8 --- pkgsrc/databases/qore-freetds-module/Makefile:1.7 Sun Sep 17 15:05:31 2017 +++ pkgsrc/databases/qore-freetds-module/Makefile Thu Oct 12 18:21:23 2017 @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.7 2017/09/17 15:05:31 taca Exp $ +# $NetBSD: Makefile,v 1.8 2017/10/12 18:21:23 nros Exp $ DISTNAME= qore-sybase-modules-1.0.4 PKGNAME= ${DISTNAME:S/sybase-modules/freetds-module/} -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -16,7 +16,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= pax PTHREAD_OPTS+= require Index: pkgsrc/databases/qore-mysql-module/Makefile diff -u pkgsrc/databases/qore-mysql-module/Makefile:1.4 pkgsrc/databases/qore-mysql-module/Makefile:1.5 --- pkgsrc/databases/qore-mysql-module/Makefile:1.4 Sun Aug 7 11:44:42 2016 +++ pkgsrc/databases/qore-mysql-module/Makefile Thu Oct 12 18:21:23 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:42 nros Exp $ +# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:23 nros Exp $ DISTNAME= qore-mysql-module-2.0.1 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} EXTRACT_SUFX= .tar.bz2 @@ -13,7 +13,7 @@ LICENSE= gnu-gpl-v2 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/databases/qore-mysql-module/buildlink3.mk diff -u pkgsrc/databases/qore-mysql-module/buildlink3.mk:1.4 pkgsrc/databases/qore-mysql-module/buildlink3.mk:1.5 --- pkgsrc/databases/qore-mysql-module/buildlink3.mk:1.4 Fri Jul 22 13:01:33 2016 +++ pkgsrc/databases/qore-mysql-module/buildlink3.mk Thu Oct 12 18:21:23 2017 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.4 2016/07/22 13:01:33 nros Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2017/10/12 18:21:23 nros Exp $ # BUILDLINK_TREE+= qore-mysql-module @@ -7,7 +7,7 @@ BUILDLINK_TREE+= qore-mysql-module QORE_MYSQL_MODULE_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.qore-mysql-module+= qore-mysql-module>=2.0.1 -BUILDLINK_ABI_DEPENDS.qore-mysql-module?= qore-mysql-module>=2.0.1nb6 +BUILDLINK_ABI_DEPENDS.qore-mysql-module?= qore-mysql-module>=2.0.1nb7 BUILDLINK_PKGSRCDIR.qore-mysql-module?= ../../databases/qore-mysql-module .include "../../lang/qore/buildlink3.mk" Index: pkgsrc/databases/qore-openldap-module/Makefile diff -u pkgsrc/databases/qore-openldap-module/Makefile:1.4 pkgsrc/databases/qore-openldap-module/Makefile:1.5 --- pkgsrc/databases/qore-openldap-module/Makefile:1.4 Sun Aug 7 11:44:42 2016 +++ pkgsrc/databases/qore-openldap-module/Makefile Thu Oct 12 18:21:23 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:42 nros Exp $ +# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:23 nros Exp $ DISTNAME= qore-openldap-module-1.1 +PKGREVISION= 1 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -14,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/databases/qore-pgsql-module/Makefile diff -u pkgsrc/databases/qore-pgsql-module/Makefile:1.5 pkgsrc/databases/qore-pgsql-module/Makefile:1.6 --- pkgsrc/databases/qore-pgsql-module/Makefile:1.5 Sun Oct 9 21:41:57 2016 +++ pkgsrc/databases/qore-pgsql-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2016/10/09 21:41:57 wiz Exp $ +# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-pgsql-module-2.4 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -15,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1 OR mit GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/databases/qore-sqlite3-module/Makefile diff -u pkgsrc/databases/qore-sqlite3-module/Makefile:1.12 pkgsrc/databases/qore-sqlite3-module/Makefile:1.13 --- pkgsrc/databases/qore-sqlite3-module/Makefile:1.12 Mon Sep 18 09:53:14 2017 +++ pkgsrc/databases/qore-sqlite3-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2017/09/18 09:53:14 maya Exp $ +# $NetBSD: Makefile,v 1.13 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-sqlite3-module-1.0.1 -PKGREVISION= 12 +PKGREVISION= 13 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 PTHREAD_OPTS+= native CONFIGURE_ARGS+=--with-sqlite3=${BUILDLINK_PREFIX.sqlite3} Index: pkgsrc/devel/qore-uuid-module/Makefile diff -u pkgsrc/devel/qore-uuid-module/Makefile:1.3 pkgsrc/devel/qore-uuid-module/Makefile:1.4 --- pkgsrc/devel/qore-uuid-module/Makefile:1.3 Fri Jul 22 13:07:15 2016 +++ pkgsrc/devel/qore-uuid-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2016/07/22 13:07:15 nros Exp $ +# $NetBSD: Makefile,v 1.4 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-uuid-module-1.3 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} EXTRACT_SUFX= .tar.bz2 @@ -13,7 +13,7 @@ LICENSE= gnu-lgpl-v2.1 OR mit GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/graphics/qore-glut-module/Makefile diff -u pkgsrc/graphics/qore-glut-module/Makefile:1.5 pkgsrc/graphics/qore-glut-module/Makefile:1.6 --- pkgsrc/graphics/qore-glut-module/Makefile:1.5 Sun Aug 7 11:44:43 2016 +++ pkgsrc/graphics/qore-glut-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2016/08/07 11:44:43 nros Exp $ +# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-glut-module-0.0.3 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 PTHREAD_OPTS+= native CONFIGURE_ARGS+=--with-glut=${BUILDLINK_PREFIX.glut} Index: pkgsrc/graphics/qore-glut-module/buildlink3.mk diff -u pkgsrc/graphics/qore-glut-module/buildlink3.mk:1.3 pkgsrc/graphics/qore-glut-module/buildlink3.mk:1.4 --- pkgsrc/graphics/qore-glut-module/buildlink3.mk:1.3 Fri Jul 22 13:16:39 2016 +++ pkgsrc/graphics/qore-glut-module/buildlink3.mk Thu Oct 12 18:21:24 2017 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.3 2016/07/22 13:16:39 nros Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2017/10/12 18:21:24 nros Exp $ # BUILDLINK_TREE+= qore-glut-module @@ -7,7 +7,7 @@ BUILDLINK_TREE+= qore-glut-module QORE_GLUT_MODULE_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.qore-glut-module+= qore-glut-module>=0.0.3 -BUILDLINK_ABI_DEPENDS.qore-glut-module?= qore-glut-module>=0.0.3nb6 +BUILDLINK_ABI_DEPENDS.qore-glut-module?= qore-glut-module>=0.0.3nb7 BUILDLINK_PKGSRCDIR.qore-glut-module?= ../../graphics/qore-glut-module .include "../../graphics/qore-opengl-module/buildlink3.mk" Index: pkgsrc/graphics/qore-opengl-module/Makefile diff -u pkgsrc/graphics/qore-opengl-module/Makefile:1.5 pkgsrc/graphics/qore-opengl-module/Makefile:1.6 --- pkgsrc/graphics/qore-opengl-module/Makefile:1.5 Sun Aug 7 11:44:43 2016 +++ pkgsrc/graphics/qore-opengl-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2016/08/07 11:44:43 nros Exp $ +# $NetBSD: Makefile,v 1.6 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-opengl-module-0.0.3 -PKGREVISION= 7 +PKGREVISION= 8 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= autoconf automake gmake PTHREAD_OPTS+= native Index: pkgsrc/graphics/qore-opengl-module/buildlink3.mk diff -u pkgsrc/graphics/qore-opengl-module/buildlink3.mk:1.3 pkgsrc/graphics/qore-opengl-module/buildlink3.mk:1.4 --- pkgsrc/graphics/qore-opengl-module/buildlink3.mk:1.3 Fri Jul 22 13:12:17 2016 +++ pkgsrc/graphics/qore-opengl-module/buildlink3.mk Thu Oct 12 18:21:24 2017 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.3 2016/07/22 13:12:17 nros Exp $ +# $NetBSD: buildlink3.mk,v 1.4 2017/10/12 18:21:24 nros Exp $ # BUILDLINK_TREE+= qore-opengl-module @@ -7,7 +7,7 @@ BUILDLINK_TREE+= qore-opengl-module QORE_OPENGL_MODULE_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.qore-opengl-module+= qore-opengl-module>=0.0.3 -BUILDLINK_ABI_DEPENDS.qore-opengl-module?= qore-opengl-module>=0.0.3nb7 +BUILDLINK_ABI_DEPENDS.qore-opengl-module?= qore-opengl-module>=0.0.3nb8 BUILDLINK_PKGSRCDIR.qore-opengl-module?= ../../graphics/qore-opengl-module .include "../../lang/qore/buildlink3.mk" Index: pkgsrc/security/qore-asn1-module/Makefile diff -u pkgsrc/security/qore-asn1-module/Makefile:1.4 pkgsrc/security/qore-asn1-module/Makefile:1.5 --- pkgsrc/security/qore-asn1-module/Makefile:1.4 Sun Aug 7 10:17:53 2016 +++ pkgsrc/security/qore-asn1-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2016/08/07 10:17:53 nros Exp $ +# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-asn1-module-0.0.3 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 PTHREAD_OPTS+= require INSTALLATION_DIRS+= share/doc/qore-asn1-module Index: pkgsrc/security/qore-ssh2-module/Makefile diff -u pkgsrc/security/qore-ssh2-module/Makefile:1.6 pkgsrc/security/qore-ssh2-module/Makefile:1.7 --- pkgsrc/security/qore-ssh2-module/Makefile:1.6 Sun Aug 7 11:44:43 2016 +++ pkgsrc/security/qore-ssh2-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.6 2016/08/07 11:44:43 nros Exp $ +# $NetBSD: Makefile,v 1.7 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-ssh2-module-1.0 +PKGREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -14,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1 OR mit GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/security/qore-xmlsec-module/Makefile diff -u pkgsrc/security/qore-xmlsec-module/Makefile:1.2 pkgsrc/security/qore-xmlsec-module/Makefile:1.3 --- pkgsrc/security/qore-xmlsec-module/Makefile:1.2 Sat Mar 5 11:29:25 2016 +++ pkgsrc/security/qore-xmlsec-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2016/03/05 11:29:25 jperkin Exp $ +# $NetBSD: Makefile,v 1.3 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-xmlsec-module-0.0.2 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qore/} @@ -12,7 +12,7 @@ LICENSE= gnu-lgpl-v2.1 GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 PTHREAD_OPTS+= native CONFIGURE_ARGS+=--with-xmlsec-dir=${BUILDLINK_PREFIX.xmlsec1} Index: pkgsrc/textproc/qore-xml-module/Makefile diff -u pkgsrc/textproc/qore-xml-module/Makefile:1.4 pkgsrc/textproc/qore-xml-module/Makefile:1.5 --- pkgsrc/textproc/qore-xml-module/Makefile:1.4 Sun Aug 7 11:44:43 2016 +++ pkgsrc/textproc/qore-xml-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:43 nros Exp $ +# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-xml-module-1.3 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -15,7 +16,7 @@ LICENSE= gnu-lgpl-v2.1 OR mit GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native Index: pkgsrc/textproc/qore-yaml-module/Makefile diff -u pkgsrc/textproc/qore-yaml-module/Makefile:1.4 pkgsrc/textproc/qore-yaml-module/Makefile:1.5 --- pkgsrc/textproc/qore-yaml-module/Makefile:1.4 Sun Aug 7 11:44:43 2016 +++ pkgsrc/textproc/qore-yaml-module/Makefile Thu Oct 12 18:21:24 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2016/08/07 11:44:43 nros Exp $ +# $NetBSD: Makefile,v 1.5 2017/10/12 18:21:24 nros Exp $ DISTNAME= qore-yaml-module-0.5 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} EXTRACT_SUFX= .tar.bz2 @@ -14,7 +15,7 @@ LICENSE= gnu-lgpl-v2.1 OR mit GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native --_----------=_1507832485172040--