Changes between Version 11 and Version 12 of CentosCompilationGuide


Ignore:
Timestamp:
07/29/2012 11:42:11 PM (10 months ago)
Author:
dimircea
Comment:

Added zlib to the installation details. Required for different compressed files, like PNG images.

Legend:

Unmodified
Added
Removed
Modified
  • CentosCompilationGuide

    v11 v12  
    118118}}} 
    119119 
     120=== zlib===#zlib 
     121ZLIB is required to be able to decode different formats, like PNG images. 
     122{{{ 
     123cd ~/ffmpeg-source 
     124wget http://zlib.net/zlib-1.2.7.tar.gz 
     125tar xzvf zlib-1.2.7.tar.gz 
     126cd zlib-1.2.7 
     127./configure 
     128make 
     129# make install 
     130}}} 
     131 
    120132=== FFmpeg ===#ffmpeg 
    121133{{{ 
     
    123135git clone git://source.ffmpeg.org/ffmpeg 
    124136cd ffmpeg 
    125 ./configure --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-version3 
     137./configure --enable-gpl --enable-libmp3lame --enable-libtheora --enable-libvo-aacenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-zlib --enable-version3 
    126138make 
    127139# make install