Comipling wxPython3.0.0 fails

Hi folks,

after downloading wxPython3.0.0 I configured ( options below ), compiled and installed wxWidgets to its default location ( /usr/local/ ).

–enable-unicode
–disable-debug_flag
–enable-shared
–disable-compat28
–disable-ribbon
–disable-mediactrl
–disable-aui
–disable-xrc
–disable-webkit
–disable-webview
–disable-gstreamer8
–disable-joystick
–disable-html
–disable-htmlhelp
–disable-gif
–disable-pcx
–disable-tga
–disable-iff
–disable-pnm
–disable-xpm
–disable-richtext
–without-opengl
–disable-stc
–disable-joystick
–disable-svg
–disable-protocols
–disable-sockets
–without-libtiff
–without-regex
–without-expat
–without-zlib
–without-libjpeg
–disable-sound

I know it is a minimal GUI configuration but it works for me.
Afterwards I tried compiling wxPython ( with already installed wx-config ) in above mentioned source package with command:

python2.7 build-wxpython.py --no_config --no_wxbuild

Compiling fails with messages:

WARNING: WXWIN not set in environment. Assuming ‘…’
Preparing CORE…
running build_ext
running build_ext
building ‘core’ extension
gcc -pthread -fno-strict-aliasing -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fPIC -DSWIG_TYPE_TABLE=wxPython_table -DSWIG_PYTHON_OUTPUT_TUPLE -DWXP_USE_THREAD=1 -D_FILE_OFFSET_BITS=64 -DwxDEBUG_LEVEL=0 -DWXUSINGDLL -D__WXGTK_ -Iinclude -Isrc -I/usr/local/lib/wx/include/gtk2-unicode-3.0 -I/usr/local/include/wx-3.0 -I/usr/include/gtk-2.0 -I/usr/lib/x86_64-linux-gnu/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/gdk-pixbuf-2.0 -I/usr/include/pango-1.0 -I/usr/include/gio-unix-2.0/ -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/python2.7 -c src/helpers.cpp -o build/temp.linux-x86_64-2.7/src/helpers.o -pthread -O3 -pthread
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [enabled by default]
In file included from include/wx/wxPython/wxPython_int.h:62:0,
from src/helpers.cpp:17:
/usr/local/include/wx-3.0/wx/htmllbox.h:35:68: error: expected class-name before ‘,’ token
/usr/local/include/wx-3.0/wx/htmllbox.h:37:1: error: expected class-name before ‘{’ token
/usr/local/include/wx-3.0/wx/htmllbox.h:118:48: error: ‘wxHtmlLinkInfo’ does not name a type
/usr/local/include/wx-3.0/wx/htmllbox.h:118:64: error: ISO C++ forbids declaration of ‘link’ with no type [-fpermissive]
/usr/local/include/wx-3.0/wx/htmllbox.h:135:42: error: ‘wxHtmlLinkInfo’ does not name a type
/usr/local/include/wx-3.0/wx/htmllbox.h:135:58: error: ISO C++ forbids declaration of ‘link’ with no type [-fpermissive]
/usr/local/include/wx-3.0/wx/htmllbox.h:136:13: error: ‘wxHtmlOpeningStatus’ does not name a type
/usr/local/include/wx-3.0/wx/htmllbox.h:146:36: error: ‘HTMLCursor’ has not been declared
error: command ‘gcc’ failed with exit status 1
ERROR: failed building wxPython.

Pretty much obvious it must fail since I did not compile wxWidgets with the HTML stuff.
Question is now why wxPython does not use my pre-installed WxWidgets’ setup.h to exclude those parts either like wxWidgets did.
Am I missing something? Any hints are highly appreciated.

Thanks in advance,
Philipp