diff options
author | Dieter Verfaillie <dieterv@optionexplicit.be> | 2011-09-05 15:52:21 +0200 |
---|---|---|
committer | Dieter Verfaillie <dieterv@optionexplicit.be> | 2011-09-07 21:37:55 +0200 |
commit | e01556aaaf4b1623ed932585611c5c3908e66448 (patch) | |
tree | 53e3c86a25385079e27220447a9007c1dfecd36b /configure.ac | |
parent | a8977bc6c93793fc9a2e9b6d4315c385d5ed4cb9 (diff) | |
download | gobject-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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
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 |