On Wed, Dec 21, 2016 at 15:08:04 +0100, Pavel Hrdina wrote:
On Tue, Dec 20, 2016 at 01:41:11PM +0100, Jiri Denemark wrote:
> On Fri, Dec 16, 2016 at 10:11:01 +0100, Pavel Hrdina wrote:
> > Signed-off-by: Pavel Hrdina <phrdina(a)redhat.com>
> > ---
> > configure.ac | 11 ++---------
> > m4/virt-win-windres.m4 | 34 ++++++++++++++++++++++++++++++++++
> > 2 files changed, 36 insertions(+), 9 deletions(-)
> > create mode 100644 m4/virt-win-windres.m4
...
diff --git a/m4/virt-win-windres.m4 b/m4/virt-win-windres.m4
index c7b5d2a179..7f98c9fbff 100644
--- a/m4/virt-win-windres.m4
+++ b/m4/virt-win-windres.m4
@@ -22,11 +22,12 @@ AC_DEFUN([LIBVIRT_WIN_CHECK_WINDRES], [
with_windres=no
case "$host" in
*-*-mingw* | *-*-cygwin* | *-*-msvc* )
- with_windres=yes
AC_CHECK_TOOL([WINDRES], [windres], [])
+ if test "x$WINDRES" != "x"; then
+ with_windres=yes
;;
esac
- AM_CONDITIONAL([WITH_WIN_ICON], [test "$WINDRES" != ""])
+ AM_CONDITIONAL([WITH_WIN_ICON], [test "$with_windres" = "yes"])
])
AC_DEFUN([LIBVIRT_WIN_RESULT_WINDRES], [
ACK if you end the if statement with fi :-)
Jirka