From c3b4284ee079539892e510f7ccd1768c793e9b5f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 13 Jul 2017 22:49:03 +0300 Subject: Add mse libs for replacing std::vector. Also add configure flag --enable-stldebug For now unused. --- configure.ac | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 6ee8ce327..8da4ee8d0 100755 --- a/configure.ac +++ b/configure.ac @@ -92,6 +92,19 @@ esac],[glibcdebug_enabled=false]) AM_CONDITIONAL(ENABLE_GLIBCDEBUG, test x$glibcdebug_enabled = xtrue) +# Enable mse classes replacements for stl +AC_ARG_ENABLE(stldebug, +[ --enable-stldebug Enable mse libs], +[case "${enableval}" in + yes) stldebug_enabled=true + ;; + no) stldebug_enabled=false + ;; + *) AC_MSG_ERROR(bad value ${enableval} for --enable-stldebug) ;; +esac],[stldebug_enabled=false]) + +AM_CONDITIONAL(ENABLE_STLDEBUG, test x$stldebug_enabled = xtrue) + # Enable OpenGL error reporting AC_ARG_ENABLE(openglerrors, [ --enable-openglerrors Enable OpenGL errors reporting], -- cgit v1.2.3-70-g09d2