FreeBSD 中的 virtualbox GUI

FreeBSD 中的 virtualbox GUI

我在 freebsd 中使用 virtualbox-ose 端口时遇到了问题。

ns387352# make install clean
===>  virtualbox-ose-4.0.12 is marked as broken: QT4 frontend requires X11 support. Run 'make config' again!.
*** Error code 1

Stop in /usr/ports/emulators/virtualbox-ose.

qt4 已安装,xorg 已安装,还有什么错误??

答案1

Makefile中有条件:

.if defined(WITHOUT_X11) && !defined(WITHOUT_QT4)
BROKEN=QT4 frontend requires X11 support. Run 'make config' again!.
.endif

因此,请再次检查您的配置、make.conf、src.conf!

相关内容