From c403a5266663691b96f9cfe9513c787851d54331 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Tue, 19 Feb 2013 00:52:40 -0800 Subject: [PATCH] configure.ac: Do not check for clock_gettime on MinGW. MinGW does not have clock_gettime. Signed-off-by: Vinson Lee Reviewed-by: Matt Turner --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 16c2f8c..1e11b4e 100644 --- a/configure.ac +++ b/configure.ac @@ -500,7 +500,7 @@ AC_CHECK_FUNC([dlopen], [DEFINES="$DEFINES -DHAVE_DLOPEN"], AC_SUBST([DLOPEN_LIBS]) case "$host_os" in -darwin*) +darwin*|mingw*) ;; *) AC_CHECK_FUNCS([clock_gettime], [CLOCK_LIB=], -- 2.7.4