I was wondering if anyone has posted debs for the latest beta: 0.9.3-beta2 and can post the link here
U/7.10 comes with digikam 0.9.2 which for some reason crashes when I exit; it also can't figure out image dimensions/bit depth of UFRAW-generated png's which makes me doubt if the filters I use are being applied properly; anyways, hopefully this is no longer an issue in the latest beta. TIA |
Hi,
On Tue, 13 Nov 2007, Ari El wrote: > > I was wondering if anyone has posted debs for the latest beta: 0.9.3-beta2 > and can post the link here > > U/7.10 comes with digikam 0.9.2 which for some reason crashes when I exit; To investigate this we would need a full debug output. I don't whether there are any pre-built packages which include the debugging information to obtain a proper backtrace. Therefore most likely you would have to build from source, i.e. using 0.9.3-beta2 (or even better from svn). This means that you will have to recompile digikam, libkexiv, exiv2, ... and so with debugging enabled. See http://www.digikam.org/?q=contrib under "If you are experiencing crashes with digiKam" and for installation instructions "http://www.digikam.org/?q=download/svn" under "Install digiKam in your Home Directory". > it also can't figure out image dimensions/bit depth of UFRAW-generated png's > which makes me doubt if the filters I use are being applied properly; > anyways, hopefully this is no longer an issue in the latest beta. Hard to tell without an example ;-). It might very well be that this is just not included in the UFRAW-generated png. You could check by running exiv2 on that file and see if that information is there. (BTW: which version of ufraw are you using?) If it is there, could you please file an entry in the bug-tracker, and attach (a not too large) ufraw generated png so that we can have a look. Thanks, Arnd _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Trying to build the latest SVN I *almost* succeeded. I Installed all build-deps (apt-get build-dep digikam), and ./configure/make/make install worked fin for the "libs" folder. Now when I try the same in the "graphics" folder, ./configure succeeds but "make" fails and I have no clue what to do about it, this is the output: make[4]: Entering directory `/home/ari/Desktop/Builds/digikam/graphics/digikam/libs/dmetadata' /bin/bash ../../../libtool --silent --tag=CXX --mode=compile g++ -DHAVE_CONFIG_H -I. -I../../.. -I../../../digikam/libs/dimg -I../../../digikam/digikam -I/usr/include/kde -I/usr/share/qt3/include -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_CLEAN_NAMESPACE -MT dmetadata.lo -MD -MP -MF .deps/dmetadata.Tpo -c -o dmetadata.lo dmetadata.cpp dmetadata.cpp: In member function 'bool Digikam::DMetadata::loadUsingDcraw(const QString&)': dmetadata.cpp:87: error: 'class KDcrawIface::DcrawInfoContainer' has no member named 'owner' dmetadata.cpp:88: error: 'class KDcrawIface::DcrawInfoContainer' has no member named 'owner' make[4]: *** [dmetadata.lo] Error 1 Any hint? I want to try the new beta and see if I still have the crash and PNG-to-JPG-exif problems; if so I'll file bugs. Thanks! |
Hi Ari,
I had a similar (or maybe the same) problem trying to compile digikam 0.9.3-beta or the svn version on Kubuntu Gutsy. configure worked fine, but make failed mentioning something about dmetadata. Moreover, starting the RAW converter plugin always used to crash digikam 0.9.2. In the end it turned out that the problem was some library on my system which was too old, although this was not detected by configure. I guess it was libkdcraw, and it needed to be at least version 0.1.2 ... but Arnd and Gilles should know, because they helped me to overcome this problem. Basically you need to remove the library in question (be sure not to remove all packages depending on it), get the new version, compile it, and then compile and install digikam. Good luck, Gandalf Am Mittwoch, 14. November 2007 16:55:58 schrieb Ari El: > Trying to build the latest SVN I *almost* succeeded. I Installed all > build-deps (apt-get build-dep digikam), and ./configure/make/make install > worked fin for the "libs" folder. Now when I try the same in the "graphics" > folder, ./configure succeeds but "make" fails and I have no clue what to do > about it, this is the output: > > > make[4]: Entering directory > `/home/ari/Desktop/Builds/digikam/graphics/digikam/libs/dmetadata' > /bin/bash ../../../libtool --silent --tag=CXX --mode=compile g++ > -DHAVE_CONFIG_H -I. -I../../.. -I../../../digikam/libs/dimg > -I../../../digikam/digikam -I/usr/include/kde -I/usr/share/qt3/include > -I. -DQT_THREAD_SUPPORT -D_REENTRANT -Wno-long-long -Wundef -ansi > -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W > -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute > -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common > -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT > -DQT_NO_TRANSLATION -DQT_CLEAN_NAMESPACE -MT dmetadata.lo -MD -MP -MF > .deps/dmetadata.Tpo -c -o dmetadata.lo dmetadata.cpp > dmetadata.cpp: In member function 'bool > Digikam::DMetadata::loadUsingDcraw(const QString&)': > dmetadata.cpp:87: error: 'class KDcrawIface::DcrawInfoContainer' has no > member named 'owner' > dmetadata.cpp:88: error: 'class KDcrawIface::DcrawInfoContainer' has no > member named 'owner' > make[4]: *** [dmetadata.lo] Error 1 > > > Any hint? I want to try the new beta and see if I still have the crash and > PNG-to-JPG-exif problems; if so I'll file bugs. > > Thanks! _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
On Wed, 14 Nov 2007, Gandalf Lechner wrote:
> Hi Ari, > > I had a similar (or maybe the same) problem trying to compile digikam > 0.9.3-beta or the svn version on Kubuntu Gutsy. configure worked fine, but > make failed mentioning something about dmetadata. Moreover, starting the RAW > converter plugin always used to crash digikam 0.9.2. > > In the end it turned out that the problem was some library on my system which > was too old, although this was not detected by configure. I guess it was > libkdcraw, and it needed to be at least version 0.1.2 ... but Arnd and Gilles > should know, because they helped me to overcome this problem. > > Basically you need to remove the library in question (be sure not to remove > all packages depending on it), get the new version, compile it, and then > compile and install digikam. See here: http://mail.kde.org/pipermail/digikam-users/2007-October/004308.html On IRC we discussed it, and it boiled down to: dpkg --force-depends --dry-run -remove libkdcraw This is a re-occuring problem, that the old libkdcraw is found before the new one (which you did install, right?). Best, Arnd _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Ari
2007/11/14, Ari El <[hidden email]>:
compile and install libkdcraw from svn before (or use 0.1.2 version, not 0.1.1 and check if both version is not installed in your computer). This problem have been already seen in this room recently. Gilles _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Arnd Baecker
Thanks guys for the answers.
libkdcraw 0.1.1 was installed in my system; I downloaded and sudo make installed 0.1.2; The did: sudo dpkg --force-depends --dry-run -remove libkdcraw but this fails with an error: sudo dpkg --force-depends --dry-run -remove libkdcraw dpkg: conflicting actions -e (--control) and -r (--remove) Type dpkg --help for help about installing and deinstalling packages [*]; any hint? Just in case, I then tried ./configure then make again in graphics but it fails with the same error as before.
|
.... would have been so great to find the debs :|
so here's what I did, and the new problem I'm running into trying to build digikam svn: synaptics > libkdcraw > remove (removes dependencies as well: digikam, kipiplugins etc) get libkdcraw 0.1.2 from sourceforge and build it get exiv2 0.15 and build it checkout digikam svn (the whole thing, with plugins &etc) configure/make/makeinstall the lib folder So far, so good; now when I try the make in the "graphics" folder, after a while I get: Making all in digikam make[3]: Entering directory `/home/ariel/Desktop/Builds/digikam/graphics/digikam/digikam' /bin/bash ../../libtool --silent --tag=CXX --mode=link g++ -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wchar-subscripts -Wall -W -Wpointer-arith -O2 -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DQT_CLEAN_NAMESPACE -R /usr/lib -R /usr/lib -R /usr/share/qt3/lib -L/usr/share/qt3/lib -lkutils -o digikam main.o -lqt-mt -lz -lpng -lz -lm -lXext -lX11 -lSM -lICE -lpthread -lkdecore -lkdeui -lkio -lkparts -lkutils libdigikam.la ./.libs/libdigikam.so: undefined reference to `KExiv2Iface::KExiv2::getIptcTagsDataList(QStringList, bool)' ./.libs/libdigikam.so: undefined reference to `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' collect2: ld returned 1 exit status .......... any help would be GREATLY appreciated :) TIA
|
2007/11/14, Ari El <[hidden email]>: now, check if you have last stable libkexiv2 on your computer...
Gilles _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Downloaded libkexiv2-0.1.6, built it, installed.
Now it works!! :) Thanks folks
|
Free forum by Nabble | Edit this page |