소스 검색

Fix dumb windows compilation bug in d9052c62

Nick Mathewson 9 년 전
부모
커밋
f19a75e19b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      configure.ac

+ 1 - 1
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])