summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Verfaillie <dieterv@optionexplicit.be>2011-09-05 15:52:21 +0200
committerDieter Verfaillie <dieterv@optionexplicit.be>2011-09-07 21:37:55 +0200
commite01556aaaf4b1623ed932585611c5c3908e66448 (patch)
tree53e3c86a25385079e27220447a9007c1dfecd36b
parenta8977bc6c93793fc9a2e9b6d4315c385d5ed4cb9 (diff)
downloadgobject-introspection-e01556aaaf4b1623ed932585611c5c3908e66448.tar.gz
Windows port: check for OS_WIN32 in configure.ac
Without repeated output created by AC_MSG_CHECKING([for Win32]) https://bugzilla.gnome.org/show_bug.cgi?id=620566
-rw-r--r--configure.ac4
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 9e745b43..29dab339 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,7 +24,6 @@ AM_SILENT_RULES([yes])
# Check for Win32
AC_CANONICAL_HOST
-AC_MSG_CHECKING([for Win32])
case "$host" in
*-*-mingw*)
os_win32=yes
@@ -33,8 +32,7 @@ case "$host" in
os_win32=no
;;
esac
-AC_MSG_RESULT([$os_win32])
-AM_CONDITIONAL(OS_WIN32, [test "$os_win32" = "yes"])
+AM_CONDITIONAL(OS_WIN32, [test x"$os_win32" = "xyes"])
# Checks for programs.
AC_PROG_CC