ports

morpheus ports
git clone git://git.2f30.org/ports
Log | Files | Refs | LICENSE

commit e68a0383282da7ac840c3b6ee35be9f7327ab43e
parent a3c320e48724991e0fa53408d48443379feef55d
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sat,  7 Jun 2014 16:54:17 +0200

freetype: explicitly configure features

Signed-off-by: Hiltjo Posthuma <hiltjo@codemadness.org>

Diffstat:
Mfreetype/freetype.mk | 14+++++++++++---
1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/freetype/freetype.mk b/freetype/freetype.mk @@ -18,10 +18,18 @@ freetype:QV: --disable-shared \ --disable-nls \ --enable-static \ - --with-zlib \ - --with-png + --with-fsspec=no \ + --with-fsref=no \ + --with-bzip2=no \ + --with-ats=no \ + --with-quickdraw-toolbo=no \ + --with-quickdraw-carbon=no \ + --with-old-mac-fonts=no \ + --with-harfbuzz=no \ + --with-zlib=yes \ + --with-png=yes make -j$nprocs CCexe="${HOSTCC}" # DESTDIR="`pwd`/lib" - make -j$nprocs CCexe="${HOSTCC}" install DESTDIR="`pwd`/lib" + make -j$nprocs install CCexe="${HOSTCC}" DESTDIR="`pwd`/lib" # make symlink for includes, some packages depend on this (fontconfig). mkdir -p "`pwd`/lib/include/freetype2/config" ln -sf freetype2 "`pwd`/lib/include/freetype"