Glade C++ compiling error

From: Wayne (mtlguardian_at_yahoo.com)
Date: 10/29/04


Date: Fri, 29 Oct 2004 00:22:35 -0400

Hi everyone

I've searched the net for answers before coming here, but I wasn't able
to find an answer. I was hoping one of you brainiacs could help me.

I get this message when I try and compile a C++ app, C works great. I
know I have all the libraries. I tried to do what it says below but I
still get the same error message.

> Error running glade-- to generate the C++ source code.
> Check that you have glade-- installed and that it is in your PATH.
> Then try running 'glade-- <project_file.glade>' in a terminal.

I've tried to edit the /etc/profile and ad the path but I'm not sure
what or where to ad it..here's what the profile looks like:
-----------------------------------------------------------
# /etc/profile
 

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc
 

pathmunge () {
         if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
            if [ "$2" = "after" ] ; then
               PATH=$PATH:$1
            else
               PATH=$1:$PATH
            fi
         fi
}
 

# Path manipulation
if [ `id -u` = 0 ]; then
         pathmunge /sbin
         pathmunge /usr/sbin
         pathmunge /usr/local/sbin
fi
 

pathmunge /usr/X11R6/bin after
 

unset pathmunge
 

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1
 

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"
 

HOSTNAME=`/bin/hostname`
HISTSIZE=1000
 

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
     INPUTRC=/etc/inputrc
fi
 

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC
 

for i in /etc/profile.d/*.sh ; do
--------------------------------------------------------
Any ideas ?