Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=TGcLc+cE; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=1F2p4tdq Received: by mail.netbsd.org (Postfix, from userid 605) id C4E8284EBF; Wed, 15 May 2024 15:59:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715788797; bh=qvpdvKeg3haEoCFBdy/Jv2d5mXuedCGxgvKMVBD9CvI=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=TGcLc+cEWi1tY92UZKvWe73PiUY43rqFje8QYf99443nCxhDQ67QsWpU1WOVESt5C Db358FqoIZtSZ+4pb2ESQffeDh80tcu0/huLthBjvnLEc9k2ak7VEbubd6D+lW5Td/ Ist+zFy6slhSIvFdOsUmcqIYxCXhpb0O5YIxVBlE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B657884E7E for ; Wed, 15 May 2024 15:59:56 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id MF4zz4QoRJkn for ; Wed, 15 May 2024 15:59:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 299B584DA9 for ; Wed, 15 May 2024 15:59:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715788796; bh=qvpdvKeg3haEoCFBdy/Jv2d5mXuedCGxgvKMVBD9CvI=; h=Date:From:Subject:To:Reply-To; b=1F2p4tdqoCVTW2u0fGR5iUG+JUM038KpIWIUSOpr3CSZ+6ZV3gFXbWmA1HAG/UYwW oLyB35AuNRlvpppX/+c0znK5s3CGYGdIrPOUM9QTBc337XW8sB1u/CtLV/+VPUHxw0 QGDwqCgK/jEj8BcQk7ZWsZLaySIYy/EW16kjIVwQ= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1F126FA2C; Wed, 15 May 2024 15:59:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715788796294760" MIME-Version: 1.0 Date: Wed, 15 May 2024 15:59:56 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/databases To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20240515155956.1F126FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715788796294760 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed May 15 15:59:56 UTC 2024 Modified Files: pkgsrc/databases/mariadb1011-client: Makefile.common pkgsrc/databases/mariadb105-client: Makefile.common pkgsrc/databases/mariadb106-client: Makefile.common Log Message: MariaDB 10.5+ requires a C++11 compiler. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 pkgsrc/databases/mariadb1011-client/Makefile.common cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/mariadb105-client/Makefile.common cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/mariadb106-client/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715788796294760 Content-Disposition: inline Content-Length: 2204 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/mariadb1011-client/Makefile.common diff -u pkgsrc/databases/mariadb1011-client/Makefile.common:1.9 pkgsrc/databases/mariadb1011-client/Makefile.common:1.10 --- pkgsrc/databases/mariadb1011-client/Makefile.common:1.9 Fri May 10 06:00:34 2024 +++ pkgsrc/databases/mariadb1011-client/Makefile.common Wed May 15 15:59:55 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.9 2024/05/10 06:00:34 wiz Exp $ +# $NetBSD: Makefile.common,v 1.10 2024/05/15 15:59:55 nia Exp $ # # used by databases/mariadb1011-client/Makefile # used by databases/mariadb1011-server/Makefile @@ -22,6 +22,8 @@ USE_CURSES= wide PLIST_SRC= ${PLIST_SRC_DFLT} +USE_CXX_FEATURES+= c++11 + .include "../../mk/bsd.prefs.mk" # Index: pkgsrc/databases/mariadb105-client/Makefile.common diff -u pkgsrc/databases/mariadb105-client/Makefile.common:1.28 pkgsrc/databases/mariadb105-client/Makefile.common:1.29 --- pkgsrc/databases/mariadb105-client/Makefile.common:1.28 Mon May 6 08:41:57 2024 +++ pkgsrc/databases/mariadb105-client/Makefile.common Wed May 15 15:59:55 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.28 2024/05/06 08:41:57 jperkin Exp $ +# $NetBSD: Makefile.common,v 1.29 2024/05/15 15:59:55 nia Exp $ # # used by databases/mariadb105-client/Makefile # used by databases/mariadb105-server/Makefile @@ -21,6 +21,8 @@ USE_CURSES= wide PLIST_SRC= ${PLIST_SRC_DFLT} +USE_CXX_FEATURES+= c++11 + .include "../../mk/bsd.prefs.mk" # Index: pkgsrc/databases/mariadb106-client/Makefile.common diff -u pkgsrc/databases/mariadb106-client/Makefile.common:1.24 pkgsrc/databases/mariadb106-client/Makefile.common:1.25 --- pkgsrc/databases/mariadb106-client/Makefile.common:1.24 Mon May 6 08:41:57 2024 +++ pkgsrc/databases/mariadb106-client/Makefile.common Wed May 15 15:59:55 2024 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.24 2024/05/06 08:41:57 jperkin Exp $ +# $NetBSD: Makefile.common,v 1.25 2024/05/15 15:59:55 nia Exp $ # # used by databases/mariadb106-client/Makefile # used by databases/mariadb106-server/Makefile @@ -21,6 +21,8 @@ USE_CURSES= wide PLIST_SRC= ${PLIST_SRC_DFLT} +USE_CXX_FEATURES+= c++11 + .include "../../mk/bsd.prefs.mk" # --_----------=_1715788796294760--