added checks for windres. Fixes bug #148443 together will my last commit.

2004-08-01  Michael Schumacher <schumaml@cvs.gnome.org>

	* configure.in: added checks for windres. Fixes bug #148443
	together will my last commit.
This commit is contained in:
Michael Schumacher 2004-08-01 16:13:01 +00:00 committed by Michael Schumacher
parent 3c1c0465ac
commit d64a2194af
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-08-01 Michael Schumacher <schumaml@cvs.gnome.org>
* configure.in: added checks for windres. Fixes bug #148443
together will my last commit.
2004-08-01 Michael Schumacher <schumaml@cvs.gnome.org>
* app/Makefile.am: added checks and rules to build and link the

View File

@ -244,6 +244,9 @@ 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])
AM_CONDITIONAL(HAVE_WINDRES, test "$windres" != ":")
fi
AM_CONDITIONAL(MS_LIB_AVAILABLE, test x$ms_librarian = xyes)