Skip to content

Commit

Permalink
Attempt to fix weird build issues with CYGWIN and MacOS (fixes #88)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolukhin committed Sep 12, 2024
1 parent b37fc77 commit 9028c8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/windbg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#if defined(__CYGWIN__) && !defined(_GNU_SOURCE)
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif

Expand Down
2 changes: 1 addition & 1 deletion src/windbg_cached.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)

#if defined(__CYGWIN__) && !defined(_GNU_SOURCE)
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif

Expand Down

0 comments on commit 9028c8a

Please sign in to comment.