Russ wrote: > if test x"$enableval" != xno ; then > AC_DEFINE([MEM_DEBUG], 1, [Define to 1 to enable memory debugging]) > fi
I do that using a case statement, as it's often faster (test is not always a shell builtin). H
Russ wrote: > if test x"$enableval" != xno ; then > AC_DEFINE([MEM_DEBUG], 1, [Define to 1 to enable memory debugging]) > fi
I do that using a case statement, as it's often faster (test is not always a shell builtin). H