]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/setup.py
oops, forgot to commit the header for the notebook fix
[wxWidgets.git] / wxPython / setup.py
index 4a9e0fa8d2f91ff3ac0a7367402a3161aa52cc57..ed41eb4ba143a51f886745cf5405d65a242e34b9 100755 (executable)
@@ -216,7 +216,7 @@ if os.name == 'nt':
 
 
     if bcpp_compiling:  # overwrite it
-        cflags = ['-5', '-VF',  ### To supplort MSVC spurious semicolons in the class scope
+        cflags = ['-5', '-VF',  ### To support MSVC spurious semicolons in the class scope
                   ### else, all semicolons at the end of all DECLARE_...CALLBACK... macros must be eliminated
                   '-Hc', '-H=' + opj(WXDIR, '\src\msw\wx32.csm'),
                   '@' + opj(WXDIR, '\src\msw\wxwin32.cfg')
@@ -233,7 +233,7 @@ if os.name == 'nt':
 
 
 
-elif os.name == 'posix' and sys.platform == "darwin1":
+elif os.name == 'posix' and sys.platform[:6] == "darwin":
     # Flags and such for a Darwin (Max OS X) build of Python
 
     WXDIR = '..'              # assumes IN_CVS_TREE
@@ -773,8 +773,8 @@ if not GL_ONLY and BUILD_GIZMOS:
 
     ext = Extension('gizmosc', [
                                 '%s/dynamicsash.cpp' % GIZMOLOC,
-                                #'%s/editlbox.cpp' % GIZMOLOC,
-                                #'%s/multicell.cpp' % GIZMOLOC,
+                                '%s/editlbox.cpp' % GIZMOLOC,
+                                '%s/multicell.cpp' % GIZMOLOC,
                                 '%s/splittree.cpp' % GIZMOLOC,
                              ] + swig_sources,