mirror of https://github.com/mpv-player/mpv
Improve MPlayerOSX building process:
- explain what MACOSX_DEPLOYMENT_TARGET is good for - remove --with-termcaplib=.. from configure switches: it doesn't exist anymore, and builds seem to work OK without any particular switch git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22499 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
e14f7a3e78
commit
c176f1169f
|
@ -858,7 +858,8 @@ You first need to build main and main_noaltivec.
|
|||
</para>
|
||||
|
||||
<para>
|
||||
Next, set a global variable:
|
||||
To begin with, in order to ensure maximum backwards compatibility, set an
|
||||
environment variable:
|
||||
<screen>export MACOSX_DEPLOYMENT_TARGET=10.3</screen>
|
||||
</para>
|
||||
|
||||
|
@ -869,12 +870,11 @@ Then, configure:
|
|||
<para>
|
||||
If you configure for a G4 or later CPU with AltiVec support, do as follows:
|
||||
<screen>
|
||||
./configure --with-termcaplib=ncurses.5 --disable-gl --disable-x11
|
||||
./configure --disable-gl --disable-x11
|
||||
</screen>
|
||||
If you configure for a G3-powered machine without AltiVec, use:
|
||||
<screen>
|
||||
./configure --with-termcaplib=ncurses.5 --disable-gl --disable-x11 \
|
||||
--disable-altivec
|
||||
./configure --disable-gl --disable-x11 --disable-altivec
|
||||
</screen>
|
||||
You may need to edit <filename>config.mak</filename> and change
|
||||
<systemitem>-mcpu</systemitem> and <systemitem>-mtune</systemitem>
|
||||
|
|
Loading…
Reference in New Issue