Hello All
I'm having a bit of trouble compiling under hpux 11 and was hoping someone might have some insight into what would be causing my problem. I am compiling with gcc 3.3.2 and using gmake for the compile. Here is a snippet of the output where it starts having problems:
g++ -DHAVE_CONFIG_H -DG_LOG_DOMAIN=\"glibmm\" -Dglibmm_COMPILATION -DG_DISABLE_DEPRECATED -I../../glib -I../../glib -I../../pango -I../../pango -I../../atk -I../../atk -I../../gdk -I../../gdk -I../../gtk -I../../gtk -I/usr/local/include/sigc++-2.0 -I/usr/local/lib/sigc++-2.0/include -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -D_REENTRANT -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -g -O2 -MT spawn.lo -MD -MP -MF .deps/spawn.Tpo -c spawn.cc -fPIC -DPIC -o .libs/spawn.o
In file included from spawn.cc:3:
../../glib/glibmm/spawn.h:39: error: syntax error before `;' token
../../glib/glibmm/spawn.h:144: error: type specifier omitted for parameter `Pid
'
../../glib/glibmm/spawn.h:144: error: parse error before `*' token
../../glib/glibmm/spawn.h:153: error: type specifier omitted for parameter `Pid
'
../../glib/glibmm/spawn.h:153: error: parse error before `*' token
../../glib/glibmm/spawn.h:163: error: type specifier omitted for parameter `Pid
'
../../glib/glibmm/spawn.h:163: error: parse error before `*' token
../../glib/glibmm/spawn.h:169: error: type specifier omitted for parameter `Pid
'
../../glib/glibmm/spawn.h:169: error: parse error before `*' token
../../glib/glibmm/spawn.h:195: error: `Pid' was not declared in this scope
../../glib/glibmm/spawn.h:195: error: parse error before `)' token
spawn.cc:74: error: type specifier omitted for parameter `Pid'
spawn.cc:74: error: parse error before `*' token
spawn.cc: In function `void Glib::spawn_async_with_pipes(...)':
spawn.cc:79: error: `child_setup' undeclared (first use this function)
spawn.cc:79: error: (Each undeclared identifier is reported only once for each
function it appears in.)
spawn.cc:84: error: `working_directory' undeclared (first use this function)
spawn.cc:85: error: `argv' undeclared (first use this function)
spawn.cc:86: error: `envp' undeclared (first use this function)
It goes on from there and errors out with more of the same. Any suggestions?
Thanks
Allen Byington