Libjpeg

From CBLFS
Revision as of 15:50, 4 September 2006 by Oppiz (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Download Source: http://www.ijg.org/files/jpegsrc.v6b.tar.gz
Required Patch: http://svn.cross-lfs.org/svn/repos/patches/jpeg/jpeg-6b-config_update-1.patch
Required Patch for PowerPC: http://svn.cross-lfs.org/svn/repos/patches/jpeg/jpeg-6b-ppc-1.patch

Dependencies

Non-Multilib

Compile the package:

patch -Np1 -i ../jpeg-6b-config_update-1.patch &&
./configure --prefix=/usr --enable-static --enable-shared &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

patch -Np1 -i ../jpeg-6b-config_update-1.patch &&
CC="gcc ${BUILD32}" ./configure --prefix=/usr --enable-static --enable-shared &&
make

Install the package

make install

N32

Compile the package:

patch -Np1 -i ../jpeg-6b-config_update-1.patch &&
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 \
    --enable-static --enable-shared &&
make libdir=/usr/lib32

Install the package

make libdir=/usr/lib32 install

64Bit

Compile the package:

patch -Np1 -i ../jpeg-6b-config_update-1.patch &&
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 \
    --enable-static --enable-shared &&
make libdir=/usr/lib64

Install the package

make libdir=/usr/lib64 install