Difference between revisions of "FAAD2"

From CBLFS
Jump to navigationJump to search
Line 2: Line 2:
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| http://prdownloads.sourceforge.net/faac/faad2-2.5.tar.gz
 
 
| http://prdownloads.sourceforge.net/faac/faad2-2.0.tar.gz
 
| http://prdownloads.sourceforge.net/faac/faad2-2.0.tar.gz
 
|}
 
|}
Line 9: Line 8:
  
 
== Dependencies ==
 
== Dependencies ==
 
=== Required ===
 
  
 
=== Optional ===
 
=== Optional ===
 
* [[XMMS]]
 
* [[XMMS]]
* [[BMP]]
 
 
* [[MPEG4IP]]
 
* [[MPEG4IP]]
 
== Configuring ==
 
 
To generate the autoconf and automake files run the following commands:
 
 
aclocal -I . && autoheader &&
 
libtoolize --automake --copy &&
 
automake --add-missing --copy &&
 
autoconf
 
  
 
== Non-Multilib ==
 
== Non-Multilib ==
Line 30: Line 17:
 
Compile the package:
 
Compile the package:
  
  ./configure --prefix=/usr &&
+
autoconf -vif &&
 +
  ./configure --prefix=/usr --with-mp4v2 &&
 
  make
 
  make
  
Line 43: Line 31:
 
Compile the package:
 
Compile the package:
  
 +
autoconf -vif &&
 
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
 
  CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
  ./configure --prefix=/usr &&
+
  ./configure --prefix=/usr --with-mp4v2 &&
 
  make
 
  make
  
Line 55: Line 44:
 
Compile the package:
 
Compile the package:
  
 +
autoconf -vif &&
 
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
 
  CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
  ./configure --prefix=/usr --libdir=/usr/lib32 &&
+
  ./configure --prefix=/usr --libdir=/usr/lib32 --with-mp4v2 &&
 
  make
 
  make
  
Line 67: Line 57:
 
Compile the package:
 
Compile the package:
  
 +
autoconf -vif &&
 
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
 
  CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
  ./configure --prefix=/usr --libdir=/usr/lib64 &&
+
  ./configure --prefix=/usr --libdir=/usr/lib64 --with-mp4v2 &&
 
  make
 
  make
  

Revision as of 13:11, 10 October 2006

Download Source: http://prdownloads.sourceforge.net/faac/faad2-2.0.tar.gz

Dependencies

Optional

Non-Multilib

Compile the package:

autoconf -vif &&
./configure --prefix=/usr --with-mp4v2 &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

autoconf -vif &&
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" USE_ARCH=32 \
./configure --prefix=/usr --with-mp4v2 &&
make

Install the package

make install

N32

Compile the package:

autoconf -vif &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" USE_ARCH=n32 \
./configure --prefix=/usr --libdir=/usr/lib32 --with-mp4v2 &&
make

Install the package

make install

64Bit

Compile the package:

autoconf -vif &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" USE_ARCH=64 \
./configure --prefix=/usr --libdir=/usr/lib64 --with-mp4v2 &&
make

Install the package

make install