Skip to content

Commit

Permalink
Merged revision(s) 22607 from trunk/OpenMPT:
Browse files Browse the repository at this point in the history
[Fix] mpt/base/detect_quirks.hpp: Be more defensive with macOS target version check for older XCode.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.30@22612 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
manxorist committed Dec 26, 2024
1 parent 52758ad commit bcfc05f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/mpt/base/detect_quirks.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,16 @@
#if MPT_OS_MACOSX_OR_IOS
#if defined(TARGET_OS_OSX)
#if TARGET_OS_OSX
#if !defined(MAC_OS_X_VERSION_10_15)
#define MPT_LIBCXX_QUIRK_NO_TO_CHARS_INT
#else
#if (MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_15)
#define MPT_LIBCXX_QUIRK_NO_TO_CHARS_INT
#endif
#endif
#endif
#endif
#endif



Expand Down

0 comments on commit bcfc05f

Please sign in to comment.