+--with-gtk and --with-gnomeprint.</p>
+<p>Notice that above I used a prefix option of "/opt/wx/2.8". You can
+use whatever path you want, such as a path in your HOME dir or even
+one of the standard prefix paths such as /usr or /usr/local if you
+like, but using /opt this way lets me easily have multiple versions
+and ports of wxWidgets "installed" and makes it easy to switch
+between them, without impacting any versions of wxWidgets that may
+have been installed via an RPM or whatever. For the rest of the
+steps below be sure to also substitute "/opt/wx/2.8" with whatever
+prefix you choose for your build.</p>
+<p><strong>NOTE</strong>: 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:</p>
+<pre class="literal-block">
+--enable-monolithic \
+</pre>
+<p>By default GTK 2.x will be used for the build. If you would rather
+use GTK 1.2.x for some reason then you can force configure to use
+it by changing the --with-gtk flag to specify it like this:</p>
+<pre class="literal-block">
+--with-gtk=1 \
+</pre>
+<p>To make the wxWidgets build be unicode enabled (strongly
+recommended unless you are building with GTK1) then add the
+following flag. 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.:</p>