blob: 9590d379ae9475339a5f5b38bead3e24053d0c98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  | 
require 'formula'
class TinyFugue < Formula
  url 'http://downloads.sourceforge.net/project/tinyfugue/tinyfugue/5.0%20beta%208/tf-50b8.tar.gz'
  homepage 'http://tinyfugue.sourceforge.net/'
  sha1 '37bb70bfb7b44d36c28606c6bd45e435502fb4b4'
  version '5.0b8'
  depends_on 'libnet'
  def patches
    DATA
  end
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--enable-getaddrinfo", "--enable-termcap=ncurses",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
__END__
diff --git a/src/malloc.c b/src/malloc.c
index 03ca393..7282f02 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -7,6 +7,7 @@
  ************************************************************************/
 static const char RCSid[] = "$Id: malloc.c,v 35004.22 2007/01/13 23:12:39 kkeys Exp $";
 
+#include "sys/types.h"
 #include "tfconfig.h"
 #include "port.h"
 #include "signals.h"
  |