mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
fix internationalization problem on mac os.
add a README for macos compilation. git-svn-id: svn+ssh://svn.savannah.nongnu.org/linphone/trunk@616 3f6dc0c8-ddfe-455d-9043-3cd528dc4637
This commit is contained in:
parent
6b23aeb56f
commit
0460d00603
3 changed files with 31 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
## Process this file with automake to produce Makefile.in
|
||||
|
||||
# let make re-run automake upon need
|
||||
ACLOCAL_AMFLAGS = -I m4
|
||||
ACLOCAL_AMFLAGS = -I m4 -I/opt/local/share/aclocal
|
||||
|
||||
if EXTERNAL_ORTP
|
||||
ORTP_DIR =
|
||||
|
|
|
|||
29
linphone/README.macos
Normal file
29
linphone/README.macos
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
Compiling linphone on macos X
|
||||
|
||||
This procedure works for audio, video still not fully supported.
|
||||
It was tested on macos X (leopard) on september 2009.
|
||||
|
||||
Requirements:
|
||||
* xcode (for gcc)
|
||||
* the 'port' command to install various dependencies
|
||||
* svn or git checkout'd linphone tree.
|
||||
|
||||
Steps:
|
||||
* install with the 'port install' command the following dependencies
|
||||
- automake
|
||||
- autoconf
|
||||
- libtool
|
||||
- intltool
|
||||
- gtk2
|
||||
- speex-dev
|
||||
* add /opt/local/bin to your PATH by editing (or creating) ~/.profile, logout and login again for changes to take effect
|
||||
|
||||
* within linphone source directory, run ./autogen.sh
|
||||
* run
|
||||
./configure --prefix=/opt/local --disable-video --with-readline=none && make
|
||||
(note: we disable readline for linphonec because it appears to hang at this time)
|
||||
* install to /opt/local
|
||||
sudo make install
|
||||
|
||||
|
||||
|
||||
|
|
@ -74,6 +74,7 @@ AC_DEFINE_UNQUOTED(LINPHONE_ALL_LANGS, "$ALL_LINGUAS", [All supported languages]
|
|||
if test "$mingw_found" != "yes" ; then
|
||||
dnl gettext macro does not work properly under mingw.
|
||||
AM_GNU_GETTEXT([external])
|
||||
LIBS="$LIBS $LIBINTL"
|
||||
else
|
||||
AC_DEFINE(ENABLE_NLS,1,[Tells whether localisation is possible])
|
||||
AC_DEFINE(HAVE_GETTEXT,1,[Tells wheter localisation is possible])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue