1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-06-05 01:09:17 +02:00

- [GUI] prevented (using a workaround) a crash when an external program can not be found.

This commit is contained in:
cage
2024-12-15 17:21:59 +01:00
parent ddc81fb2b0
commit 9202a273f2
13 changed files with 166 additions and 44 deletions

View File

@@ -161,6 +161,13 @@ if test "$WISH" = "no" ; then
exit 1;
fi
AC_PATH_PROGS([WHICH],[which],[no])
if test "$WHICH" = "no" ; then
AC_MSG_ERROR([Can not find which executable.])
exit 1;
fi
AC_PATH_PROGS([SDL2_CONFIG],[sdl2-config],[no])
if test "$SDL2_CONFIG" = "no" ; then