110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
dnl Random number generation mechanisms
AC_CHECK_FUNC(getrandom,, [
AC_CHECK_FUNC(getentropy,, [
AC_CHECK_FUNC(CryptGenRandom)
])
])
dnl Sync the RPATH if requested
if test "$TCLEXT_BUILD" != 'static'; then
DC_SYNC_RPATH([yes])
fi
dnl Setup a stable ABI
|
>
>
>
>
>
>
>
>
>
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
dnl Random number generation mechanisms
AC_CHECK_FUNC(getrandom,, [
AC_CHECK_FUNC(getentropy,, [
AC_CHECK_FUNC(CryptGenRandom)
])
])
dnl Handle specifying where TCLLIB is, for testing
AC_SUBST(TCLLIB_PATH)
TCLLIB_PATH='/dev/null'
AC_ARG_WITH([tcllib-path], AS_HELP_STRING([--with-tcllib-path=<path>], [Specify a path to Tcllib for the test suite]), [
if test "$withval" != "no" -a "$withval" != "yes"; then
TCLLIB_PATH="${withval}"
fi
])
dnl Sync the RPATH if requested
if test "$TCLEXT_BUILD" != 'static'; then
DC_SYNC_RPATH([yes])
fi
dnl Setup a stable ABI
|