aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2015-07-09 13:36:27 -0400
committerNick Mathewson <nickm@torproject.org>2015-07-09 13:36:27 -0400
commitf19a75e19bba48e1a124ef8c73968bab5cbeee13 (patch)
treea11129e14b2648aab82a6ae2031c518c23b471c7 /configure.ac
parent3301b7a1af26654a871e10b31d9fc4cb46af1ccc (diff)
downloadtor-f19a75e19bba48e1a124ef8c73968bab5cbeee13.tar.gz
tor-f19a75e19bba48e1a124ef8c73968bab5cbeee13.zip
Fix dumb windows compilation bug in d9052c62
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0f93e461f4..6fbd489c65 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])