0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-01 01:28:54 +02:00

configure.ac: Remove defines of values when zero.

This commit is contained in:
Jason Volk 2018-05-22 16:37:15 -07:00
parent eda5822700
commit 02fde9e09f

View file

@ -173,7 +173,6 @@ AC_ARG_ENABLE(assert, AC_HELP_STRING([--enable-assert], [Enable assertions witho
AC_SUBST(ASSERT, 1)
], [
AC_MSG_RESULT([no])
AC_SUBST(ASSERT, 0)
])
])
@ -198,7 +197,6 @@ AC_ARG_ENABLE(optimize, AC_HELP_STRING([--enable-optimize], [Enable optimization
AM_COND_IF(DEBUG,
[
AC_MSG_RESULT([no])
AC_SUBST(OPTIMIZE, 0)
], [
AC_MSG_RESULT([no, but optimized build is enabled anyway])
AC_SUBST(OPTIMIZE, 1)