Skip to content

Commit

Permalink
Fix build error on macOS (OS_SHOULD_HAVE_LIBRT) (#5194)
Browse files Browse the repository at this point in the history
```
./configure: line xxx: OS_SHOULD_HAVE_LIBRT: command not found
```
  • Loading branch information
twose authored Nov 20, 2023
1 parent 40e9196 commit 067fbc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -948,7 +948,7 @@ EOF
OS_SHOULD_HAVE_LIBRT=1

if test "$SW_OS" = "MAC"; then
OS_SHOULD_HAVE_LIBRT = 0
OS_SHOULD_HAVE_LIBRT=0
fi
AS_CASE([$host_os],
[openbsd*], [OS_SHOULD_HAVE_LIBRT=0]
Expand Down

0 comments on commit 067fbc3

Please sign in to comment.