From e9425ba17b7403f7c72fc1d880782f5f056b9d45 Mon Sep 17 00:00:00 2001 From: David Helkowski Date: Thu, 22 Jan 2026 14:27:45 +0900 Subject: [PATCH] Update libgpod formula to use autoreconf for configuration instead of autogen.sh for improved compatibility with modern autotools. --- Formula/libgpod.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Formula/libgpod.rb b/Formula/libgpod.rb index 22f9cdae5..0ebd575a4 100644 --- a/Formula/libgpod.rb +++ b/Formula/libgpod.rb @@ -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",