Check-in [0e41fdc8db]
Overview
Comment:Updated to latest OpenSSL
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0e41fdc8db879a97c764dfa02a565e06b33dc47d
User & Date: rkeene on 2014-05-06 12:11:09
Other Links: manifest | tags
Context
2014-05-06
12:11
Updated to latest tcllib check-in: 830629525a user: rkeene tags: trunk
12:11
Updated to latest OpenSSL check-in: 0e41fdc8db user: rkeene tags: trunk
12:10
Updated to use newer version of Tcl 8.5 and work with newer versions of OpenSSL check-in: e71b03b772 user: rkeene tags: trunk
Changes

Modified server/buildpkgs/tls/build.sh from [547cf2503d] to [125f52f4ad].

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