mirror of
https://git.freebsd.org/ports.git
synced 2025-05-14 08:11:50 -04:00
15 lines
386 B
C
15 lines
386 B
C
--- src/utils/os_unix.c.orig 2024-05-10 09:57:55.000000000 -0700
|
|
+++ src/utils/os_unix.c 2024-06-01 22:18:54.999484000 -0700
|
|
@@ -103,10 +103,12 @@
|
|
break;
|
|
#endif
|
|
#ifdef CLOCK_MONOTONIC
|
|
+#if !(defined(CLOCK_BOOTTIME) && CLOCK_BOOTTIME == CLOCK_MONOTONIC)
|
|
case CLOCK_MONOTONIC:
|
|
clock_id = CLOCK_REALTIME;
|
|
break;
|
|
#endif
|
|
+#endif
|
|
case CLOCK_REALTIME:
|
|
return -1;
|
|
}
|