diff options
author | Bernhard Froehlich <decke@FreeBSD.org> | 2013-12-11 14:01:44 +0000 |
---|---|---|
committer | Bernhard Froehlich <decke@FreeBSD.org> | 2013-12-11 14:01:44 +0000 |
commit | 0e122e3616f1ad3a52600070950665b67e7d87f1 (patch) | |
tree | e9bb89e4969f1f23d143ce954c1f5e09d154319b /emulators | |
parent | 43d39f16cbc2b03362f0d0aca3c53ad03dcd5e7f (diff) | |
download | ports-0e122e3616f1ad3a52600070950665b67e7d87f1.tar.gz ports-0e122e3616f1ad3a52600070950665b67e7d87f1.zip |
- Add misc/compat9x port as conflicting because it causes the wrong libstdc++.so.6
to be found by rtld. In fact vbox links to libstdc++.so.6 from lang/gcc46 because of
USE_GCC=yes but we have another shared object with the same shlib version in compat9x
which is incompatible.
VirtualBox: Error -610 in supR3HardenedMainInitRuntime!
VirtualBox: dlopen("/usr/local/lib/virtualbox/VBoxRT.so",) failed:
/usr/local/lib/compat/libstdc++.so.6: version GLIBCXX_3.4.15 required
by /usr/local/lib/virtualbox/VBoxRT.so not found
PR: ports/182468
Reported by: various FreeBSD 10 users
Notes
Notes:
svn path=/head/; revision=336164
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/virtualbox-ose/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile index 3924446a456c..722bf82a0f6a 100644 --- a/emulators/virtualbox-ose/Makefile +++ b/emulators/virtualbox-ose/Makefile @@ -46,7 +46,7 @@ HAS_CONFIGURE= yes CONFIGURE_ARGS+=--with-gcc="${CC}" --with-g++="${CXX}" --passive-mesa USE_LDCONFIG= ${PREFIX}/lib/virtualbox -CONFLICTS= bcc-[0-9]* +CONFLICTS= bcc-[0-9]* compat9x-* CONFLICTS_INSTALL= virtualbox-ose-devel-[3,4]* virtualbox-ose-legacy-[3,4]* virtualbox-ose-additions-[3,4]* virtualbox-ose-additions-devel-[3,4]* VBOXUSER?= vboxusers |