]> sjero.net Git - linphone/blob - README.macos
Merge branch 'master' into dev_sal
[linphone] / README.macos
1 Compiling linphone on macos X
2
3 This procedure works for audio, video still not fully supported.
4 It was tested on macos X (leopard) on september 2009.
5
6 Requirements:
7 * xcode (for gcc)
8 * macport (GNU porting project)
9 * svn or git checkout'd linphone tree.
10
11 Steps:
12 * install with the 'port install' command the following dependencies
13         - automake
14         - autoconf
15         - libtool
16         - gettext
17         - intltool
18         - gtk2
19         - libglade2
20         - speex-dev
21         - osip2
22         - eXosip2
23         
24 * add /opt/local/bin to your PATH by editing (or creating) ~/.profile, logout and login again for changes to take effect
25
26 * within linphone source directory, run ./autogen.sh
27 * run 
28         ./configure --prefix=/opt/local --disable-video --with-readline=none && make
29         (note: we disable readline for linphonec because it appears to hang at this time)
30 * install to /opt/local
31         sudo make install 
32
33
34