On 2023-11-09 11:00, Sevan Janiyan wrote:
This is wrong, you're applying the change to anything before High Sierra (10.13). You're after Ventura and above (13).

# if (defined MAC_OS_X_VERSION_MIN_REQUIRED \
       && 130000 >= MAC_OS_X_VERSION_MIN_REQUIRED)

If the #if should fire when it's 13 and above, shouldn't that be:

  # if (defined MAC_OS_X_VERSION_MIN_REQUIRED \
        && 130000 <= MAC_OS_X_VERSION_MIN_REQUIRED)


Reply via email to