QT=3.3
KDE=3.3.2
gcc=3.4.1
I get the following error message during build:
"/usr/bin/ld: cannot find -lkfile".
This obviously mean that kconfigure tries building against libkfile.so.3. This lib, however, is no longer part of kdelibs (not since kde-2.2.2, I believe). any suggestions
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
kfile gets handled by other kde libraries now. The problem usually happens when there is a difference between the automake versions of the development environment and the automake version of the build environment.
Try replacing admin directory and rebuilding makefile.common. Something like:
cd /path/to/kconfigure/directory
rm -rf admin/
cp -R /usr/share/apps/kapptemplate/admin
make -f admin/Makfile.common
./configure && make && make install
your kapptemplate directory is part of the kdesdk package... its location will depend on your KDE install.
Bobby
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
QT=3.3
KDE=3.3.2
gcc=3.4.1
I get the following error message during build:
"/usr/bin/ld: cannot find -lkfile".
This obviously mean that kconfigure tries building against libkfile.so.3. This lib, however, is no longer part of kdelibs (not since kde-2.2.2, I believe). any suggestions
kfile gets handled by other kde libraries now. The problem usually happens when there is a difference between the automake versions of the development environment and the automake version of the build environment.
Try replacing admin directory and rebuilding makefile.common. Something like:
cd /path/to/kconfigure/directory
rm -rf admin/
cp -R /usr/share/apps/kapptemplate/admin
make -f admin/Makfile.common
./configure && make && make install
your kapptemplate directory is part of the kdesdk package... its location will depend on your KDE install.
Bobby