From eeec0a05efc85775a3da018f9b299b34eadfee6d Mon Sep 17 00:00:00 2001 From: Alexander Shevchenko Date: Thu, 20 Jul 2017 09:15:18 +0300 Subject: [PATCH] Fix Python-related redefinitions for builds using mingw-w64 --- build/Jamfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/Jamfile b/build/Jamfile index 754df6948d..71b2a98575 100644 --- a/build/Jamfile +++ b/build/Jamfile @@ -36,6 +36,8 @@ py3-version = [ py-version 3 ] ; project boost/python : source-location ../src + : requirements gcc windows:-D_hypot=hypot + : requirements gcc windows shared:-DMS_WIN64 ; rule cond ( test ? : yes * : no * ) { if $(test) { return $(yes) ; } else { return $(no) ; } }