You are not logged in.
Hello!
I tried to compilie kdissert from AUR but I get the following error
echo '#include "docsettings.moc"' >> src/kdissert/gui/docsettings.cpp
/opt/qt/bin/moc -o src/kdissert/gui/docsettings.moc src/kdissert/gui/docsettings.h
/opt/qt/bin/uic: error while loading shared libraries: libqt-mt.so.3: cannot open shared object file: No such file or directory
scons: *** [src/kdissert/gui/docsettings.h] Error 127
scons: building terminated because of errors.
==> ERROR: Build Failed. Aborting...
The PKBUILD is:
pkgname=kdissert
pkgver=0.9.0.23042005
pkgrel=1
pkgdesc="A KDE mindmapping tool"
url="http://www.freehackers.org/~tnagy/kdissert/"
license="gpl"
depends=('kdelibs' 'xorg')
makedepends=('scons')
source=(http://www.freehackers.org/~tnagy/$pkgname/$pkgname-$pkgver.tar.bz2)
md5sums=('3e7556ed22e03837ccaef3a6dabf48b8')
build() {
mkdir -p $startdir/pkg/opt/kde/
cd $startdir/src/$pkgname-$pkgver
scons configure prefix=$startdir/pkg/opt/kde/
scons || return 1
scons install
}
I'll be gratious for any help.
Offline
do you have "libqt-mt.so.3" anywhere - kdissert is looking for it and can't find it (try "ls /usr/lib/libqt-mt*" and see wht comes up)
Offline
Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.
:: / my web presence
Offline
Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.
Yeah, weird. It always happens. I guess my brain generates some soft of radiation responsible for missing sybolic links.
I solved the problem by doing:
# ln -s /opt/qt/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3
Offline
IceRAM wrote:Hmm.. that's weird.
I've compiled kdissert from AUR with no problem.Yeah, weird. It always happens. I guess my brain generates some soft of radiation responsible for missing sybolic links.
I solved the problem by doing:
# ln -s /opt/qt/lib/libqt-mt.so.3 /usr/lib/libqt-mt.so.3
Check your /etc/ld.so.conf file to see if it has the line /opt/qt/lib
If not, add the line and run ldconfig. This should solve your problem (no link needed).
Offline