<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div><blockquote type="cite" class=""><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class=""><br class=""></span></div><div class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">Agreed, the problem here is with libsdl2.  We need to understand what the problem is on</span><br style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""><span style="font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; float: none; display: inline !important;" class="">10.6 at least and either help upstream to fix it or fix it ourselves. </span></div></blockquote><br class=""></div><div><br class=""></div><div>Dave,</div><div><br class=""></div><div>I may not be seeing the entire picture (often happens!), but I don’t think there is actually a problem on 10.6. It uses the more recent SDKs mostly for the iPhone IOS stuff, I think, and maybe for a few other features.</div><div><br class=""></div><div>It’s just written in that Availability.h Apple-sanctioned way that enables certain features on higher OS versions, but works on lower OS versions as well. </div><div><br class=""></div><div><br class=""></div><div>For example, in MacOSX 10.7 there is a show and hide menu bar feature that is enabled if you are on 10.7, but worked around on 10.6.</div><div><br class=""></div><div><div>#if (MAC_OS_X_VERSION_MIN_REQUIRED < 1070) && !defined(__LP64__)</div><div>    if (show) {</div><div>        ShowMenuBar();</div><div>    } else {</div><div>        HideMenuBar();</div><div>    }</div><div>#endif</div><div><br class=""></div><div><br class=""></div><div>one thing — in the code of libsdl 2.05 it has this:</div><div><br class=""></div><div><div>#if MAC_OS_X_VERSION_MIN_REQUIRED < 1060</div><div># error SDL for Mac OS X only supports deploying on 10.6 and above.</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">so I think 10.5 is out of luck. libSDL 2.02 or 2.03 was still OK on 10.5 I think. I couldn’t get 2.04 to work, and gave up trying as life is too short.</div></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div></div><div>Ken</div><div><br class=""></div><div><br class=""></div><br class=""></body></html>