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 55fcb3cbf7
commit cfa4ec43d9
1 changed files with 8 additions and 1 deletions

View File

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