GifLib: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
Line 34: Line 34:
Compile the package:
Compile the package:


  CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
  CC="gcc ${BUILD32}" LDFLAGS="-L/usr/lib" ./configure --prefix=/usr &&
  make
  make



Revision as of 09:22, 14 November 2006

Download Source: http://prdownloads.sourceforge.net/libungif/giflib-4.1.4.tar.bz2

Dependencies

Optional

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/giflib-4.1.4/html &&
install -v -m644 doc/*.{png,html} \
    /usr/share/doc/giflib-4.1.4/html &&
install -v -m644 doc/*.txt \
    /usr/share/doc/giflib-4.1.4

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" LDFLAGS="-L/usr/lib" ./configure --prefix=/usr &&
make

Install the package

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install &&
install -v -m755 -d /usr/share/doc/giflib-4.1.4/html &&
install -v -m644 doc/*.{png,html} \
    /usr/share/doc/giflib-4.1.4/html &&
install -v -m644 doc/*.txt \
    /usr/share/doc/giflib-4.1.4
Retrieved from "?title=GifLib&oldid=4083"