Make use of configure --enable-maintainer-mode

Currently it adds `-O0` to `CFLAGS`.
This commit is contained in:
Gergely Polonkai 2017-12-01 15:17:18 +01:00
parent 8e6044407b
commit a2654af5f6

View File

@ -133,7 +133,14 @@ if test x"$debug" = x"$enableval"; then
if test x"$cflags_set" != x"set"; then if test x"$cflags_set" != x"set"; then
case " $CFLAGS " in case " $CFLAGS " in
*[[\ \ ]]-g[[\ \ ]]*) ;; *[[\ \ ]]-g[[\ \ ]]*) ;;
*) CFLAGS="$CFLAGS -g" ;; *)
CFLAGS="$CFLAGS -g"
if test x"$USE_MAINTAINER_MODE" = x"$enableval"; then
CFLAGS="$CFLAGS -O0"
fi
;;
esac esac
fi fi
else else