From f21c4caefb7faa7c26b9ea1eb806b89ab6108fc4 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Sun, 1 Aug 2004 19:55:40 +0000 Subject: [PATCH] Really fix WINDRES logic. 2004-08-01 Manish Singh * configure.in: Really fix WINDRES logic. --- ChangeLog | 4 ++++ configure.in | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 93b93f2669..f0545eeb44 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2004-08-01 Manish Singh + + * configure.in: Really fix WINDRES logic. + 2004-08-01 DindinX * plug-ins/common/scatter_hsv.c: ported to GimpPreviewArea. diff --git a/configure.in b/configure.in index db9b2d2e7e..238ae45223 100644 --- a/configure.in +++ b/configure.in @@ -244,11 +244,13 @@ AM_CONDITIONAL(OS_UNIX, test "$os_win32" != "yes") if test "$os_win32" = "yes"; then AC_CHECK_PROG(ms_librarian, lib.exe, yes, no) - AC_CHECK_TOOL(WINDRES, windres) - AC_MSG_RESULT([$windres]) + AC_CHECK_TOOL(WINDRES, windres, :) fi + AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes) -AM_CONDITIONAL(HAVE_WINDRES, test "x$windres" != "x") +AM_CONDITIONAL(HAVE_WINDRES, test "x$windres" != "x:") + +AC_SUBST(WINDRES) ############### # Generic stuff