Skip to content

Commit

Permalink
Merge topic 'dragonfly_support' into release-3.29
Browse files Browse the repository at this point in the history
4c70e72 cmSystemTools: Fix compilation on DragonFly BSD

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9400
  • Loading branch information
bradking authored and kwrobot committed Apr 3, 2024
2 parents 26d1a5a + 4c70e72 commit 64956d9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/cmSystemTools.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
// NOLINTNEXTLINE(bugprone-reserved-identifier)
# define _POSIX_C_SOURCE 200809L
#endif
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__QNX__)
#if defined(__FreeBSD__) || defined(__DragonFly__) || defined(__NetBSD__) || \
defined(__QNX__)
// For isascii
// NOLINTNEXTLINE(bugprone-reserved-identifier)
# define _XOPEN_SOURCE 700
Expand Down

0 comments on commit 64956d9

Please sign in to comment.