blob: d55735420ad983d5ec1c2ae946a1c567559e833e (
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
37
38
39
40
|
require 'formula'
class CenterIm < Formula
homepage 'http://www.centerim.org/index.php/Main_Page'
url 'http://www.centerim.org/download/releases/centerim-4.22.10.tar.gz'
sha1 '46fbac7a55f33b0d4f42568cca21ed83770650e5'
depends_on 'pkg-config' => :build
depends_on 'gettext'
depends_on 'jpeg' => :optional
# Fix build with clang; 4.22.10 is an outdated release and 5.0 is a rewrite,
# so this is not reported upstream
patch :DATA
patch :p0 do
url "https://trac.macports.org/export/113135/trunk/dports/net/centerim/files/patch-libjabber_jconn.c.diff"
sha1 "70bf1cb777e086fb773d99aadbcaa8db77b19bec"
end
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-msn"
system "make install"
end
end
__END__
diff --git a/libicq2000/libicq2000/sigslot.h b/libicq2000/libicq2000/sigslot.h
index b7509c0..024774f 100644
--- a/libicq2000/libicq2000/sigslot.h
+++ b/libicq2000/libicq2000/sigslot.h
@@ -82,6 +82,7 @@
#ifndef SIGSLOT_H__
#define SIGSLOT_H__
+#include <cstdlib>
#include <set>
#include <list>
|