diff --git a/buildtools/build_wxwidgets.py b/buildtools/build_wxwidgets.py index ae87d5c7..fe6defe1 100644 --- a/buildtools/build_wxwidgets.py +++ b/buildtools/build_wxwidgets.py @@ -309,7 +309,11 @@ def main(wxDir, args): for major, minor in reversed(possibles): sdk = os.path.join(xcodePath, "SDKs/MacOSX{}.{}.sdk".format(major, minor)) if os.path.exists(sdk): - #wxpy_configure_opts.append("--with-macosx-sdk=%s" % sdk) + # Although we've found a SDK, we're not actually using + # it at the moment. The builds seem to work better if we + # let the compiler use whatever it considers to be the + # default. + # wxpy_configure_opts.append("--with-macosx-sdk=%s" % sdk) universalCapable = major >= 11 SDK = sdk break @@ -328,7 +332,7 @@ def main(wxDir, args): arch = options.mac_universal_binary configure_opts.append("--enable-universal_binary=%s" % arch) - print("SDK Path: {}".format(SDK)) + # print("SDK Path: {}".format(SDK)) print("Universal Capable: {}".format(universalCapable)) print("Architectures: {}".format(arch)) diff --git a/wx/svg/_nanosvg.c b/wx/svg/_nanosvg.c index 3d9e27ec..fd4a5a67 100644 --- a/wx/svg/_nanosvg.c +++ b/wx/svg/_nanosvg.c @@ -21780,7 +21780,7 @@ static int __Pyx_check_binary_version(void) { if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) { char message[200]; PyOS_snprintf(message, sizeof(message), - "compile time version %s of module '%.100s' " + "compiletime version %s of module '%.100s' " "does not match runtime version %s", ctversion, __Pyx_MODULE_NAME, rtversion); return PyErr_WarnEx(NULL, message, 1);