Update libgpod formula to use autoreconf for configuration instead of autogen.sh for improved compatibility with modern autotools.

This commit is contained in:
2026-01-22 14:27:45 +09:00
parent 32d663e58f
commit e9425ba17b

View File

@@ -17,8 +17,10 @@ class Libgpod < Formula
depends_on "sqlite"
def install
ENV["NOCONFIGURE"] = "1"
system "./autogen.sh"
# Upstream's autogen.sh is very old and may hardcode ancient automake checks
# (e.g. looking for automake-1.7). Using autoreconf is the standard Homebrew
# way and works with modern autotools.
system "autoreconf", "-fiv"
system "./configure", *std_configure_args,
"--disable-dependency-tracking",