<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="">Oh — I see that there’s a lot of build info in<div class=""><br class=""></div><div class="">docs/ README-macosx.md</div><div class=""><br class=""></div><div class="">in there it says you need minimum Xcode 4.6 and the 10.7 SDK (maybe that’s why macports-clang-3.7 worked for me?)</div><div class=""><br class=""></div><div class="">and a lot more info that I didn’t read fully through.</div><div class=""><br class=""></div><div class="">Ken</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Oct 30, 2016, at 2:28 PM, Ken Cunningham <<a href="mailto:ken.cunningham.webuse@gmail.com" class="">ken.cunningham.webuse@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><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 class=""><br class=""></div><div class="">Dave,</div><div class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class=""><br class=""></div><div class="">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 class=""><br class=""></div><div class=""><div class="">#if (MAC_OS_X_VERSION_MIN_REQUIRED < 1070) && !defined(__LP64__)</div><div class="">    if (show) {</div><div class="">        ShowMenuBar();</div><div class="">    } else {</div><div class="">        HideMenuBar();</div><div class="">    }</div><div class="">#endif</div><div class=""><br class=""></div><div class=""><br class=""></div><div class="">one thing — in the code of libsdl 2.05 it has this:</div><div class=""><br class=""></div><div class=""><div class="">#if MAC_OS_X_VERSION_MIN_REQUIRED < 1060</div><div class=""># 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 class="">Ken</div><div class=""><br class=""></div><div class=""><br class=""></div><br class=""></div></div></blockquote></div><br class=""></div></body></html>