python.noob 0 Light Poster

Hi friends,
I'm using mandriva 2009 spring. I have a problem in compiling wxwidgets program in anjuta. I've done the things as said in the tutorial file->new->project->c++ tab->wxwidgets->project name,author->forward->folder name etc.->apply. It generated make files and all.It has a program to show a window as well in main.cc.

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif
#include <wx/wx.h>

class MyApp : public wxApp
{
  public:
    virtual bool OnInit();
};

IMPLEMENT_APP(MyApp)

bool MyApp::OnInit()
{
  wxFrame *frame = new wxFrame((wxFrame *)NULL, -1, wxT("Hello World"),
                               wxPoint(50, 50), wxSize(450, 340));

  frame->Show(TRUE);
  return TRUE;
}

. When i compile and run in konsole it runs perfectly. when i compile it from anjuta build->compile or f9 the window appears http://www.daniweb.com/forums/attachment.php?attachmentid=12502&stc=1&d=1257757432
When i compiled without any configure options the following error appears
**Error**: You must have `intltool' installed.
You can get it from:
ftp://ftp.gnome.org/pub/GNOME/
Completed unsuccessfully
may i know how to solve this problem?

Request: Meanwhile if u have any "detailed tutorials" for configuring with anjuta or kdevelop plz. send the link. I'm tired with the tutorials given in their sites. Nothing is clear enough to be understood by a newbie.. Bcoz. i've tried both and it failed miserably.. Looking for your help.. If u r suggesting any other good IDE for wxwidgets i'm ready to go with it too...