Qt-interest Archive, April 2007
install qt-x11-opensouce-src-4.2.3 on ubuntu
Message 1 in thread
hi, all
i want to install qt-x11-opensouce-src-4.2.3 onubuntu linux. but because
ubuntu's default desktop env is GNOME , so when i try to configure it in a
term , i am encounted an error like this:
>>cd /qt-x11-opensouce-src-4.2.3
>>./configure
This is the Qt/X11 Open Source Edition.
You don't seem to have 'make' or 'gmake' in your PATH.
Cannot proceed.
anyone have installed qt on ubuntu linux? any suggestions?
thank you
regards
fengli zhang
Message 2 in thread
Hi,
> i want to install qt-x11-opensouce-src-4.2.3 onubuntu linux. but because
> ubuntu's default desktop env is GNOME , so when i try to configure it in
> a term , i am encounted an error like this:
> [...]
> You don't seem to have 'make' or 'gmake' in your PATH.
> Cannot proceed.
That's not because the default desktop environment is GNOME.
That's because you're lacking a development environment, you need at
least GNU make (look for a make package) and compilers.
Note that you may install pre-compiled packages of Qt 4, they're
available for Ubuntu. You will need a development environment to build
your own programs though.
--
[ signature omitted ]
Message 3 in thread
hello,
i have follow your advice and install build-essential through apt-get.
then "./configure" works well. but after that, when i "make " it errors
take place once again, like this:
In file included from ../../include/QtGui/private/qt_x11_p.h:1,
from kernel/qapplication.cpp:55:
../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:50:22: error:
X11/Xlib.h: No such file or directory
../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:55:23: error:
X11/Xutil.h: No such file or directory
../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:56:21: error:
X11/Xos.h: No such file or directory
../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:63:23: error:
X11/Xatom.h: No such file or directory
...
i guess , that maybe because i doesn't have x11 include and lib, yes or not
? maybe the gnome desktop evn does't have x11 installed. to be honest, i am
not su
2007/4/6, Dimitri <dimitri@xxxxxxxxxxxxx>:
>
> Hi,
>
> > i want to install qt-x11-opensouce-src-4.2.3 onubuntu linux. but because
> > ubuntu's default desktop env is GNOME , so when i try to configure it in
> > a term , i am encounted an error like this:
> > [...]
> > You don't seem to have 'make' or 'gmake' in your PATH.
> > Cannot proceed.
>
> That's not because the default desktop environment is GNOME.
> That's because you're lacking a development environment, you need at
> least GNU make (look for a make package) and compilers.
>
> Note that you may install pre-compiled packages of Qt 4, they're
> available for Ubuntu. You will need a development environment to build
> your own programs though.
>
> --
> Dimitri
>
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
> "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
>
>
Message 4 in thread
have a look at
http://www.clivecooper.co.uk/tutorial/index.html
pretty good tutorial for installing Qt on Ubuntu ... hope its useful
Good Luck !
Ged
Quoting ÕÅ·ïÀö <zhangfenglisdu@xxxxxxxxx>:
> hello,
> i have follow your advice and install build-essential through apt-get.
> then "./configure" works well. but after that, when i "make " it errors
> take place once again, like this:
>
> In file included from ../../include/QtGui/private/qt_x11_p.h:1,
> from kernel/qapplication.cpp:55:
> ../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:50:22:
> error:
> X11/Xlib.h: No such file or directory
> ../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:55:23:
> error:
> X11/Xutil.h: No such file or directory
> ../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:56:21:
> error:
> X11/Xos.h: No such file or directory
> ../../include/QtGui/private/../../../src/gui/kernel/qt_x11_p.h:63:23:
> error:
> X11/Xatom.h: No such file or directory
> ...
>
> i guess , that maybe because i doesn't have x11 include and lib, yes or not
> ? maybe the gnome desktop evn does't have x11 installed. to be honest, i
> am
> not su
>
>
> 2007/4/6, Dimitri <dimitri@xxxxxxxxxxxxx>:
> >
> > Hi,
> >
> > > i want to install qt-x11-opensouce-src-4.2.3 onubuntu linux. but
> because
> > > ubuntu's default desktop env is GNOME , so when i try to configure it
> in
> > > a term , i am encounted an error like this:
> > > [...]
> > > You don't seem to have 'make' or 'gmake' in your PATH.
> > > Cannot proceed.
> >
> > That's not because the default desktop environment is GNOME.
> > That's because you're lacking a development environment, you need at
> > least GNU make (look for a make package) and compilers.
> >
> > Note that you may install pre-compiled packages of Qt 4, they're
> > available for Ubuntu. You will need a development environment to build
> > your own programs though.
> >
> > --
> > Dimitri
> >
> > --
> > To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
> > "unsubscribe" in the subject or the body.
> > List archive and information: http://lists.trolltech.com/qt-interest/
> >
> >
>
--
[ signature omitted ]
Message 5 in thread
On 4/5/07, 张凤丽 <zhangfenglisdu@xxxxxxxxx> wrote:
> hi, all
> i want to install qt-x11-opensouce-src-4.2.3 onubuntu linux. but because
> ubuntu's default desktop env is GNOME , so when i try to configure it in a
> term , i am encounted an error like this:
>
> >>cd /qt- x11-opensouce-src-4.2.3
> >>./configure
> This is the Qt/X11 Open Source Edition.
>
> You don't seem to have 'make' or 'gmake' in your PATH.
> Cannot proceed.
sudo apt-get install build-essential
--
[ signature omitted ]