From: Jonathan B. <jbr...@ea...> - 2004-05-02 03:08:08
|
On Sat, 2004-05-01 at 13:58, Bruno Fletcher wrote: > Hi there, > I am having troubles installing Vpython. I am using Suse - 9.0, and followed > all the special steps required to install Vpython under this distro that are > described in Vpython's installation web page > (http://vpython.org/linux_download.html) . Everythng seems to work fine > until I run make command and get the following error: > > In file included from arrow.cpp:2: > xgl.h:10:29: gtkgl/gtkglarea.h: No such file or directory > > Does anyone know what is going on? > > Thanks, > Bruno IIRC, SUSE 9 places all of the GNOME stuff in /opt/gnome (or something very similar). But, g++ is not instructed to look into /opt/gnome/include for header files. You should set the CPPFLAGS environment variable to "-I/opt/gnome/include" and re-run configure and make. HTH, -Jonathan Brandmeyer |