summarylogtreecommitdiffstats
path: root/0111-configure.ac-don-t-check-for-clock_-functions.patch
blob: 3af3c2dce883c8a22e0b55a4174bf90680a058f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
From 80640c7c44d34d8cebfa0768575750e7753bcb8e Mon Sep 17 00:00:00 2001
From: Christoph Reiter <reiter.christoph@gmail.com>
Date: Sun, 1 Aug 2021 18:35:17 +0200
Subject: [PATCH 111/N] configure.ac: don't check for clock_ functions

They shouldn't be exposed on Windows and lead to winpthread being linked in
---
 configure.ac | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/configure.ac b/configure.ac
index 2455a05..dd6969d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4369,6 +4369,9 @@ char *r = crypt_r("", "", &d);
     [])
 )
 
+case $host in
+  *-*-mingw*) ;;
+  *)
 AC_CHECK_FUNCS(clock_gettime, [], [
     AC_CHECK_LIB(rt, clock_gettime, [
         LIBS="$LIBS -lrt"
@@ -4389,6 +4392,8 @@ AC_CHECK_FUNCS(clock_settime, [], [
         AC_DEFINE(HAVE_CLOCK_SETTIME, 1)
     ])
 ])
+  ;;
+esac
 
 AC_MSG_CHECKING(for major, minor, and makedev)
 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
-- 
2.33.0