114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
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
|
|
|
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
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], [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
|