Check-in [ecd9d4b125]
Overview
Comment:Updated to not build apps when building LibreSSL
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1:ecd9d4b1255c4728ea71ec01b3b530ada84ac0c3
User & Date: rkeene on 2016-09-06 06:41:50
Other Links: manifest | tags
Context
2016-09-06
06:46
Fixed issues with TLS package building check-in: 5445171e45 user: rkeene tags: trunk
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
Changes

Modified tls/build.sh from [6384a073a2] to [9ed7019fb3].

    25     25   	(
    26     26   		rm -rf libressl-*
    27     27   
    28     28   		gzip -dc "${pkgdir}/${archive}" | tar -xf - || exit 1
    29     29   
    30     30   		cd "libressl-${version}" || exit 1
    31     31   
    32         -		echo "Running: ./configure ${CONFIGUREEXTRA} --disable-shared --enable-static --prefix=\"$(pwd)/INST\""
    33     32   		./configure ${CONFIGUREEXTRA} --disable-shared --enable-static --prefix="$(pwd)/INST" || exit 1
    34     33   
    35         -		echo "Running: ${MAKE:-make} V=1"
           34  +		# Disable building the apps -- they do not get used
           35  +		rm -rf apps
           36  +		mkdir apps
           37  +		cat << \_EOF_ > apps/Makefile
           38  +%:
           39  +	@echo Nothing to do
           40  +_EOF_
           41  +
    36     42   		${MAKE:-make} V=1 || exit 1
    37     43   
    38         -		echo "Running: ${MAKE:-make} V=1 install" 
    39     44   		${MAKE:-make} V=1 install || exit 1
    40     45   	) || return 1
    41     46   
    42     47   	SSLDIR="$(pwd)/libressl-${version}/INST"
    43     48   	addlibs_LOCALSSL="$(PKG_CONFIG_PATH="${SSLDIR}/lib/pkgconfig" "${PKG_CONFIG:-pkg-config}" libssl libcrypto --libs --static)"
    44     49   }
    45     50