fldigi/m4/static.m4
Stelios Bounanos e3fe8af6d5 Improve clock_gettime detection
Also use the monotonic clock, if available,
in the samplerate speed test function.
2008-07-24 00:28:20 +01:00

9 lines
404 B
Text

AC_DEFUN([AC_FLDIGI_STATIC], [
AC_ARG_ENABLE([static],
AC_HELP_STRING([--enable-static], [enable static linking for some libraries]),
[case "${enableval}" in
yes|no) ac_cv_static="${enableval}" ;;
*) AC_MSG_ERROR([bad value ${enableval} for --enable-static]) ;;
esac],
[ac_cv_static=no])
])