]> sjero.net Git - linphone/blob - README.macos
fix zip generation on macos
[linphone] / README.macos
1 **********************************
2 * Compiling linphone on macos X  *
3 **********************************
4
5
6 You have two options: using gtk-osx framework (http://gtk-osx.sourceforge.net/) which results in a Linphone GTK well integrated into Mac OS
7 environment. The other option is using MacPort, in which case Linphone will run as an X11 application inside Mac OS.
8
9 At the date of March 25, 2011, no video support is available yet.
10
11
12 Compiling using gtk-osx
13 =======================
14
15 Requirements:
16 * gtk-osx framework
17 * xcode (for gcc)
18 * macport (to retrieve dependencies easily, such as libosip2, libeXosip2, libspeex
19 * linphone git tree
20
21 Steps:
22
23 - Install gtk-osx jhbuild environment as described at
24 http://sourceforge.net/apps/trac/gtk-osx/wiki/Build
25 It will build gtk for osx as well as many dependencies.
26
27 - Install ige-mac-bundler following instructions here (git clone method is preferred):
28 http://sourceforge.net/apps/trac/gtk-osx/wiki/Bundle
29
30 - Install some linphone dependencies with macports
31  $ port install speex-dev
32  $ port install osip2
33  $ port install eXosip2
34
35 - Now you can compile linphone
36
37 $ jhbuild shell
38 $ PKG_CONFIG_PATH=$HOME/gtk/inst/lib/pkgconfig:/opt/local/lib/pkgconfig/ ./configure --disable-video --disable-strict --with-gsm=/opt/local
39 #assuming you have gsm installed in /opt/local. However gsm is optional.
40 $ make
41
42 - You can generate a bundle using
43 $ make bundle
44
45 The bundle is generated in ~/Desktop/Linphone and can safely be exported to other places and computers.
46
47
48 Compiling using MacPort
49 =======================
50
51 This procedure works for audio, video still not fully supported.
52 It was tested on macos X (leopard) on september 2009.
53
54 Requirements:
55 * xcode (for gcc)
56 * macport (GNU porting project)
57 * svn or git checkout'd linphone tree.
58
59 Steps:
60 * install with the 'port install' command the following dependencies
61         - automake
62         - autoconf
63         - libtool
64         - gettext
65         - intltool
66         - gtk2
67         - speex-dev
68         - osip2
69         - eXosip2
70         
71 * add /opt/local/bin to your PATH by editing (or creating) ~/.profile, logout and login again for changes to take effect
72
73 * within linphone source directory, run ./autogen.sh
74 * run 
75         ./configure --prefix=/opt/local --disable-video --with-readline=none && make
76         (note: we disable readline for linphonec because it appears to hang at this time)
77 * install to /opt/local
78         sudo make install 
79
80
81
82
83