summaryrefslogtreecommitdiff
path: root/app-emulation
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2016-01-01 22:18:31 +0100
committerPacho Ramos <pacho@gentoo.org>2016-01-01 22:18:31 +0100
commit7a76e11c258579f45c31c3617ad684db975e91d0 (patch)
tree8135087421c584f1dab02000cde868fa04e1d69d /app-emulation
parentc229d2d33ded9b2600d9460fcfad444dcc735aba (diff)
downloadgentoo-7a76e11c258579f45c31c3617ad684db975e91d0.tar.gz
gentoo-7a76e11c258579f45c31c3617ad684db975e91d0.tar.xz
app-emulation/open-vm-tools: Fix building with latest glibmm/libsigc++ (#570418)
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/open-vm-tools/open-vm-tools-10.0.0_p3000743.ebuild4
1 files changed, 4 insertions, 0 deletions
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
index 9c136f953a4..3cc623f333f 100644
--- 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
@@ -63,6 +63,10 @@ src_prepare() {
}
src_configure() {
+ # libsigc++-2.0 >= 2.5.1 requires C++11. Using -std=c++11
+ # does not provide "linux" definition, we need gnu++11
+ append-cxxflags -std=gnu++11
+
# https://bugs.gentoo.org/402279
export CUSTOM_PROCPS_NAME=procps
export CUSTOM_PROCPS_LIBS="$($(tc-getPKG_CONFIG) --libs libprocps)"