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: | 1d07033648e7ff37273b3621caa1e20f | 
| 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 53 54 55 56 57 58 | 
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi
	# Determine SSL directory
	if [ -z "${CPP}" ]; then
 | | | 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 
		gzip -dc "../${SRC}" | tar -xf -
	else    
		cp -rp ../buildsrc/* './'
	fi
	# Determine SSL directory
	if [ -z "${CPP}" ]; then
		CPP="${CC:-cc} -E"
	fi
	if [ -n "${KC_TLS_SSLDIR}" ]; then
		SSLDIR="${KC_TLS_SSLDIR}"
	else
		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$@@')"
		if [ -z "${SSLDIR}" ]; then
 | 
| ︙ | ︙ |