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