class Splint < Formula desc "Secure Programming Lint" homepage "https://sourceforge.net/projects/splint/" url "https://mirrorservice.org/sites/distfiles.macports.org/splint/splint-3.1.2.src.tgz" mirror "https://src.fedoraproject.org/repo/pkgs/splint/splint-3.1.2.src.tgz/25f47d70bd9c8bdddf6b03de5949c4fd/splint-3.1.2.src.tgz" sha256 "c78db643df663313e3fa9d565118391825dd937617819c6efc7966cdf444fb0a" bottle do cellar :any_skip_relocation rebuild 1 sha256 "98cc2bfccef60b21ec014ff35e71cc91a85e77435b4e429090e2767d0696bef8" => :catalina sha256 "abe5a5d75a01fa272839dbc219a5fde2c76c7c7593e7dd365c152e4cb02a2c59" => :mojave sha256 "b95c7e4981cb11c23b686dbb01dcc01c1317909371b5d21ba0aa155e47569eec" => :high_sierra end # fix compiling error of osd.c patch :DATA def install ENV.deparallelize # build is not parallel-safe system "./configure", "--disable-debug", "--prefix=#{prefix}", "--infodir=#{info}", "--mandir=#{man}" system "make" system "make", "install" end test do path = testpath/"test.c" path.write <<~EOS #include int main() { char c; printf("%c", c); return 0; } EOS output = shell_output("#{bin}/splint #{path} 2>&1", 1) assert_match /5:18:\s+Variable c used before definition/, output end end __END__ diff --git a/src/osd.c b/src/osd.c index ebe214a..4ba81d5 100644 --- a/src/osd.c +++ b/src/osd.c @@ -516,7 +516,7 @@ osd_getPid () # if defined (WIN32) || defined (OS2) && defined (__IBMC__) int pid = _getpid (); # else - __pid_t pid = getpid (); + pid_t pid = getpid (); # endif return (int) pid;