YaSSL: Difference between revisions
From CBLFS
Jump to navigationJump to search
New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://www.yassl.com/yassl-{{YaSSL-Version}}.zip |} ---- {{Package-Introduction|yaSSL is an SSL Library f... |
No edit summary |
||
| Line 10: | Line 10: | ||
---- | ---- | ||
== Non-Multilib == | == Non-Multilib == | ||
Revision as of 07:56, 22 February 2009
| Download Source: | http://www.yassl.com/yassl-1.9.6.zip |
|---|
Introduction to YaSSL
yaSSL is an SSL Library for programmers building security functionality into their applications and devices.
Project Homepage: http://yassl.com/
Non-Multilib
Compile the package:
./configure --prefix=/usr --enable-ipv6 && make
Install the package:
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
./configure --prefix=/usr --enable-ipv6 &&
make
Install the package:
make install
N32
Compile the package:
sed -i -e "/\(sys_lib_search_path_spec\|sys_lib_dlsearch_path_spec\)=/s:/lib:&32:g" \
-e "/LDFLAGS=.*ZLIB_HOME/s:/lib:&32:g" configure &&
CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 \
--enable-ipv6 &&
make
Install the package:
make install
64Bit
Compile the package:
sed -i -e "/\(sys_lib_search_path_spec\|sys_lib_dlsearch_path_spec\)=/s:/lib:&64:g" \
-e "/LDFLAGS=.*ZLIB_HOME/s:/lib:&64:g" configure &&
CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
./configure --prefix=/usr --libdir=/usr/lib64 \
--enable-ipv6 &&
make
Install the package:
make install