From cee8b112b483fbf00a3d9ab2ba861f40775a01e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konrad=20Gr=C3=A4fe?= Date: Tue, 13 Aug 2019 14:14:51 +0200 Subject: [PATCH] pidgin: fix build on High Sierra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On macOS High Sierra ./configure does not detect the perl_run() function and therefore errors out. This skips the problematic test. Compilation still works. Perl plugin support has been verified to work with the Perl Test Plugin from https://docs.pidgin.im/pidgin/2.x.y/perl-howto.html Signed-off-by: Konrad Gräfe Closes #43067. Signed-off-by: Chongyu Zhu --- Formula/pidgin.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Formula/pidgin.rb b/Formula/pidgin.rb index 5094e15e6b..307015a479 100644 --- a/Formula/pidgin.rb +++ b/Formula/pidgin.rb @@ -49,6 +49,8 @@ class Pidgin < Formula --without-x ] + ENV["ac_cv_func_perl_run"] = "yes" if MacOS.version == :high_sierra + system "./configure", *args system "make", "install"