Overview
Comment: | Fixed TLS build script to try to use a default C compiler if none was specified |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 1d07033648e7ff37273b3621caa1e20f619fc0d9 |
User & Date: | rkeene on 2016-03-11 17:34:25 |
Other Links: | manifest | tags |
Context
2016-03-11
| ||
17:40 | Added hashes to more projects check-in: 73b57d10fb user: rkeene tags: trunk | |
17:34 | Fixed TLS build script to try to use a default C compiler if none was specified check-in: 1d07033648 user: rkeene tags: trunk | |
17:28 | Fixed downloading of tcc4tcl check-in: 08887d8e7c user: rkeene tags: trunk | |
Changes
Modified tls/build.sh from [beb5ae7496] to [b1d5ab588f].
52 52 gzip -dc "../${SRC}" | tar -xf - 53 53 else 54 54 cp -rp ../buildsrc/* './' 55 55 fi 56 56 57 57 # Determine SSL directory 58 58 if [ -z "${CPP}" ]; then 59 - CPP="${CC} -E" 59 + CPP="${CC:-cc} -E" 60 60 fi 61 61 62 62 if [ -n "${KC_TLS_SSLDIR}" ]; then 63 63 SSLDIR="${KC_TLS_SSLDIR}" 64 64 else 65 65 SSLDIR="$(echo '#include <openssl/ssl.h>' 2>/dev/null | ${CPP} - | awk '/# 1 "\/.*\/ssl\.h/{ print $3; exit }' | sed 's@^"@@;s@"$@@;s@/include/openssl/ssl\.h$@@')" 66 66 if [ -z "${SSLDIR}" ]; then