0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-29 18:22:50 +01: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_SUBST(ASSERT, 1)
], [ ], [
AC_MSG_RESULT([no]) 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, AM_COND_IF(DEBUG,
[ [
AC_MSG_RESULT([no]) AC_MSG_RESULT([no])
AC_SUBST(OPTIMIZE, 0)
], [ ], [
AC_MSG_RESULT([no, but optimized build is enabled anyway]) AC_MSG_RESULT([no, but optimized build is enabled anyway])
AC_SUBST(OPTIMIZE, 1) AC_SUBST(OPTIMIZE, 1)