We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d14d934 commit 81e349eCopy full SHA for 81e349e
Formula/z/zssh.rb
@@ -33,14 +33,17 @@ class Zssh < Formula
33
depends_on "lrzsz"
34
35
on_linux do
36
- depends_on "pkg-config" => :build
37
depends_on "readline"
38
end
39
40
def install
41
- system "autoreconf", "-fvi"
42
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
43
- "--prefix=#{prefix}"
+ # Workaround for Xcode 15
+ ENV.append_to_cflags "-Wno-incompatible-function-pointer-types" if DevelopmentTools.clang_build_version >= 1500
+
+ rm_r "lrzsz-0.12.20"
44
45
+ system "autoreconf", "--force", "--install", "--verbose"
46
+ system "./configure", *std_configure_args
47
system "make"
48
49
bin.install "zssh", "ztelnet"
0 commit comments