mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
- Fixed configure so that if xatrix and rogue *aren't* found
it still works.
This commit is contained in:
parent
ebc1f99b81
commit
51cda7f820
1 changed files with 4 additions and 0 deletions
|
@ -168,12 +168,16 @@ AC_MSG_CHECKING(to see if xatrix source is available)
|
|||
if test -f src/xatrix/g_main.c; then
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(DO_XATRIX, 1, [Define this if you have the xatrix source])
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
|
||||
AC_MSG_CHECKING(to see if rogue source is available)
|
||||
if test -f src/rogue/g_main.c; then
|
||||
AC_MSG_RESULT(yes)
|
||||
AC_DEFINE(DO_ROGUE, 1, [Define this if you have the rogue source])
|
||||
else
|
||||
AC_MSG_RESULT(no)
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(DO_XATRIX, test "$DO_XATRIX" = "yes")
|
||||
|
|
Loading…
Reference in a new issue