mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 08:30:16 +00:00
config.libs.sh: reintroduce HAVE_X11 check
Current behaviour would force check_val to check for X11 even if explicitly disabled. Fixes Raspberry Pi build (which requires --disable-x11).
This commit is contained in:
parent
258c8acdad
commit
010aa8061f
@ -398,7 +398,7 @@ check_pkgconf FREETYPE freetype2
|
||||
check_pkgconf X11 x11
|
||||
check_pkgconf XCB xcb
|
||||
|
||||
if [ "$OS" != 'Darwin' ]; then
|
||||
if [ "$HAVE_X11" != 'no' ] && [ "$OS" != 'Darwin' ]; then
|
||||
check_val '' X11 -lX11
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user