[tor-commits] [tor/master] Fix dumb windows compilation bug in d9052c62
nickm at torproject.org
nickm at torproject.org
Thu Jul 9 17:36:34 UTC 2015
commit f19a75e19bba48e1a124ef8c73968bab5cbeee13
Author: Nick Mathewson <nickm at torproject.org>
Date: Thu Jul 9 13:36:27 2015 -0400
Fix dumb windows compilation bug in d9052c62
---
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 0f93e46..6fbd489 100644
--- a/configure.ac
+++ b/configure.ac
@@ -335,7 +335,7 @@ bwin32=true; AC_MSG_RESULT([yes]),
bwin32=false; AC_MSG_RESULT([no]))
fi
-if test "$bwin32" = yes; then
+if test "$bwin32" = true; then
AC_DEFINE(WIN32_LEAN_AND_MEAN, 1, [Defined to avoid including some windows headers])
AC_DEFINE(WINVER, 0x0501, [Defined to access windows functions and definitions for >=WinXP])
AC_DEFINE(_WIN32_WINNT, 0x0501, [Defined to access windows functions and definitions for >=WinXP])
More information about the tor-commits
mailing list