ObjFW  Check-in [4a77da21aa]

Overview
Comment:configure: Print warning on missing TLS support
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4a77da21aaaa3f95b6421aedd4178d5cbeef662766cc2c31a326ec5b8d855f4a
User & Date: js on 2022-01-09 10:28:00
Other Links: manifest | tags
Context
2022-01-16
12:48
README.md: Document to run make before make check check-in: 9b7d35bb00 user: js tags: trunk
2022-01-09
10:28
configure: Print warning on missing TLS support check-in: 4a77da21aa user: js tags: trunk
2022-01-08
10:30
PLATFORMS.md: Add Windows 11 check-in: 23a63f5b35 user: js tags: trunk
Changes

Modified configure.ac from [1748dfb2e4] to [2447ee54a4].

2081
2082
2083
2084
2085
2086
2087









	printf "  ** spinlocks are available. Expect *very* poor performance, "
	echo "as a mutex will"
	printf "  ** be locked for every retain and release! If you don't "
	echo "need threads, try"
	echo "  ** --disable-threads to work around this problem."
	echo
])
















>
>
>
>
>
>
>
>
>
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
	printf "  ** spinlocks are available. Expect *very* poor performance, "
	echo "as a mutex will"
	printf "  ** be locked for every retain and release! If you don't "
	echo "need threads, try"
	echo "  ** --disable-threads to work around this problem."
	echo
])

AS_IF([test x"$enable_sockets" != x"no" -a x"$tls_support" = x"no"], [
       echo
       printf "  ** Warning: You have enabled sockets, but no TLS "
       echo "implementation was found."
       printf "  ** TLS support will be disabled. Please install "
       echo "GnuTLS for TLS support."
       echo
])