- Fixed configure so that if xatrix and rogue *aren't* found

it still works.
This commit is contained in:
Jamie Wilkinson 2002-05-20 05:01:40 +00:00
parent ebc1f99b81
commit 51cda7f820
1 changed files with 4 additions and 0 deletions

View File

@ -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")