Mercurial > sdl-ios-xcode
changeset 2206:ca7d2227d630
Better windres detection
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 18 Jul 2007 04:05:40 +0000 |
parents | a64c891037fd |
children | d63e9f5944ae |
files | configure.in |
diffstat | 1 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Mon Jul 16 14:19:47 2007 +0000 +++ b/configure.in Wed Jul 18 04:05:40 2007 +0000 @@ -96,7 +96,12 @@ 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