Re: [hatari-devel] Hatari 2.1.0 has been released |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/hatari-devel Archives
]
- To: hatari-devel@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [hatari-devel] Hatari 2.1.0 has been released
- From: benoît tuduri <benoit.tuduri@xxxxxxxxx>
- Date: Sun, 11 Feb 2018 13:19:26 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-transfer-encoding; bh=d6mFNBTKrZOCKDlEpmMtF0bt3/PlmcFQ8EmaWpV7ESc=; b=CX/4XAcYTYlqhOvFZkNYXDRh723IrySJBoK3fDEXsio5+JRnMk5GhdMpPNhCtGseJp E6QbDRq4Vw90nKs55anKxqMiD+QZLTXzoMnvMbLDe0BiRayG583ZCLCJx4ZrPQVb2wFk 7gAX2i4Alq6JhmV2NtOPtzE3G7EyK7WuK8fOZc1nqLvRLSX/o/r6RdR8Z8UogXCLyynC 9fOxTuhXabaOj/9Xemlx5P+WX64oo3sD/e3zPRaJvZPpIJcK01zjG2Pt11mx8Uhfr1YK te151C1z7RaW9Zjr1uqR7KgmUmxuVp6TRifzXHaweRTu3/Ybv/zhFNJ1EfcIwhY23OeM AuCA==
Nicolas, yes.
Look :
https://github.com/phracker/MacOSX-SDKs/blob/9fc3ed0ad0345950ac25c28695b0427846eea966/MacOSX10.12.sdk/System/Library/Frameworks/AppKit.framework/Versions/C/Headers/NSAlert.h
and
https://github.com/phracker/MacOSX-SDKs/blob/9fc3ed0ad0345950ac25c28695b0427846eea966/MacOSX10.11.sdk/System/Library/Frameworks/AppKit.framework/Versions/C/Headers/NSAlert.h
thank to @phracker to expose the SDKs .
Regards,
2018-02-10 19:31 GMT+01:00 Nicolas Pomarède <npomarede@xxxxxxxxxxxx>:
> Le 10/02/2018 à 19:20, benoît tuduri a écrit :
>>
>> Hi,
>>
>> Like I said during the last post, the compilation doesn't work on a
>> 10.11, Troed you work only on High Sierra (because some constant names
>> are changed) ?
>>
>> Regards,
>
>
> Hi
>
> the patch you posted adds these lines
>
> +#if (!defined MAC_OS_X_VERSION_10_12) || MAC_OS_X_VERSION_MAX_ALLOWED <
> MAC_OS_X_VERSION_10_12
> +#define NSAlertStyleInformational NSInformationalAlertStyle
> +#endif
>
> Is that enough to fix compilation in your case ? If so, we can add those
> lines (if it doesn't have any side effect on most recent macOS)
>
>
> Nicolas