Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/open-vm-tools/
Date: Fri, 01 Jan 2016 21:22:56
Message-Id: 1451683111.7a76e11c258579f45c31c3617ad684db975e91d0.pacho@gentoo
1 commit: 7a76e11c258579f45c31c3617ad684db975e91d0
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 1 21:18:31 2016 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 1 21:18:31 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a76e11c
7
8 app-emulation/open-vm-tools: Fix building with latest glibmm/libsigc++ (#570418)
9
10 Package-Manager: portage-2.2.26
11
12 app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild | 4 ++++
13 1 file changed, 4 insertions(+)
14
15 diff --git a/app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild b/app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild
16 index 9c136f9..3cc623f 100644
17 --- a/app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild
18 +++ b/app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild
19 @@ -63,6 +63,10 @@ src_prepare() {
20 }
21
22 src_configure() {
23 + # libsigc++-2.0 >= 2.5.1 requires C++11. Using -std=c++11
24 + # does not provide "linux" definition, we need gnu++11
25 + append-cxxflags -std=gnu++11
26 +
27 # https://bugs.gentoo.org/402279
28 export CUSTOM_PROCPS_NAME=procps
29 export CUSTOM_PROCPS_LIBS="$($(tc-getPKG_CONFIG) --libs libprocps)"