]> sjero.net Git - linphone/blob - README.macos
macos x build procedure improved - fix quit procedure (unsaved settings)
[linphone] / README.macos
1 **********************************
2 * Compiling linphone on macos X  *
3 **********************************
4
5 You need:
6  - Xcode (download from apple or using appstore application)
7  - Macports: http://www.macports.org/
8    Download and install macports using its user friendly installer.
9
10 - Install build time dependencies
11  $ port install automake autoconf libtool intltool
12
13 - Install some linphone dependencies with macports
14  $ port install speex-dev
15  $ port install osip2
16  $ port install eXosip2
17  $ port install ffmpeg-devel
18  $ port install sdl-devel
19
20 - Install gtk. It is recommended to use the quartz backend for better integration.
21  $ port install gtk2 +no_x11
22  $ port install ige-mac-integration
23
24 - Compile linphone
25
26 If you got the source code from git, run ./autogen.sh first.
27
28 Then or otherwise, do:
29         
30  $ ./configure --prefix=/opt/local --with-readline=/opt/local --disable-strict --disable-x11 && make
31
32 Install to /opt/local
33
34  $ sudo make install 
35
36 Done.
37
38
39
40