From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CC1BB139694 for ; Fri, 9 Jun 2017 18:21:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2991F21C0A3; Fri, 9 Jun 2017 18:21:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01BC121C0A3 for ; Fri, 9 Jun 2017 18:21:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DCC5A3416EA for ; Fri, 9 Jun 2017 18:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75088745D for ; Fri, 9 Jun 2017 18:21:24 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1497032477.472703f53f4a530931c923e3e04c9d5f681518ee.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/myodbc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-db/myodbc/myodbc-5.2.7-r1.ebuild dev-db/myodbc/myodbc-5.2.7-r2.ebuild X-VCS-Directories: dev-db/myodbc/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 472703f53f4a530931c923e3e04c9d5f681518ee X-VCS-Branch: master Date: Fri, 9 Jun 2017 18:21:24 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8518ac13-f429-49cc-9155-c53d7673aa42 X-Archives-Hash: 676b3bf19b2d2d260a9b7a8d266713f9 commit: 472703f53f4a530931c923e3e04c9d5f681518ee Author: Brian Evans gentoo org> AuthorDate: Fri Jun 9 18:20:43 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Jun 9 18:21:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=472703f5 dev-db/myodbc: Fix undefined references with gcc 5 std change Package-Manager: Portage-2.3.6, Repoman-2.3.2 dev-db/myodbc/myodbc-5.2.7-r1.ebuild | 5 ++++- dev-db/myodbc/myodbc-5.2.7-r2.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/dev-db/myodbc/myodbc-5.2.7-r1.ebuild b/dev-db/myodbc/myodbc-5.2.7-r1.ebuild index aea3236e0f0..22819c507ce 100644 --- a/dev-db/myodbc/myodbc-5.2.7-r1.ebuild +++ b/dev-db/myodbc/myodbc-5.2.7-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -43,6 +43,9 @@ src_prepare() { epatch "${FILESDIR}/cmake-doc-path.patch" \ "${FILESDIR}/${PVR}-cxxlinkage.patch" \ "${FILESDIR}/${PV}-mariadb-dynamic-array.patch" + + # Fix undefined references due to standards change + append-cflags -std=gnu89 } multilib_src_configure() { diff --git a/dev-db/myodbc/myodbc-5.2.7-r2.ebuild b/dev-db/myodbc/myodbc-5.2.7-r2.ebuild index 24446560e0c..e475faca21e 100644 --- a/dev-db/myodbc/myodbc-5.2.7-r2.ebuild +++ b/dev-db/myodbc/myodbc-5.2.7-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -46,6 +46,9 @@ src_prepare() { "${FILESDIR}/${PV}-r1-cxxlinkage.patch" \ "${FILESDIR}/${PV}-mariadb-dynamic-array.patch" \ "${FILESDIR}/${PV}-my_malloc.patch" + + # Fix undefined references due to standards change + append-cflags -std=gnu89 } multilib_src_configure() {