Gsasl: Difference between revisions
From CBLFS
Jump to navigationJump to search
Updated version and added gsasl version template page |
Added Non-multilib instructions |
||
| Line 18: | Line 18: | ||
== Non-Multilib == | == Non-Multilib == | ||
Compile the package: | |||
./configure --prefix=/usr --sysconfdir=/etc \ | |||
--localstatedir=/var | |||
make | |||
Install the package | |||
make install | |||
== Multilib == | == Multilib == | ||
Latest revision as of 17:31, 11 October 2012
| Download Source: | ftp://ftp.gnu.org/gnu/gsasl/gsasl-1.8.0.tar.gz |
|---|
Introduction to Gsasl
GNU SASL is an implementation of the Simple Authentication and Security Layer (SASL).
Project Homepage: http://www.gnu.org/software/gsasl/
Dependencies
Required
Optional
Non-Multilib
Compile the package:
./configure --prefix=/usr --sysconfdir=/etc \ --localstatedir=/var make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" LD="ld ${LD_BUILD32}" USE_ARCH=32 \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --build=${CLFS_TARGET32}
make
Install the package
make install
N32
Please contribute
64Bit
Compile the package:
CC="gcc ${BUILD64}" LD="ld ${LD_BUILD64}" \
LDFLAGS="-L/usr/lib64" \
PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libdir=/usr/lib64
make
Install the package
make install