LINUX下载编译libtheora

  • 下载

http://www.linuxfromscratch.org/blfs/view/svn/multimedia/libtheora.html
https://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.xz

  • 解压
tar xf libtheora-1.1.1.tar.xz
cd libtheora-1.1.1
  • 编译
BUILD_LIBS=${HOME}/build_libs

export PATH=${BUILD_LIBS}/bin:${PATH}
export PKG_CONFIG_PATH=${BUILD_LIBS}/lib/pkgconfig:${PKG_CONFIG_PATH}

# sed -i 's/png_\(sizeof\)/\1/g' examples/png2theora.c
./autogen.sh
autoreconf -fiv

./configure \
    --prefix=${BUILD_LIBS} \
    CFLAGS="-I${BUILD_LIBS}/include" \
    LDFLAGS="-L${BUILD_LIBS}/lib"

make

make install
发布了2445 篇原创文章 · 获赞 299 · 访问量 173万+

猜你喜欢

转载自blog.csdn.net/quantum7/article/details/104135650