Difference between revisions of "X264"

From CBLFS
Jump to navigationJump to search
m (--enable-gtk configure switch no longer valid)
m (Configuration Information: mp4 output now enabled by default, invert config option)
Line 23: Line 23:
 
{|style="text-align: left;"
 
{|style="text-align: left;"
 
|-
 
|-
|<i>--enable-mp4-output</i>  enables mp4 output.
+
|<i>--disable-mp4-output</i>  disables mp4 output (use this you do not want/have Gpac installed).
 
|-
 
|-
 
|<i>--enable-visualize</i>  enables visualization (X11 only).
 
|<i>--enable-visualize</i>  enables visualization (X11 only).

Revision as of 02:43, 13 April 2010

Download Source: ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20100513-2245.tar.bz2

Introduction to X264

Project Homepage: Unknown

Dependencies

Optional

Configuration Information

--disable-mp4-output disables mp4 output (use this you do not want/have Gpac installed).
--enable-visualize enables visualization (X11 only).

Non-Multilib

If you have a X Window System installed and intend to pass --enable-visualize then run the following command:

sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" configure

Compile the package:

./configure --prefix=/usr --enable-shared --enable-pic \
    --extra-cflags="-I${XORG_PREFIX-/usr}/include" &&
make

Install the package

make install

Multilib

32Bit

If you have a X Window System installed and intend to pass --enable-visualize then run the following command:

sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" configure

Compile the package:

CC="gcc ${BUILD32}" ./configure --host=$CLFS_TARGET32 \
    --prefix=/usr --enable-shared --enable-pic \
    --extra-cflags="-I${XORG_PREFIX-/usr}/include" &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" make

Install the package

make install

N32

If you have a X Window System installed and intend to pass --enable-visualize then run the following command:

sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" configure

Compile the package:

sed -i "s@/lib@&32@g" configure &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32 \
    --enable-shared --enable-pic \
    --extra-cflags="-I${XORG_PREFIX-/usr}/include" &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" make

Install the package

make install

64Bit

If you have a X Window System installed and intend to pass --enable-visualize then run the following command:

sed -i "s@/usr/X11R6@${XORG_PREFIX}@g" configure

Compile the package:

sed -i "s@/lib@&64@g" configure &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr\
    --libdir=/usr/lib64 \
    --enable-shared --enable-pic \
    --extra-cflags="-I${XORG_PREFIX-/usr}/include" &&
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" make

Install the package

make install

Contents

Installed Programs: None
Installed Libraries: libx264.{a,so}
Installed Directory: None