From fc130cdd9fcb0ea4decaf003be6ddf4c5dfd5760 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Sun, 30 Oct 2016 09:33:25 -0700 Subject: [PATCH] Add --debug (-d) option to ./configure to define ZLIB_DEBUG. --- configure | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configure b/configure index 4fc7e48..9f2e82e 100755 --- a/configure +++ b/configure @@ -86,6 +86,7 @@ zconst=0 build64=0 gcc=0 warn=0 +debug=0 old_cc="$CC" old_cflags="$CFLAGS" OBJC='$(OBJZ) $(OBJG)' @@ -135,6 +136,7 @@ case "$1" in --localstatedir=*) echo "ignored option: --localstatedir" | tee -a configure.log; shift ;; -c* | --const) zconst=1; shift ;; -w* | --warn) warn=1; shift ;; + -d* | --debug) debug=1; shift ;; *) echo "unknown option: $1" | tee -a configure.log echo "$0 --help for help" | tee -a configure.log @@ -193,6 +195,10 @@ if test "$gcc" -eq 1 && ($cc -c $test.c) >> configure.log 2>&1; then CFLAGS="${CFLAGS} -Wall -Wextra -pedantic" fi fi + if test $debug -eq 1; then + CFLAGS="${CFLAGS} -DZLIB_DEBUG" + SFLAGS="${SFLAGS} -DZLIB_DEBUG" + fi if test -z "$uname"; then uname=`(uname -s || echo unknown) 2>/dev/null` fi -- GitLab