]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/config.py
Add wxWS_EX_CONTEXTHELP, leaving wxFRAME_EX_CONTEXTHELP and
[wxWidgets.git] / wxPython / config.py
index b212052218909374ce22ec5347eecc879b5621f1..d52eb5961bacc06ebff874045a3260796a89558c 100644 (file)
@@ -585,7 +585,11 @@ def adjustLFLAGS(lflags, libdirs, libs):
         else:
             newLFLAGS.append(flag)
 
-    return newLFLAGS
+    # remove any flags for universal binaries, we'll get those from
+    # distutils instead
+    return [flag for flag in newLFLAGS
+            if flag not in ['-isysroot', '-arch', 'ppc', 'i386'] and
+            not flag.startswith('/Developer') ]