Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Added SHA1 for LibreSSL |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2bb4e840f37ba286f49dcfd0f6d4588c |
User & Date: | rkeene 2015-01-20 16:52:04 |
Context
2015-01-20
| ||
17:02 | Updated to resolve arch name for unknown platforms check-in: bd4cfb91af user: rkeene tags: trunk | |
16:52 | Added SHA1 for LibreSSL check-in: 2bb4e840f3 user: rkeene tags: trunk | |
16:51 | Switched out OpenSSL and in LibreSSL check-in: a259de30ef user: rkeene tags: trunk | |
Changes
Changes to scripts/post/20-libressl.
1 2 3 4 5 6 7 8 9 10 11 12 | #! /usr/bin/env bash # URLs and versions LIBRESSL_VERS='2.1.2' LIBRESSL_URL="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${LIBRESSL_VERS}.tar.gz" LIBRESSL_TARBALL="src/libressl-${LIBRESSL_VERS}.tar.gz" LIBRESSL_DIR="libressl-${LIBRESSL_VERS}" # Main script CCNAME="$1" CCDIR="$2" PREFIX="$3" | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #! /usr/bin/env bash # URLs and versions LIBRESSL_VERS='2.1.2' LIBRESSL_URL="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${LIBRESSL_VERS}.tar.gz" LIBRESSL_SHA1='47ce84d388a8fc225f563edbb51db1b0320bdfe3' LIBRESSL_TARBALL="src/libressl-${LIBRESSL_VERS}.tar.gz" LIBRESSL_DIR="libressl-${LIBRESSL_VERS}" # Main script CCNAME="$1" CCDIR="$2" PREFIX="$3" |
︙ | ︙ | |||
35 36 37 38 39 40 41 | exit 0 fi # Download source . 'scripts/common' if [ ! -d "${LIBRESSL_DIR}" ]; then | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | exit 0 fi # Download source . 'scripts/common' if [ ! -d "${LIBRESSL_DIR}" ]; then download "${LIBRESSL_URL}" "${LIBRESSL_TARBALL}" "${LIBRESSL_SHA1}" || exit 1 gzip -dc "${LIBRESSL_TARBALL}" | tar -xf - fi CC_SAVE="${CC}" for arch in $(multilib); do CC="${CC_SAVE} $(multilib --cflags "${arch}")" |
︙ | ︙ |