Ticket #3423: makeCrossSSLDir.sh

File makeCrossSSLDir.sh, 578 bytes (added by mmadia, 15 years ago)

temporary measure to assist people.

Line 
1#!/bin/sh
2#
3# script for setting up cross-ssl directory
4
5if [ ! -d download ] ; then
6 echo creating 'download/'
7 mkdir download
8fi
9
10if [ ! -d cross-ssl ] ; then
11 echo creating 'cross-ssl/'
12 mkdir cross-ssl
13fi
14
15if [ ! -e download/openssl-0.9.8j-gcc2-2009-01-28.zip ] ; then
16 echo downloading openssl-0.9.8
17 wget -nv -O download/openssl-0.9.8j-gcc2-2009-01-28.zip http://haiku-files.org/files/optional-packages/openssl-0.9.8j-gcc2-2009-01-28.zip
18fi
19
20if [ ! -e cross-ssl/common/lib/libcrypto.so.0.9.8 ] ; then
21 unzip -n -d cross-ssl download/openssl-0.9.8j-gcc2-2009-01-28.zip
22fi