ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] Непонятки с компиляцией Qt и  kdeveloper
@ 2004-10-15 12:08 Beshkov Andrew
  2004-10-15 12:13 ` Sergey Vlasov
  2004-10-15 12:30 ` Andrei Bulava
  0 siblings, 2 replies; 10+ messages in thread
From: Beshkov Andrew @ 2004-10-15 12:08 UTC (permalink / raw)
  To: sisyphus

Добрый день,

На машине с Alt Compact 2.3 обновленном до сизифа решил на досуге
заняться разработкой нужного софта на основе kdeveloper и qt. Установил:

$ rpm -qa | grep qt
libqt3-qsa-3.3.3-alt5
qt3-designer-3.3.3-alt5
licq-qt-1.3.0-alt2
pinentry-qt-0.7.1-alt1
libqt3-qsa-devel-3.3.3-alt5
kdevelop-for-qt-3.0.4-alt1
libqt2-2.3.1-alt12
qtvision-0.1-alt2.alpha2
qtradio-0.8.1-alt1
libqt3-postgresql-3.3.3-alt5
libqt2-devel-2.3.1-alt12
gtk-engines-qtpixmap-0.28-alt1
qt2-doc-2.3.1-alt12
libqt2-Xt-2.3.1-alt12
libqt3-odbc-3.3.3-alt5
libarts-qtmcop-1.3.1-alt1
libqtvision-0.1-alt2.alpha2
libqt3-devel-3.3.3-alt5
libqtvision-devel-0.1-alt2.alpha2
libqt1-qimgio-1.45-alt5
libqt3-mysql-3.3.3-alt5
qt3-doc-3.3.3-alt5
libarts-qtmcop-devel-1.3.1-alt1
unixODBC-gui-qt-2.2.8-alt3
libqt1-1.45-alt5
libqt2-devel-static-2.3.1-alt12
qt2-designer-2.3.1-alt12
libqt1-devel-1.45-alt5
libqt3-3.3.3-alt5

Вписал в .bash_profile

QTDIR=/usr/lib/qt3
LD_LIBRARY_PATH=/usr/lib/qt3/lib
[skip]
export BASH_ENV PATH QTDIR LD_LIBRARY_PATH

Затем на всякий случай внес в ./etc/ld.so.conf такую
строчку: /usr/lib/qt3/lib и выполнил ldconfig

Кстати подозрительно что ldconfig ругается
ldconfig: /usr/lib/qt3/lib/libqscintilla.so.5 is not a symbolic link

В кdeveloper cоздаю проект по шаблону "Simple Designer Based
Application" состоящий из одного диалога и начинаю сборку проекта. На
этапе ./configure получаю следующую ошибку:

checking for Qt... configure: error: Qt (>= Qt 3.0) (library qt-mt) not
found. Please check your installation!
For more details about this problem, look at the end of config.log.
Make sure that you have compiled Qt with thread support!

Пытался отключить использование мультипотоковой библиотеки qt-mt
ключами ./configure  --disable-mt и даже указывал вручную где находится
библиотека qt3 c помощью  --with-qt-libraries=/usr/lib/qt3/lib/, но все
без толку. 

в config.log нашел следующие ошибки

configure:
29078: /usr/lib/qt3/include//qstyle.h                                                                                                         
taking
that                                                                                                                                              
tried
NO                                                                                                                                                 
configure:29193: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor
-Wno-long-long -Wundef -Wall -W -Wpointer-arith -Wwrite-strings -ansi -
D_XOPEN_SO
URCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -O2 -
fno-exceptions -fno-check-new -fno-common -I/usr/lib/qt3/include/ -
I/usr/X11R6/in
clude  -DQT_THREAD_SUPPORT  -D_REENTRANT  -L/usr/lib/qt3/lib/ -
L/usr/X11R6/lib   conftest.cc  -lqt-mt -lpng -lz -lm -ljpeg -ldl  -lXext
-lX11 -lSM -lICE 
 -lpthread
1>&5                                                                                                                                          
/home/tigrisha/tmp/cckhNn0Z.o(.text+0x8): In function
`main':                                                                                            
: undefined reference to `QString::
null'                                                                                                                 
/home/tigrisha/tmp/cckhNn0Z.o(.text+0xd): In function
`main':                                                                                            
: undefined reference to `QStyleFactory::create(QString const
&)'                                                                                        
/home/tigrisha/tmp/cckhNn0Z.o(.text+0x1a): In function
`main':                                                                                           
: undefined reference to `QCursor::QCursor
(int)'                                                                                                         
/home/tigrisha/tmp/cckhNn0Z.o(.text+0x24): In function
`main':                                                                                           
: undefined reference to `QCursor::~QCursor
(void)'                                                                                                       
collect2: ld returned 1 exit
status                                                                                                                      
configure:29196: $? =
1                                                                                                                                  
configure: failed program
was:                                                                                                                           
#include
"confdefs.h"                                                                                                                                    
#include
<qglobal.h>                                                                                                                                     
#include
<qapplication.h>                                                                                                                                
#include
<qcursor.h>                                                                                                                                     
#include
<qstylefactory.h>                                                                                                                               
#include
<private/qucomextra_p.h>                                                                                                                        
#if ! (QT_VERSION >=
300)                                                                                                                                
#error
1                                                                                                                                                 
#endif


Бьюсь уже несколько дней. :( 

Пожалуйста подскажите что еще нужно поправить чтобы все заработало. 






^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2004-10-18 13:25 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-15 12:08 [sisyphus] Непонятки с компиляцией Qt и kdeveloper Beshkov Andrew
2004-10-15 12:13 ` Sergey Vlasov
2004-10-15 12:53   ` Beshkov Andrew
2004-10-15 13:00     ` Led
2004-10-15 13:14     ` Epiphanov Sergei
2004-10-16 10:15     ` [sisyphus] " Michael Shigorin
2004-10-18 10:56     ` [sisyphus] " Andrey Rahmatullin
2004-10-18 12:39       ` Beshkov Andrew
2004-10-18 13:25         ` Andrey Rahmatullin
2004-10-15 12:30 ` Andrei Bulava

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git