Differences From Artifact [425a7ec59e]:
- Executable file tls/build.sh — part of check-in [b302c42baf] at 2014-07-07 05:03:03 on branch trunk — Updated to look for SSL in compiler standard place rather than guessing for it as is the TclTLS default (user: rkeene, size: 4338) [annotate] [blame] [check-ins using] [more...]
To Artifact [3c6f8c4aef]:
- Executable file tls/build.sh — part of check-in [d5793ac87e] at 2015-01-20 18:02:30 on branch trunk — Updated to disable SSLv2 in the TLS build script (user: rkeene, size: 4438) [annotate] [blame] [check-ins using]
| ︙ | |||
78 79 80 81 82 83 84 85 86 87 88 89 90 91 | 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | + + + |
if [ "${STATICTLS}" = "0" ]; then
tryopts="--enable-shared --disable-shared"
elif [ "${STATICTLS}" = "-1" ]; then
tryopts="--enable-shared"
else
tryopts="--disable-shared"
fi
# Disable SSLv2, newer SSL libraries drop support for it entirely
CFLAGS="${CFLAGS} -DNO_SSL2=1"
SAVE_CFLAGS="${CFLAGS}"
for tryopt in $tryopts __fail__; do
# Clean up, if needed
make distclean >/dev/null 2>/dev/null
rm -rf "${INSTDIR}"
mkdir "${INSTDIR}"
|
| ︙ |