problem installing PyQt for eric3

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Lupe

    problem installing PyQt for eric3

    I'm trying to install eric3 and PyQt is an intermediate step.

    I got the following output:

    rm -f qttest.o
    rm -f *~ core *.core
    g++ -c -pipe -w -O2 -fomit-frame-pointer -pipe -march=i586 -mcpu=pentiumpro
    -D_REENTRANT -DSIP_MAKE_MODUL E_DLL -DQT_NO_DEBUG -DQT_THREAD_SUPP ORT
    -I/usr/lib/qt3/mkspecs/default -I. -I. -I/usr/local/include/python2.3
    -I/usr/lib/qt3/include -I/usr/X11R6/include -I/usr/X11R6/include -o
    qttest.o qttest.cpp
    In file included from qttest.cpp:1:
    /usr/lib/qt3/include/qgl.h:78:21: GL/glu.h: No such file or directory
    make: ** [qttest.o] Erro 1
    *************** *************** *************** *************** *************** ***
    The qtgl module will not be built.
    *************** *************** *************** *************** *************** ***

    can anyone translate this to english. Is qtgl important?
    I have a file named qgl.h in the /include directory, so what was wrong?

    thanx in advance
  • Lawrence Oluyede

    #2
    Re: problem installing PyQt for eric3

    Lupe <lupe@netvisao. pt> writes:
    [color=blue]
    > In file included from qttest.cpp:1: /usr/lib/qt3/include/qgl.h:78:21:
    > GL/glu.h: No such file or directory[/color]

    It doesn't find GL utility library's header file.
    [color=blue]
    > make: ** [qttest.o] Erro 1
    > *************** *************** *************** *************** **
    > The qtgl
    > module will not be built.
    > *************** *************** *************** *************** **[/color]

    It means that you won't have support for OpenGL in QT
    [color=blue]
    >
    > can anyone translate this to english. Is qtgl important?[/color]

    No, if you don't need OpenGL in PyQT. Eric3 doesn't use that modules
    [color=blue]
    > I have a file named qgl.h in the /include directory, so what was wrong?[/color]

    qgl.h is there. the compiler doesn't find the glu.h header.

    --
    Lawrence "Rhymes" Oluyede
    Blogger ist ein Veröffentlichungs-Tool von Google, mit dem du ganz einfach deine Gedanken der Welt mitteilen kannst. Mit Blogger kannst du problemlos Texte, Fotos und Videos in deinem persönlichen Blog oder deinem Team-Blog veröffentlichen.

    rhymes@NOSPAMmy self.com

    Comment

    • Lupe

      #3
      Re: problem installing PyQt for eric3

      thanks a lot.

      how could I install support for OpenGL in QT?

      Is it an add-in for QT?

      Comment

      • Lawrence Oluyede

        #4
        Re: problem installing PyQt for eric3

        Lupe <lupe@netvisao. pt> writes:
        [color=blue]
        > how could I install support for OpenGL in QT?[/color]

        You need xlibmesa glu package i think

        --
        Lawrence "Rhymes" Oluyede
        Blogger ist ein Veröffentlichungs-Tool von Google, mit dem du ganz einfach deine Gedanken der Welt mitteilen kannst. Mit Blogger kannst du problemlos Texte, Fotos und Videos in deinem persönlichen Blog oder deinem Team-Blog veröffentlichen.

        rhymes@NOSPAMmy self.com

        Comment

        Working...