Summary: | Raw Converter don't build [patch] | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Johannes Zarl-Zierl <johannes> |
Component: | BatchQueueManager-RAWProcessing | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | http://commits.kde.org/digikam/bd02b4969e00b0daa937712c8f14ab52b70320e4 | Version Fixed In: | 3.0.0 |
Sentry Crash Report: | |||
Attachments: | [PATCH] Refuse to build when libkdcraw version is too old. |
Description
Johannes Zarl-Zierl
2012-12-07 17:24:07 UTC
It's a linking problem, not a compilation failure. Sound like you mix old and recent versions on your computer at the same time. Clean up your cmake cache, reconfigure and try again. Gilles Caulier You are right, the build-tree was improperly switched from manually installed libkdcraw to the system-installed one. But even with a fresh build-tree, the issue hits me (during compilation, this time): mkdir foo && cd foo && cmake .. && make [...] [ 1%] Building CXX object common/libkipiplugins/CMakeFiles/kipiplugins.dir/tools/kprawthumbthread.o /home/zing/tmp/digikam-sc/extra/kipi-plugins/common/libkipiplugins/tools/kprawthumbthread.cpp: In member function ‘virtual void KIPIPlugins::KPRawThumbThread::run()’: /home/zing/tmp/digikam-sc/extra/kipi-plugins/common/libkipiplugins/tools/kprawthumbthread.cpp:112:24: error: ‘loadRawPreview’ is not a member of ‘KDcrawIface::KDcraw’ make[2]: *** [common/libkipiplugins/CMakeFiles/kipiplugins.dir/tools/kprawthumbthread.o] Error 1 make[1]: *** [common/libkipiplugins/CMakeFiles/kipiplugins.dir/all] Error 2 make: *** [all] Error 2 Created attachment 75892 [details]
[PATCH] Refuse to build when libkdcraw version is too old.
I looked at the output of cmake again and noticed that there is a version check for libkdcraw, but it has no effect on the compilation.
I guess that KDCRAW_FOUND should be set to false, if no version info is found.
Git commit 4902a124f0aae018a89adbb89e1e75872b43581c by Gilles Caulier. Committed on 18/12/2012 at 09:14. Pushed by cgilles into branch 'master'. apply patch #75892 from Johannes Zarl M +8 -1 CMakeLists.txt http://commits.kde.org/kipi-plugins/4902a124f0aae018a89adbb89e1e75872b43581c Git commit bd02b4969e00b0daa937712c8f14ab52b70320e4 by Gilles Caulier. Committed on 18/12/2012 at 09:15. Pushed by cgilles into branch 'master'. apply patch #75892 from Johannes Zarl FIXED-IN: 3.0.0 M +7 -0 CMakeLists.txt http://commits.kde.org/digikam/bd02b4969e00b0daa937712c8f14ab52b70320e4 |