bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] lib/stdio.in.h: define _POSIX_C_SOURCE on >=Sierra


From: Paul Eggert
Subject: Re: [PATCH] lib/stdio.in.h: define _POSIX_C_SOURCE on >=Sierra
Date: Thu, 9 Nov 2023 21:47:31 -0800
User-agent: Mozilla Thunderbird

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

[Prev in Thread] Current Thread [Next in Thread]