On Mon, 2006-08-14 at 09:13 +0200, Gianluca Sforna wrote:
> >Which platform is best
> > suited for the compilation (debian may be ..)..so that I can get it compiled
> > as soon as possible so that I can start working on the code further.
> Well, I am biased on this... If you can work on Linux (any kind) I
> guess it's better because most dependencies are conveniently packed
> and available for installation w/o compiling.

Unless you have Gentoo which _does_ compile, but does it automatic.

I'm fighting with compilation of WengoPhone for some time now. And I
can't do it. I'm using:

gcc (GCC) 3.4.6 (Gentoo 3.4.6-r1, ssp-3.4.5-1.0, pie-8.7.9)
scons-0.96.1
qt-4.1.2
boost-1.33.1

And all the others (alsa, openssl, glib, speex, gnutls).

I compile it with following commands:

scons -c
QTDIR=/usr QTLIBDIR=/usr/lib/qt4 QTINCLUDEDIR=/usr/include/qt4 nice scons 
qtwengophone

(I use nice, because I want it to be so ;-) )

Every revision I try to compile it, different errors pop out. Last ones
are:

file wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp

wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp:24:23: QtGui/QtGUi: No 
such file or directory
wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp: In constructor 
`QtChatEditWidget::QtChatEditWidget(QWidget*)':
wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp:31: error: `class 
QFrame::Shape' is not a class or namespace
(and so on, I think the first line has it)

is "QtGUi" a typo? Should it be "QtGui"?

I'm using rev. 7177.

OK, I replaced QtGUi with QtGui in
wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp.

Index: wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp
===================================================================
--- wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp    (revision 7177)
+++ wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp    (working copy)
@@ -21,7 +21,7 @@

 #include <util/Logger.h>

-#include <QtGui/QtGUi>
+#include <QtGui/QtGui>

 #include <stdio.h>


Now I get:

wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp: In constructor 
`QtChatEditWidget::QtChatEditWidget(QWidget*)':
wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp:31: error: `class 
QFrame::Shape' is not a class or namespace
wengophone/src/presentation/qt/chat/QtChatEditWidget.cpp:31: error: `class 
QFrame::Shadow' is not a class or namespace
scons: *** [debug/wengophone/src/presentation/qt/chat/QtChatEditWidget.o] Error 
1

Googling for the error message didn't yield any results. I'm stuck.
Help!



-- 
Maciej Bliziński <[EMAIL PROTECTED]>
http://automatthias.wordpress.com

_______________________________________________
Wengophone-devel mailing list
Wengophone-devel@lists.openwengo.com
http://dev.openwengo.com/mailman/listinfo/wengophone-devel

Reply via email to