BIND: Difference between revisions

From CBLFS
Jump to navigationJump to search
No edit summary
 
No edit summary
Line 23: Line 23:
Install the package
Install the package


  make -C bin/dig install
  make install


== Multilib ==
== Multilib ==
Line 36: Line 36:
Install the package
Install the package


  make -C bin/dig install
  make install &&
mv -v /usr/bin/isc-config.sh{,-32}


=== N32 ===
=== N32 ===
Line 48: Line 49:
Install the package
Install the package


  make -C bin/dig install
  make install &&
mv -v /usr/bin/isc-config.sh{,-n32}


=== 64Bit ===
=== 64Bit ===
Line 60: Line 62:
Install the package
Install the package


  make -C bin/dig install
  make install &&
mv -v /usr/bin/isc-config.sh{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/isc-config.sh

Revision as of 09:57, 12 November 2006

Download Source: ftp://ftp.isc.org/isc/bind9/9.3.2/bind-9.3.2.tar.gz
Alternate Download Source: http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.3.2/bind-9.3.2.tar.gz

Dependencies

Optional

  • OpenSSL (Recommended for secure environments)

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/isc-config.sh{,-32}

N32

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/isc-config.sh{,-n32}

64Bit

Compile the package:

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

Install the package

make install &&
mv -v /usr/bin/isc-config.sh{,-64} &&
ln -sfv multiarch_wrapper /usr/bin/isc-config.sh
Retrieved from "?title=BIND&oldid=3950"