Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/libzdb/
Date: Tue, 18 Feb 2020 13:58:27
Message-Id: 1582034290.9cf2e8e3fc6262e7dd0166c9317450ce62bb45c4.slyfox@gentoo
1 commit: 9cf2e8e3fc6262e7dd0166c9317450ce62bb45c4
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 18 13:57:41 2020 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 18 13:58:10 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf2e8e3
7
8 dev-db/libzdb: drop lexicographical comparison, bug #705244
9
10 Closes: https://bugs.gentoo.org/705244
11 Package-Manager: Portage-2.3.89, Repoman-2.3.20
12 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
13
14 dev-db/libzdb/libzdb-3.1-r1.ebuild | 9 +++------
15 dev-db/libzdb/libzdb-3.1.ebuild | 9 +++------
16 2 files changed, 6 insertions(+), 12 deletions(-)
17
18 diff --git a/dev-db/libzdb/libzdb-3.1-r1.ebuild b/dev-db/libzdb/libzdb-3.1-r1.ebuild
19 index 13b086bcda5..b3ba017bb1a 100644
20 --- a/dev-db/libzdb/libzdb-3.1-r1.ebuild
21 +++ b/dev-db/libzdb/libzdb-3.1-r1.ebuild
22 @@ -1,4 +1,4 @@
23 -# Copyright 1999-2019 Gentoo Authors
24 +# Copyright 1999-2020 Gentoo Authors
25 # Distributed under the terms of the GNU General Public License v2
26
27 EAPI=6
28 @@ -36,11 +36,8 @@ src_configure() {
29 ## TODO: check what --enable-optimized actually does
30 ## TODO: find someone with oracle db to add oci8 support
31 myconf=""
32 - if [[ $(gcc-version) < 4.1 ]];then
33 - myconf="${myconf} --disable-protected"
34 - else
35 - myconf="${myconf} --enable-protected"
36 - fi
37 + # enable default hidden visibility
38 + myconf="${myconf} --enable-protected"
39
40 if use sqlite; then
41 myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock"
42
43 diff --git a/dev-db/libzdb/libzdb-3.1.ebuild b/dev-db/libzdb/libzdb-3.1.ebuild
44 index 21ce5f4ef1c..caa64e3ef38 100644
45 --- a/dev-db/libzdb/libzdb-3.1.ebuild
46 +++ b/dev-db/libzdb/libzdb-3.1.ebuild
47 @@ -1,4 +1,4 @@
48 -# Copyright 1999-2019 Gentoo Authors
49 +# Copyright 1999-2020 Gentoo Authors
50 # Distributed under the terms of the GNU General Public License v2
51
52 EAPI=5
53 @@ -33,11 +33,8 @@ src_configure() {
54 ## TODO: check what --enable-optimized actually does
55 ## TODO: find someone with oracle db to add oci8 support
56 myconf=""
57 - if [[ $(gcc-version) < 4.1 ]];then
58 - myconf="${myconf} --disable-protected"
59 - else
60 - myconf="${myconf} --enable-protected"
61 - fi
62 + # enable default hidden visibility
63 + myconf="${myconf} --enable-protected"
64
65 if use sqlite; then
66 myconf="${myconf} --with-sqlite=${EPREFIX}/usr/ --enable-sqliteunlock"