aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Adler <git@madler.net>2026-02-13 14:08:43 -0800
committerMark Adler <git@madler.net>2026-02-13 14:10:20 -0800
commit09f8d2b40e1b9ad99a3adc5ef598d2d14cb8e8a6 (patch)
tree4a099ba9fcbb3658ee9c31bb0c7212c99e00721a
parentaa82531bc524474d69092953ad08f05b53078390 (diff)
downloadzlib-09f8d2b40e1b9ad99a3adc5ef598d2d14cb8e8a6.tar.gz
zlib-09f8d2b40e1b9ad99a3adc5ef598d2d14cb8e8a6.tar.bz2
zlib-09f8d2b40e1b9ad99a3adc5ef598d2d14cb8e8a6.zip
Add --disable-shared to --static ./configure option.
To be consistent with --enable-shared alternative to --shared option.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6d32659a..3a8adf0e 100755
--- a/configure
+++ b/configure
@@ -140,7 +140,7 @@ case "$1" in
140 -m* | --mandir) mandir="$2"; shift; shift ;; 140 -m* | --mandir) mandir="$2"; shift; shift ;;
141 -u* | --uname) uname="$2"; shift; shift ;; 141 -u* | --uname) uname="$2"; shift; shift ;;
142 -s* | --shared | --enable-shared) shared=1; shift ;; 142 -s* | --shared | --enable-shared) shared=1; shift ;;
143 -t | --static) shared=0; shift ;; 143 -t | --static | --disable-shared) shared=0; shift ;;
144 --solo) solo=1; shift ;; 144 --solo) solo=1; shift ;;
145 --cover) cover=1; shift ;; 145 --cover) cover=1; shift ;;
146 -z* | --zprefix) zprefix=1; shift ;; 146 -z* | --zprefix) zprefix=1; shift ;;