[wxPython] Re: wxPython-2.3.0 build failing

1) glib-1.2.10
2) gtk+-1.2.10
3) wxGTK-2.2.7
4) Python-2.0
5) Is there something else required before the wxPython-2.3.0 build ???

wxGTK 2.3.0 (or perhaps .1)

Thanks for the suggestion Robin, but wxGTK-2.3.1 also fails to build

···

================================================================
c++ -c -MMD -D__WXGTK__ -DGTK_NO_CHECK_CASTS -O2 -I. -I./include -I./include -I./src/zl
ib -I./src/png -I./src/jpeg -I./src/tiff -I/usr/local/include/gtk-1.2 -I/usr/local/include
/glib-1.2 -I/usr/local/lib/glib/include -I/opt/local/stow/X11R6.5.1/include -Wall -I/opt
/local/stow/X11R6.5.1/include -isystem /usr/openwin/include "-DwxINSTALL_PREFIX=\"/usr/loc
al\"" -fPIC -o accel.o ./src/gtk/accel.cpp
In file included from include/wx/defs.h:56,
                 from include/wx/gtk/accel.h:17,
                 from include/wx/accel.h:9,
                 from ./src/gtk/accel.cpp:14:
include/wx/setup.h:55: wx/gtk/setup.h: No such file or directory
make: *** [accel.o] Error 1

I guess wxGTK-2.3.1 no longer builds on top of glib-1.2.10 and gtk+-1.2.10

--
regards School of Computer Science and Electrical Engineering,
Clary Harridge University of Queensland, QLD, Australia, 4072
      Phone: +61-7-3365-3636 Fax: +61-7-3365-2909
      INTERNET: clary@csee.uq.edu.au

In file included from include/wx/defs.h:56,
                 from include/wx/gtk/accel.h:17,
                 from include/wx/accel.h:9,
                 from ./src/gtk/accel.cpp:14:
include/wx/setup.h:55: wx/gtk/setup.h: No such file or directory
make: *** [accel.o] Error 1

I guess wxGTK-2.3.1 no longer builds on top of glib-1.2.10 and gtk+-1.2.10

I don't see how the error message above has anything to do with the version
of gtk, it can't find a file that was supposed to have been generated by
configure. Try this, instead of running configure and make in the wx
directory do it in a separate build dir. That will let you see more clearly
what is generated by configure and hopefully be able to track down problems.
For example:

    cd /path/to/wxWindows
    mkdir build
    cd build
    ../configure --with-gtk
    make
    make install

The setup.h file mentioned above should be placed in
build/lib/wx/gtk/setup.h

If it still doesn't work for you then you should ask about it on the
wx-users list.

···

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!