From df259c237f8e28277f137d69c28ffb421c2dd7c2 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 28 Dec 2018 15:47:49 -0800 Subject: [PATCH] configure: Build boost in release mode for our debug builds. --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 04ade4ce2..aa411db03 100644 --- a/configure.ac +++ b/configure.ac @@ -1099,7 +1099,8 @@ AC_HELP_STRING([--with-included-boost[[[=shared]]]], [Use the boost sources from AM_COND_IF([DEBUG], [ - boost_variant="debug" + dnl boost_variant="debug" + boost_variant="release" ], [ boost_variant="release" ])