Overview
| Comment: | Upgraded to latest version of TclTLS and LibreSSL |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
9cf20b8bbdab718bef6b84f7ade00bfe |
| User & Date: | rkeene on 2018-02-07 15:50:35 |
| Other Links: | manifest | tags |
Context
|
2018-02-19
| ||
| 18:26 | Added Linux/AArch64 build support check-in: a37fff0c69 user: rkeene tags: trunk | |
|
2018-02-07
| ||
| 15:50 | Upgraded to latest version of TclTLS and LibreSSL check-in: 9cf20b8bbd user: rkeene tags: trunk | |
|
2018-01-31
| ||
| 20:48 | Add support for Tcl 8.6.8 check-in: 67690779ba user: rkeene tags: trunk | |
Changes
Modified tls/build.sh from [2a9819bfef] to [9d27d48086].
1 2 3 4 | #! /usr/bin/env bash # BuildCompatible: KitCreator | | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#! /usr/bin/env bash
# BuildCompatible: KitCreator
version="1.7.16"
url="http://tcltls.rkeene.org/uv/tcltls-${version}.tar.gz"
sha256='6845000732bedf764e78c234cee646f95bb68df34e590c39434ab8edd6f5b9af'
configure_extra=('--enable-deterministic')
function buildSSLLibrary() {
local version url hash
local archive
version='2.6.4'
url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
hash='638a20c2f9e99ee283a841cd787ab4d846d1880e180c4e96904fc327d419d11f'
archive="src/libressl-${version}.tar.gz"
echo " *** Building LibreSSL v${version}" >&2
if [ ! -e "${pkgdir}/${archive}" ]; then
"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1
|
| ︙ | ︙ |