我正在尝试使用自制软件安装带有OSD的mplayer。我已将--enable-menu
和--with-freetype-config=/usr/local/Cellar/freetype/2.4.10/freetype-config
添加到brew配方中。
==> Downloading http://www.mplayerhq.hu/MPlayer/releases/MPlayer-1.1.tar.xz
Already downloaded: /Library/Caches/Homebrew/mplayer-1.1.tar.xz
xz -dc "/Library/Caches/Homebrew/mplayer-1.1.tar.xz" | /usr/bin/tar xf -
==> ./configure --prefix=/usr/local/Cellar/mplayer/1.1 --cc=cc --host-cc=cc --disable-cdparanoia --disable-libopenjpeg --enable-menu --disable-x11 -- with-freetype-config=/usr/local/Cellar/freetype/2.4.10/freetype-config
./configure --prefix=/usr/local/Cellar/mplayer/1.1 --cc=cc --host-cc=cc --disable-cdparanoia --disable-libopenjpeg --enable-menu --disable-x11 --with -freetype-config=/usr/local/Cellar/freetype/2.4.10/freetype-config
Checking for cc version ... clang 4.2.1 (experimental support only)
Checking for working compiler ... yes
Detected operating system: Darwin
Detected host architecture: x86_64
Checking for cross compilation ... no
Checking for host cc ... cc
Checking for CPU vendor ... GenuineIntel (6:15:10)
Checking for CPU type ... Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz
对于freetype-config
我尝试了三条独立的路径; /usr/X11R6/bin/freetype-config
,/usr/X11/bin/freetype-config
和地窖中的Checking for freetype >= 2.0.9 ... no
Checking for fontconfig ... no (FreeType support needed)
。
检查freetype总是失败:
mufasa:bin eythor$ freetype-config --version
15.0.9
mufasa:bin eythor$ freetype-config --ftversion
2.4.10
mufasa:bin eythor$ freetype-config --libs
-L/usr/local/Cellar/freetype/2.4.10/lib -lfreetype -lz -lbz2
mufasa:bin eythor$ freetype-config --cflags
-I/usr/local/Cellar/freetype/2.4.10/include/freetype2 - I/usr/local/Cellar/freetype/2.4.10/include
虽然似乎安装了freetype本身。
{{1}}
我注意到fontconfig依赖于freetype所以我通过brew成功安装了它。我不确定下一步该尝试什么,或者如何弄清楚为什么不能识别freetype。
有人能指出我明智的方向吗?