From: Matthias Braun Date: Fri, 1 Jul 2005 14:39:18 +0000 (+0000) Subject: also test for .exe progs on win32 X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=c1583b50b204a0c9e50c7b7750db50d24ff5f6fa;p=supertux.git also test for .exe progs on win32 SVN-Revision: 2661 --- diff --git a/configure.ac b/configure.ac index cb7926e1c..5cd7ac130 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ AC_PROG_CC AC_PROG_CXX AC_PROG_INSTALL -AC_CHECK_PROGS(XGETTEXT, xgettext) +AC_CHECK_PROGS(XGETTEXT, [xgettext xgettext.exe]) if test -n "$XGETTEXT" ; then AC_MSG_CHECKING([if xgettext supports lisp]) if echo '(gettext "test")' | xgettext -o - -L Lisp - >& /dev/null; then @@ -42,7 +42,7 @@ fi AC_PROG_LEX LEX_LIBS=$LEXLIB AC_SUBST([LEX_LIBS]) -AC_CHECK_PROGS([BISON], bison) +AC_CHECK_PROGS([BISON], [bison bison.exe]) AC_SUBST([BISON]) dnl Checks for header files.