diff options
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 015c4f44..3be97790 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -231,6 +231,9 @@ if test X${with_runtime} = XRelease; then elif test X${with_runtime} = XDebug; then AC_MSG_RESULT([Debug]) AC_SUBST(RUNTIME_ENABLE_OPTIMIZED,[[0]]) +elif test X${with_runtime} = XDebug+Asserts; then + AC_MSG_RESULT([Debug+Asserts]) + AC_SUBST(RUNTIME_ENABLE_OPTIMIZED,[[0]]) else AC_MSG_ERROR([invalid configuration: ${with_runtime}]) fi |