mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
Fix node-driver.c build on FreeBSD.
This commit is contained in:
parent
b9c86f337d
commit
a83d3b0249
1 changed files with 4 additions and 0 deletions
|
|
@ -88,9 +88,13 @@ static const struct clock_info {
|
||||||
clockid_t id;
|
clockid_t id;
|
||||||
} clock_info[] = {
|
} clock_info[] = {
|
||||||
{ "realtime", CLOCK_REALTIME },
|
{ "realtime", CLOCK_REALTIME },
|
||||||
|
#ifdef CLOCK_TAI
|
||||||
{ "tai", CLOCK_TAI },
|
{ "tai", CLOCK_TAI },
|
||||||
|
#endif
|
||||||
{ "monotonic", CLOCK_MONOTONIC },
|
{ "monotonic", CLOCK_MONOTONIC },
|
||||||
|
#ifdef CLOCK_MONOTONIC_RAW
|
||||||
{ "monotonic-raw", CLOCK_MONOTONIC_RAW },
|
{ "monotonic-raw", CLOCK_MONOTONIC_RAW },
|
||||||
|
#endif
|
||||||
{ "boottime", CLOCK_BOOTTIME },
|
{ "boottime", CLOCK_BOOTTIME },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue