113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
-
-
-
-
+
-
|
AC_CHECK_FUNC(getentropy,, [
AC_CHECK_FUNC(CryptGenRandom)
])
])
dnl Sync the RPATH if requested
if test "$TCLEXT_BUILD" != 'static'; then
if test "$TCLEXT_TLS_STATIC_SSL" = 'yes'; then
DC_SYNC_RPATH([no])
else
DC_SYNC_RPATH([yes])
DC_SYNC_RPATH([yes])
fi
fi
dnl Setup a stable ABI
DC_SETUP_STABLE_API([${srcdir}/nano.vers], nano.syms)
if test "$tcl_nano_debug" = 'true'; then
WEAKENSYMS=':'
REMOVESYMS=':'
|