diff options
author | decke <decke@FreeBSD.org> | 2013-12-11 22:01:44 +0800 |
---|---|---|
committer | decke <decke@FreeBSD.org> | 2013-12-11 22:01:44 +0800 |
commit | 67d527b1ce183c0922b0761489c2f1a2a7ff40be (patch) | |
tree | e9bb89e4969f1f23d143ce954c1f5e09d154319b /emulators | |
parent | be948edd47ee2e34fedd750c452d22ef0f617243 (diff) | |
download | freebsd-ports-gnome-67d527b1ce183c0922b0761489c2f1a2a7ff40be.tar.gz freebsd-ports-gnome-67d527b1ce183c0922b0761489c2f1a2a7ff40be.tar.zst freebsd-ports-gnome-67d527b1ce183c0922b0761489c2f1a2a7ff40be.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
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 |