Skip to content

Commit

Permalink
Better windres detection
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Jul 18, 2007
1 parent 34bdf56 commit 8ce0649
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion configure.in
Expand Up @@ -96,7 +96,12 @@ AC_PROG_CC
AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_CHECK_PROGS(WINDRES, windres i386-mingw32-windres)
if test -z "$host_alias"; then
hostaliaswindres=
else
hostaliaswindres="$host_alias-windres"
fi
AC_CHECK_PROGS(WINDRES, [windres $hostaliaswindres $host_os-windres])

dnl Check for compiler characteristics
AC_C_CONST
Expand Down

0 comments on commit 8ce0649

Please sign in to comment.