From cec990102bd166a0da3450f79b2be571b84cd294 Mon Sep 17 00:00:00 2001 From: glenlow Date: Sat, 1 Mar 2008 12:35:02 +0000 Subject: [PATCH] lefty now builds in MinGW: minor preprocessor changes, modern definition of WinMain, use windres to compile resources in MinGW/Cygwin --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index c48767122..f987cd081 100644 --- a/configure.ac +++ b/configure.ac @@ -197,6 +197,10 @@ PKG_PROG_PKG_CONFIG #AC_CYGWIN #AC_MINGW32 +AC_CHECK_PROGS(RC,rc windres,false) +AM_CONDITIONAL(RC_IS_RC, [test "x$RC" = "xrc"]) +AM_CONDITIONAL(RC_IS_WINDRES, [test "x$RC" = "xwindres"]) + dnl ----------------------------------- dnl checks for compilers -- 2.50.1