天天看點

LINUX下載下傳編譯fontconfig

https://www.freedesktop.org/software/fontconfig/release/

翻到最後,下載下傳最新的。

  • 解壓
tar xf fontconfig-2.13.92.tar.xz
cd fontconfig-2.13.92      
  • 編譯
BUILD_LIBS=${HOME}/build_libs
 
export PATH=${BUILD_LIBS}/bin:${PATH}
export PKG_CONFIG_PATH=${BUILD_LIBS}/lib/pkgconfig
 
if [ -f autogen.sh ]; then
    ./autogen.sh
fi
 
./configure \
    --prefix=${BUILD_LIBS} \
    CFLAGS="-I${BUILD_LIBS}/include -I${BUILD_LIBS}/include/freetype2" \
    LDFLAGS="-L${BUILD_LIBS}/lib" \
    --enable-shared --enable-libxml2
 
make
 
make install      

繼續閱讀