Bugzilla Automation <[email protected]> has asked freebsd-kde (Team)
<[email protected]> for maintainer-feedback:
Bug 266398: x11-toolkits/qt5-gui: properly handle X11=off
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=266398



--- Description ---
When building qt-gui port with the X11 option = off, it still requires libGL.so
from graphics/libglvnd, but that port will not build libGL.so unless X11 = on.

With my suggested adjustment:

X11 = on

$ make -V LIB_DEPENDS | tr ' ' '\n' | grep GL.so
libEGL.so:graphics/libglvnd
libGL.so:graphics/libglvnd
$

X11 = off
$ make -V LIB_DEPENDS | tr ' ' '\n' | grep GL.so
libEGL.so:graphics/libglvnd
$

This will unbreak building stuff when X11 = off and some port pulls in qt-gui
as a dependency.

Reply via email to