From 09f8d2b40e1b9ad99a3adc5ef598d2d14cb8e8a6 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 13 Feb 2026 14:08:43 -0800 Subject: Add --disable-shared to --static ./configure option. To be consistent with --enable-shared alternative to --shared option. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 6d32659a..3a8adf0e 100755 --- a/configure +++ b/configure @@ -140,7 +140,7 @@ case "$1" in -m* | --mandir) mandir="$2"; shift; shift ;; -u* | --uname) uname="$2"; shift; shift ;; -s* | --shared | --enable-shared) shared=1; shift ;; - -t | --static) shared=0; shift ;; + -t | --static | --disable-shared) shared=0; shift ;; --solo) solo=1; shift ;; --cover) cover=1; shift ;; -z* | --zprefix) zprefix=1; shift ;; -- cgit v1.2.3-55-g6feb