43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
;;
esac
if [ -z "${opensslplatform}" ]; then
exit 0
fi
wget 'http://www.openssl.org/source/openssl-1.0.0e.tar.gz'
gzip -dc openssl-1.0.0e.tar.gz | tar -xf -
cd openssl-1.0.0e
./Configure no-shared --prefix=$(pwd)/INST "${opensslplatform}"
${MAKE:-make} || exit 1
${MAKE:-make} install || exit 1
)
for chkssldir in "$(pwd)/openssl-1.0.0e/INST"; do
if [ -d "${chkssldir}/lib" ]; then
SSLDIR="${chkssldir}"
fi
done
fi
if [ -z "${SSLDIR}" ]; then
|
|
|
|
|
|
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
;;
esac
if [ -z "${opensslplatform}" ]; then
exit 0
fi
wget 'http://www.openssl.org/source/openssl-1.0.1g.tar.gz'
gzip -dc openssl-1.0.1g.tar.gz | tar -xf -
cd openssl-1.0.1g
./Configure no-shared --prefix=$(pwd)/INST "${opensslplatform}"
${MAKE:-make} || exit 1
${MAKE:-make} install || exit 1
)
for chkssldir in "$(pwd)/openssl-1.0.1g/INST"; do
if [ -d "${chkssldir}/lib" ]; then
SSLDIR="${chkssldir}"
fi
done
fi
if [ -z "${SSLDIR}" ]; then
|