+ NOTE: It has been discovered that some pre-built distributions of
+ Python are built with options that can cause incompatibilities
+ between wxPython and wxGTK. Typically these are things like large
+ file support on the platforms that have it. This causes some basic
+ types, like off_t, to be typedef'd differently causing the C++
+ method signatures to be incompatible and giving link errors. The
+ way to fix this is to activate these same settings in the wxGTK
+ build, usually by looking at the flags and options used in
+ compiling wxPython that are different from the options used on
+ wxGTK compiles. For example, on SuSE doing the following before
+ running wxGTK's configure seems to take care of it:
+
+ export CFLAGS="-D_FILE_OFFSET_BITS=64 -DHAVE_LARGEFILE_SUPPORT"
+ export CXXFLAGS=$CFLAGS
+
+