mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-04-08 10:11:40 +00:00
BUILD: adopt script/build-ssl.sh for OpenSSL-3.0.0beta2
starting with
74b7f339aa
,
libs are installed to "lib64", to get back required behaviour, let us
set libdir explicitly
This commit is contained in:
parent
21185970c1
commit
cd61e8383d
@ -22,7 +22,7 @@ download_openssl () {
|
|||||||
build_openssl_linux () {
|
build_openssl_linux () {
|
||||||
(
|
(
|
||||||
cd "openssl-${OPENSSL_VERSION}/"
|
cd "openssl-${OPENSSL_VERSION}/"
|
||||||
./config shared --prefix="${HOME}/opt" --openssldir="${HOME}/opt" -DPURIFY
|
./config shared --prefix="${HOME}/opt" --openssldir="${HOME}/opt" --libdir=lib -DPURIFY
|
||||||
if [ -z "${OPENSSL_VERSION##1.*}" ]; then
|
if [ -z "${OPENSSL_VERSION##1.*}" ]; then
|
||||||
make all
|
make all
|
||||||
else
|
else
|
||||||
@ -36,7 +36,7 @@ build_openssl_osx () {
|
|||||||
(
|
(
|
||||||
cd "openssl-${OPENSSL_VERSION}/"
|
cd "openssl-${OPENSSL_VERSION}/"
|
||||||
./Configure darwin64-x86_64-cc shared \
|
./Configure darwin64-x86_64-cc shared \
|
||||||
--prefix="${HOME}/opt" --openssldir="${HOME}/opt" -DPURIFY
|
--prefix="${HOME}/opt" --openssldir="${HOME}/opt" --libdir=lib -DPURIFY
|
||||||
make depend build_sw install_sw
|
make depend build_sw install_sw
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user