Message ID | 1414702035-3549-5-git-send-email-anders.roxell@linaro.org |
---|---|
State | Accepted |
Commit | eaa8c2114c3965cfc17b6fe8ddb4db50877c6424 |
Headers | show |
On 30 October 2014 16:47, Anders Roxell <anders.roxell@linaro.org> wrote: > Signed-off-by: Anders Roxell <anders.roxell@linaro.org> > Reviewed-and-Tested-by:Mike Holmes <mike.holmes@linaro.org> --- > configure.ac | 11 +++++++++++ > 1 file changed, 11 insertions(+) > > diff --git a/configure.ac b/configure.ac > index 42a3fed..1c061e9 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -99,6 +99,17 @@ AC_ARG_ENABLE([debug-print], > ODP_CFLAGS="$ODP_CFLAGS -DODP_DEBUG_PRINT=$ODP_DEBUG_PRINT" > > ########################################################################## > +# Enable/disable ODP_DEBUG > +########################################################################## > +ODP_DEBUG=1 > +AC_ARG_ENABLE([debug], > + [ --enable-debug Enable/disable debug], > + [if ! test "x$enableval" = "xyes"; then > + ODP_DEBUG=0 > + fi]) > +ODP_CFLAGS="$ODP_CFLAGS -DODP_DEBUG=$ODP_DEBUG" > + > +########################################################################## > # Check for pthreads availability > ########################################################################## > > -- > 2.1.0 > > > _______________________________________________ > lng-odp mailing list > lng-odp@lists.linaro.org > http://lists.linaro.org/mailman/listinfo/lng-odp >
diff --git a/configure.ac b/configure.ac index 42a3fed..1c061e9 100644 --- a/configure.ac +++ b/configure.ac @@ -99,6 +99,17 @@ AC_ARG_ENABLE([debug-print], ODP_CFLAGS="$ODP_CFLAGS -DODP_DEBUG_PRINT=$ODP_DEBUG_PRINT" ########################################################################## +# Enable/disable ODP_DEBUG +########################################################################## +ODP_DEBUG=1 +AC_ARG_ENABLE([debug], + [ --enable-debug Enable/disable debug], + [if ! test "x$enableval" = "xyes"; then + ODP_DEBUG=0 + fi]) +ODP_CFLAGS="$ODP_CFLAGS -DODP_DEBUG=$ODP_DEBUG" + +########################################################################## # Check for pthreads availability ##########################################################################
Signed-off-by: Anders Roxell <anders.roxell@linaro.org> --- configure.ac | 11 +++++++++++ 1 file changed, 11 insertions(+)