Skip to content

Commit

Permalink
Define _GNU_SOURCE instead of _XOPEN_SOURCE in Vezel.Celerity.Runtime…
Browse files Browse the repository at this point in the history
….Native.

This should give us all the API coverage we need on Linux, while defining
_XOPEN_SOURCE on macOS apparently gives *less* API coverage than the default.
  • Loading branch information
alexrp committed Dec 30, 2023
1 parent bdd992b commit f301745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime/native/native.cproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<AssemblyName>Vezel.Celerity.Runtime.Native</AssemblyName>
<DefineConstants>
$(DefineConstants);
_XOPEN_SOURCE;
_GNU_SOURCE;
_UNICODE;
UNICODE;
WIN32_LEAN_AND_MEAN
Expand Down

0 comments on commit f301745

Please sign in to comment.