Issue 14151: Fix conflicting defines on Windows hidden by cmake unity builds #14154
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
These two changes fix builds that don't use cmake unity described in issue #14151
Remove header inclusion guard in windows_undefs.hpp to insure certain Win32 macros are always undefined - this is okay because all these #undef are guarded by
#ifdef WIN32
Copy deletion of ICU undefine of
__STRICT_ANSI__
from ICU upstream that conflicts with GCC-14 header files - this duplicates ICU-22721 Delete obsolete __STRICT_ANSI__ workaround for MinGW unicode-org/icu#3003 - it would be better to pull the latest ICU in but ICU is used in a customized way that would require more effort - also looks like fix won't be released till ICU 75.2 which is not yet released - https://unicode-org.atlassian.net/browse/ICU-22721