From a458b11b168ba122da94a45aa0e58f2156fe38c8 Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Sat, 27 Aug 2011 16:22:50 +0200 Subject: BUG: fix non-mandatory win32-specific check. --- numpy/random/bscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numpy/random/bscript b/numpy/random/bscript index 3e509159f..c548f29e8 100644 --- a/numpy/random/bscript +++ b/numpy/random/bscript @@ -9,7 +9,7 @@ def configure(context): conf = context.waf_context conf.env.USE_WINCRYPT = False - if conf.check_declaration("_WIN32"): + if conf.check_declaration("_WIN32", mandatory=False): conf.env.USE_WINCRYPT = True conf.env.NEEDS_MINGW32_WORKAROUND = False -- cgit v1.2.1