53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
if test "${enableval}" == "no"; then
AC_DEFINE([NO_TLS1_3], [1], [Disable TLS1.3 protocol])
AC_MSG_CHECKING([for disable TLS1.3 protocol])
AC_MSG_RESULT([yes])
fi
])
dnl Determine if we have been asked to use a fast path if possible
AC_ARG_ENABLE([ssl-fastpath], AS_HELP_STRING([--enable-ssl-fastpath],
[enable using the underlying file descriptor for talking directly to the SSL library]), [
tcltls_ssl_fastpath="$enableval"
], [
tcltls_ssl_fastpath='no'
|
>
>
>
>
>
>
>
>
>
>
>
>
>
>
|
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
if test "${enableval}" == "no"; then
AC_DEFINE([NO_TLS1_3], [1], [Disable TLS1.3 protocol])
AC_MSG_CHECKING([for disable TLS1.3 protocol])
AC_MSG_RESULT([yes])
fi
])
dnl Determine if debugging mode should be enabled
AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug],
[enable debugging mode and output more status]), [
tcltls_debug_mode="$enableval"
], [
tcltls_debug_mode='no'
])
if test "$tcltls_debug_mode" == 'yes'; then
AC_DEFINE(TCLEXT_TCLTLS_DEBUG, [1], [Enable debugging mode])
fi
AC_MSG_CHECKING([for debug mode])
AC_MSG_RESULT([$tcltls_debug_mode])
dnl Determine if we have been asked to use a fast path if possible
AC_ARG_ENABLE([ssl-fastpath], AS_HELP_STRING([--enable-ssl-fastpath],
[enable using the underlying file descriptor for talking directly to the SSL library]), [
tcltls_ssl_fastpath="$enableval"
], [
tcltls_ssl_fastpath='no'
|