From f5f23194627cb94c627e2b652eb589bece4b9936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Fri, 5 Jun 2015 11:25:47 +0200 Subject: [PATCH] Update README.macosx about libvpx * Remove libvpx from packages installed with MacPort * Add a procedure to build libvpx --- README.macos.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/README.macos.md b/README.macos.md index 89e3b3525..b223514a5 100644 --- a/README.macos.md +++ b/README.macos.md @@ -24,7 +24,7 @@ In order to enable generation of bundle for older MacOS version, it is recommend ##### Linphone library (liblinphone) sudo port install automake autoconf libtool pkgconfig intltool wget cunit \ - antlr3 speex libvpx readline sqlite3 openldap libupnp \ + antlr3 speex readline sqlite3 openldap libupnp \ ffmpeg-devel -gpl2 ##### Linphone UI (GTK version) @@ -77,6 +77,26 @@ The next pieces need to be compiled manually. ./autogen.sh && ./configure --prefix=/opt/local && make sudo make install +* Install libvpx (Must be manualy build because the macport recipe does not support 'macosx_deployment_target') + + git clone https://chromium.googlesource.com/webm/libvpx -b v1.3.0 + cd libvpx + ./configure --prefix=/opt/local \ + --enable-error-concealment \ + --enable-multithread \ + --enable-realtime-only \ + --enable-spatial-resampling \ + --enable-vp8 \ + --disable-vp9 \ + --enable-libs \ + --disable-install-docs \ + --disable-debug-libs \ + --disable-examples \ + --disable-unit-tests \ + --as=yasm + make + sudo make install + * Install belle-sip (sip stack) git clone git://git.linphone.org/belle-sip.git