summarylogtreecommitdiffstats
path: root/0131-configure.ac-don-t-check-for-clock_-functions.patch
blob: e77f120f29a23bb266f6a71d264e003ef691ab34 (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 839f384b8d3f1b77bef639609246f67e979d8159 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 131/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 0497199..23dd59b 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.32.0