Check-in [b29237b910]
Overview
Comment:Upgraded to latest version of libressl and fixed issues with it being relocated
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:b29237b91044fa6a6ac53a406f24df01670a1179
User & Date: rkeene on 2016-09-06 06:07:31
Other Links: manifest | tags
Context
2016-09-06
06:41
Updated to not build apps when building LibreSSL check-in: ecd9d4b125 user: rkeene tags: trunk
06:07
Upgraded to latest version of libressl and fixed issues with it being relocated check-in: b29237b910 user: rkeene tags: trunk
05:38
Updated to create working directory since it is now nested check-in: 0164bf3fc3 user: rkeene tags: trunk
Changes

Modified tls/build.sh from [5e536572e7] to [6384a073a2].

     6      6   url="http://sourceforge.net/projects/tls/files/tls/${TLSVERS}/tls${TLSVERS}-src.tar.gz"
     7      7   sha256='5119de3e5470359b97a8a00d861c9c48433571ee0167af0a952de66c99d3a3b8'
     8      8   
     9      9   function buildSSLLibrary() {
    10     10   	local version url hash
    11     11   	local archive
    12     12   
    13         -	version='2.4.1'
           13  +	version='2.4.2'
    14     14   	url="http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-${version}.tar.gz"
    15         -	hash='121922b13169cd47a85e3e77f0bc129f8d04247193b42491cb1fab9074e80477'
           15  +	hash='5f87d778e5d62822d60e38fa9621c1c5648fc559d198ba314bd9d89cbf67d9e3'
    16     16   
    17     17   	archive="src/libressl-${version}.tar.gz"
    18     18   
    19     19   	echo " *** Building LibreSSL v${version}" >&2
    20     20   
    21         -	if [ ! -e "../${archive}" ]; then
    22         -		"${_download}" "${url}" "../${archive}" "${hash}" || return 1
           21  +	if [ ! -e "${pkgdir}/${archive}" ]; then
           22  +		"${_download}" "${url}" "${pkgdir}/${archive}" "${hash}" || return 1
    23     23   	fi
    24     24   
    25     25   	(
    26     26   		rm -rf libressl-*
    27     27   
    28         -		gzip -dc "../${archive}" | tar -xf - || exit 1
           28  +		gzip -dc "${pkgdir}/${archive}" | tar -xf - || exit 1
    29     29   
    30     30   		cd "libressl-${version}" || exit 1
    31     31   
    32     32   		echo "Running: ./configure ${CONFIGUREEXTRA} --disable-shared --enable-static --prefix=\"$(pwd)/INST\""
    33     33   		./configure ${CONFIGUREEXTRA} --disable-shared --enable-static --prefix="$(pwd)/INST" || exit 1
    34     34   
    35     35   		echo "Running: ${MAKE:-make} V=1"