mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-20 19:21:46 +00:00
CONFIGURE: ImGui now requires freetype2
This commit is contained in:
parent
f5fa7aeb0c
commit
f944132e47
33
configure
vendored
33
configure
vendored
@ -6688,22 +6688,27 @@ echocheck "ImGui"
|
||||
|
||||
if test "$_imgui" != no ; then
|
||||
if test "$_opengl" = yes ; then
|
||||
case $_backend in
|
||||
sdl)
|
||||
if test "$_sdlMajorVersionNumber" -ge 2 ; then
|
||||
_imgui=yes
|
||||
echo "yes"
|
||||
else
|
||||
if test "$_freetype2" = yes ; then
|
||||
case $_backend in
|
||||
sdl)
|
||||
if test "$_sdlMajorVersionNumber" -ge 2 ; then
|
||||
_imgui=yes
|
||||
echo "yes"
|
||||
else
|
||||
_imgui=no
|
||||
echo "no (backend unsupported)"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
# For now, only SDL supports ImGui
|
||||
_imgui=no
|
||||
echo "no (backend unsupported)"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
# For now, only SDL supports ImGui
|
||||
_imgui=no
|
||||
echo "no (backend unsupported)"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
else
|
||||
_imgui=no
|
||||
echo "no (requires FreeType2)"
|
||||
fi
|
||||
else
|
||||
_imgui=no
|
||||
echo "no (requires OpenGL)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user