+ --with-gtk.
+
+ **NOTE**: Due to a recent change there is currently a dependency
+ problem in the multilib builds of wxWidgets on OSX, so I have
+ switched to using a monolithic build. That means that all of the
+ core wxWidgets code is placed in in one shared library instead of
+ several. wxPython can be used with either mode, so use whatever
+ suits you on Linux and etc. but use monolithic on OSX. To switch
+ to the monolithic build of wxWidgets just add this configure flag::
+
+ --enable-monolithic \
+
+ By default GTK2 will be selected if its development pacakge is
+ installed on your build system. To force the use of GTK 1.2.x
+ instead add this flag::
+
+ --disable-gtk2 \
+
+ To make the wxWidgets build be unicode enabled (strongly
+ recommended if you are building with GTK2) then add the following.
+ When wxPython is unicode enabled then all strings that are passed
+ to wx functions and methods will first be converted to unicode
+ objects, and any 'strings' returned from wx functions and methods
+ will actually be unicode objects.::