Hi all,
I am trying to compile digikam from SVN. My compile script (below) complained about libkdcraw: digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw first libkdcraw website is at http://www.kipi-plugins.org This was in the running of ./configure in the graphics dir. So I got the latest, version 0.1.2, compiled and installed to /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the kdcraw version complaint. Any help would be appreciated! Paul ++++++Build script below+++++++++ #!/bin/sh -xve KDEDIRS=/home/local_pwaldo/local:/usr LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH echo Get, compile and install required libs svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs cd libs export UNSERMAKE=no echo KDEDIRS is $KDEDIRS make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local make -j 5 make install cd .. echo Get, compile and install digikam svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ cd graphics svn up digikam svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local --with-extra-includes=/home/local_pwaldo/local --with-extra-libs=/home/local_pwaldo/local make -j 5 make install _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Hi Paul,
just guessing, but in the script at http://www.digikam.org/?q=download/svn also export LDPATH=$DIGIKAMDEST/lib:$LDPATH export PATH=$DIGIKAMDEST/bin:$PATH export UNSERMAKE=no export PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig are done. Maybe this helps... Arnd On Thu, 27 Sep 2007, Paul Waldo wrote: > Hi all, > > I am trying to compile digikam from SVN. My compile script (below) > complained about libkdcraw: > > digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw > first > libkdcraw website is at http://www.kipi-plugins.org > > This was in the running of ./configure in the graphics dir. > > So I got the latest, version 0.1.2, compiled and installed to > /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the > kdcraw version complaint. Any help would be appreciated! > > Paul > > ++++++Build script below+++++++++ > #!/bin/sh -xve > > KDEDIRS=/home/local_pwaldo/local:/usr > LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH > echo Get, compile and install required libs > svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs > cd libs > export UNSERMAKE=no > echo KDEDIRS is $KDEDIRS > make -f Makefile.cvs > ./configure --prefix=/home/local_pwaldo/local > make -j 5 > make install > cd .. > > echo Get, compile and install digikam > svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ > cd graphics > svn up digikam > svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin > make -f Makefile.cvs > ./configure --prefix=/home/local_pwaldo/local > --with-extra-includes=/home/local_pwaldo/local > --with-extra-libs=/home/local_pwaldo/local > make -j 5 > make install > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > > Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Thanks, Arnd. Unfortunately no luck. It still can't find libkdcraw:
-- digiKam configure results ------------------- -- libsqlite3 library found....... YES -- libgphoto2 library found....... YES -- libkipi library found.......... YES -- libtiff library found..... .... YES -- libpng library found........... YES -- libjasper library found........ YES -- liblcms library found.......... YES -- libkexiv2 library found........ YES -- libkdcraw library found........ NO digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw first libkdcraw website is at http://www.kipi-plugins.org Here is my script with your mods: #!/bin/sh -xve DIGIKAMDEST=/home/local_pwaldo/local KDEDIRS=/home/local_pwaldo/local:/usr LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH LDPATH=$DIGIKAMDEST/lib:$LDPATH PATH=$DIGIKAMDEST/bin:$PATH UNSERMAKE=no PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig echo Get, compile and install required libs svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs cd libs export UNSERMAKE=no echo KDEDIRS is $KDEDIRS make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local make -j 5 make install cd .. echo Get, compile and install digikam svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ cd graphics svn up digikam svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local --with-extra-includes=/home/local_pwaldo/local --with-extra-libs=/home/local_pwaldo/local make -j 5 make install Arnd Baecker wrote: > Hi Paul, > > just guessing, but in the script at > http://www.digikam.org/?q=download/svn > also > export LDPATH=$DIGIKAMDEST/lib:$LDPATH > export PATH=$DIGIKAMDEST/bin:$PATH > export UNSERMAKE=no > export PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig > are done. > > Maybe this helps... > > Arnd > > On Thu, 27 Sep 2007, Paul Waldo wrote: > > >> Hi all, >> >> I am trying to compile digikam from SVN. My compile script (below) >> complained about libkdcraw: >> >> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw >> first >> libkdcraw website is at http://www.kipi-plugins.org >> >> This was in the running of ./configure in the graphics dir. >> >> So I got the latest, version 0.1.2, compiled and installed to >> /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the >> kdcraw version complaint. Any help would be appreciated! >> >> Paul >> >> ++++++Build script below+++++++++ >> #!/bin/sh -xve >> >> KDEDIRS=/home/local_pwaldo/local:/usr >> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH >> echo Get, compile and install required libs >> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs >> cd libs >> export UNSERMAKE=no >> echo KDEDIRS is $KDEDIRS >> make -f Makefile.cvs >> ./configure --prefix=/home/local_pwaldo/local >> make -j 5 >> make install >> cd .. >> >> echo Get, compile and install digikam >> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ >> cd graphics >> svn up digikam >> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin >> make -f Makefile.cvs >> ./configure --prefix=/home/local_pwaldo/local >> --with-extra-includes=/home/local_pwaldo/local >> --with-extra-libs=/home/local_pwaldo/local >> make -j 5 >> make install >> >> _______________________________________________ >> Digikam-users mailing list >> [hidden email] >> https://mail.kde.org/mailman/listinfo/digikam-users >> >> >> > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
hmm, starting to be at loss here ;-)
What is the output of ls $DIGIKAMDEST/lib/ ? On Thu, 27 Sep 2007, Paul Waldo wrote: > Thanks, Arnd. Unfortunately no luck. It still can't find libkdcraw: > -- digiKam configure results ------------------- > -- libsqlite3 library found....... YES > -- libgphoto2 library found....... YES > -- libkipi library found.......... YES > -- libtiff library found..... .... YES > -- libpng library found........... YES > -- libjasper library found........ YES > -- liblcms library found.......... YES > -- libkexiv2 library found........ YES > -- libkdcraw library found........ NO > > digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw > first > libkdcraw website is at http://www.kipi-plugins.org > > Here is my script with your mods: > #!/bin/sh -xve > > DIGIKAMDEST=/home/local_pwaldo/local > KDEDIRS=/home/local_pwaldo/local:/usr > LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH > LDPATH=$DIGIKAMDEST/lib:$LDPATH > PATH=$DIGIKAMDEST/bin:$PATH > UNSERMAKE=no > PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig > > echo Get, compile and install required libs > svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs > cd libs > export UNSERMAKE=no > echo KDEDIRS is $KDEDIRS > make -f Makefile.cvs > ./configure --prefix=/home/local_pwaldo/local > make -j 5 > make install > cd .. > > echo Get, compile and install digikam > svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ > cd graphics > svn up digikam > svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin > make -f Makefile.cvs > ./configure --prefix=/home/local_pwaldo/local > --with-extra-includes=/home/local_pwaldo/local > --with-extra-libs=/home/local_pwaldo/local > make -j 5 > make install > > > Arnd Baecker wrote: > > Hi Paul, > > > > just guessing, but in the script at > > http://www.digikam.org/?q=download/svn > > also > > export LDPATH=$DIGIKAMDEST/lib:$LDPATH > > export PATH=$DIGIKAMDEST/bin:$PATH > > export UNSERMAKE=no > > export PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig > > are done. > > > > Maybe this helps... > > > > Arnd > > > > On Thu, 27 Sep 2007, Paul Waldo wrote: > > > > > >> Hi all, > >> > >> I am trying to compile digikam from SVN. My compile script (below) > >> complained about libkdcraw: > >> > >> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw > >> first > >> libkdcraw website is at http://www.kipi-plugins.org > >> > >> This was in the running of ./configure in the graphics dir. > >> > >> So I got the latest, version 0.1.2, compiled and installed to > >> /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the > >> kdcraw version complaint. Any help would be appreciated! > >> > >> Paul > >> > >> ++++++Build script below+++++++++ > >> #!/bin/sh -xve > >> > >> KDEDIRS=/home/local_pwaldo/local:/usr > >> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH > >> echo Get, compile and install required libs > >> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs > >> cd libs > >> export UNSERMAKE=no > >> echo KDEDIRS is $KDEDIRS > >> make -f Makefile.cvs > >> ./configure --prefix=/home/local_pwaldo/local > >> make -j 5 > >> make install > >> cd .. > >> > >> echo Get, compile and install digikam > >> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ > >> cd graphics > >> svn up digikam > >> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin > >> make -f Makefile.cvs > >> ./configure --prefix=/home/local_pwaldo/local > >> --with-extra-includes=/home/local_pwaldo/local > >> --with-extra-libs=/home/local_pwaldo/local > >> make -j 5 > >> make install > >> > >> _______________________________________________ > >> Digikam-users mailing list > >> [hidden email] > >> https://mail.kde.org/mailman/listinfo/digikam-users > >> > >> > >> > > _______________________________________________ > > Digikam-users mailing list > > [hidden email] > > https://mail.kde.org/mailman/listinfo/digikam-users > > > > > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > > Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
$ DIGIKAMDEST=/home/local_pwaldo/local; ls $DIGIKAMDEST/lib/
kde3 libkdcraw.so.2.0.0 libkipi.la libkipi.so libkdcraw2 libkexiv2.la libkipiplugins.la libkipi.so.0 libkdcraw.la libkexiv2.so libkipiplugins.so libkipi.so.0.1.1 libkdcraw.so libkexiv2.so.3 libkipiplugins.so.0 pkgconfig libkdcraw.so.2 libkexiv2.so.3.0.0 libkipiplugins.so.0.0.1 Paul Arnd Baecker wrote: > hmm, starting to be at loss here ;-) > What is the output of > ls $DIGIKAMDEST/lib/ > ? > > On Thu, 27 Sep 2007, Paul Waldo wrote: > > >> Thanks, Arnd. Unfortunately no luck. It still can't find libkdcraw: >> -- digiKam configure results ------------------- >> -- libsqlite3 library found....... YES >> -- libgphoto2 library found....... YES >> -- libkipi library found.......... YES >> -- libtiff library found..... .... YES >> -- libpng library found........... YES >> -- libjasper library found........ YES >> -- liblcms library found.......... YES >> -- libkexiv2 library found........ YES >> -- libkdcraw library found........ NO >> >> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw >> first >> libkdcraw website is at http://www.kipi-plugins.org >> >> Here is my script with your mods: >> #!/bin/sh -xve >> >> DIGIKAMDEST=/home/local_pwaldo/local >> KDEDIRS=/home/local_pwaldo/local:/usr >> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH >> LDPATH=$DIGIKAMDEST/lib:$LDPATH >> PATH=$DIGIKAMDEST/bin:$PATH >> UNSERMAKE=no >> PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig >> >> echo Get, compile and install required libs >> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs >> cd libs >> export UNSERMAKE=no >> echo KDEDIRS is $KDEDIRS >> make -f Makefile.cvs >> ./configure --prefix=/home/local_pwaldo/local >> make -j 5 >> make install >> cd .. >> >> echo Get, compile and install digikam >> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ >> cd graphics >> svn up digikam >> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin >> make -f Makefile.cvs >> ./configure --prefix=/home/local_pwaldo/local >> --with-extra-includes=/home/local_pwaldo/local >> --with-extra-libs=/home/local_pwaldo/local >> make -j 5 >> make install >> >> >> Arnd Baecker wrote: >> >>> Hi Paul, >>> >>> just guessing, but in the script at >>> http://www.digikam.org/?q=download/svn >>> also >>> export LDPATH=$DIGIKAMDEST/lib:$LDPATH >>> export PATH=$DIGIKAMDEST/bin:$PATH >>> export UNSERMAKE=no >>> export PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig >>> are done. >>> >>> Maybe this helps... >>> >>> Arnd >>> >>> On Thu, 27 Sep 2007, Paul Waldo wrote: >>> >>> >>> >>>> Hi all, >>>> >>>> I am trying to compile digikam from SVN. My compile script (below) >>>> complained about libkdcraw: >>>> >>>> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw >>>> first >>>> libkdcraw website is at http://www.kipi-plugins.org >>>> >>>> This was in the running of ./configure in the graphics dir. >>>> >>>> So I got the latest, version 0.1.2, compiled and installed to >>>> /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the >>>> kdcraw version complaint. Any help would be appreciated! >>>> >>>> Paul >>>> >>>> ++++++Build script below+++++++++ >>>> #!/bin/sh -xve >>>> >>>> KDEDIRS=/home/local_pwaldo/local:/usr >>>> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH >>>> echo Get, compile and install required libs >>>> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs >>>> cd libs >>>> export UNSERMAKE=no >>>> echo KDEDIRS is $KDEDIRS >>>> make -f Makefile.cvs >>>> ./configure --prefix=/home/local_pwaldo/local >>>> make -j 5 >>>> make install >>>> cd .. >>>> >>>> echo Get, compile and install digikam >>>> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ >>>> cd graphics >>>> svn up digikam >>>> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin >>>> make -f Makefile.cvs >>>> ./configure --prefix=/home/local_pwaldo/local >>>> --with-extra-includes=/home/local_pwaldo/local >>>> --with-extra-libs=/home/local_pwaldo/local >>>> make -j 5 >>>> make install >>>> >>>> _______________________________________________ >>>> Digikam-users mailing list >>>> [hidden email] >>>> https://mail.kde.org/mailman/listinfo/digikam-users >>>> >>>> >>>> >>>> >>> _______________________________________________ >>> Digikam-users mailing list >>> [hidden email] >>> https://mail.kde.org/mailman/listinfo/digikam-users >>> >>> >>> >> _______________________________________________ >> Digikam-users mailing list >> [hidden email] >> https://mail.kde.org/mailman/listinfo/digikam-users >> >> >> > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
hmm, no idea anymore.
Could you empty $DIGIKAMDEST completely and try the scripts from the webpage? (Also don't forget to install libjasper ...) On Thu, 27 Sep 2007, Paul Waldo wrote: > $ DIGIKAMDEST=/home/local_pwaldo/local; ls $DIGIKAMDEST/lib/ > kde3 libkdcraw.so.2.0.0 libkipi.la libkipi.so > libkdcraw2 libkexiv2.la libkipiplugins.la libkipi.so.0 > libkdcraw.la libkexiv2.so libkipiplugins.so > libkipi.so.0.1.1 > libkdcraw.so libkexiv2.so.3 libkipiplugins.so.0 pkgconfig > libkdcraw.so.2 libkexiv2.so.3.0.0 libkipiplugins.so.0.0.1 > > > Paul > > Arnd Baecker wrote: > > hmm, starting to be at loss here ;-) > > What is the output of > > ls $DIGIKAMDEST/lib/ > > ? > > > > On Thu, 27 Sep 2007, Paul Waldo wrote: > > > > > >> Thanks, Arnd. Unfortunately no luck. It still can't find libkdcraw: > >> -- digiKam configure results ------------------- > >> -- libsqlite3 library found....... YES > >> -- libgphoto2 library found....... YES > >> -- libkipi library found.......... YES > >> -- libtiff library found..... .... YES > >> -- libpng library found........... YES > >> -- libjasper library found........ YES > >> -- liblcms library found.......... YES > >> -- libkexiv2 library found........ YES > >> -- libkdcraw library found........ NO > >> > >> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw > >> first > >> libkdcraw website is at http://www.kipi-plugins.org > >> > >> Here is my script with your mods: > >> #!/bin/sh -xve > >> > >> DIGIKAMDEST=/home/local_pwaldo/local > >> KDEDIRS=/home/local_pwaldo/local:/usr > >> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH > >> LDPATH=$DIGIKAMDEST/lib:$LDPATH > >> PATH=$DIGIKAMDEST/bin:$PATH > >> UNSERMAKE=no > >> PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig > >> > >> echo Get, compile and install required libs > >> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs > >> cd libs > >> export UNSERMAKE=no > >> echo KDEDIRS is $KDEDIRS > >> make -f Makefile.cvs > >> ./configure --prefix=/home/local_pwaldo/local > >> make -j 5 > >> make install > >> cd .. > >> > >> echo Get, compile and install digikam > >> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ > >> cd graphics > >> svn up digikam > >> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin > >> make -f Makefile.cvs > >> ./configure --prefix=/home/local_pwaldo/local > >> --with-extra-includes=/home/local_pwaldo/local > >> --with-extra-libs=/home/local_pwaldo/local > >> make -j 5 > >> make install > >> > >> > >> Arnd Baecker wrote: > >> > >>> Hi Paul, > >>> > >>> just guessing, but in the script at > >>> http://www.digikam.org/?q=download/svn > >>> also > >>> export LDPATH=$DIGIKAMDEST/lib:$LDPATH > >>> export PATH=$DIGIKAMDEST/bin:$PATH > >>> export UNSERMAKE=no > >>> export PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig > >>> are done. > >>> > >>> Maybe this helps... > >>> > >>> Arnd > >>> > >>> On Thu, 27 Sep 2007, Paul Waldo wrote: > >>> > >>> > >>> > >>>> Hi all, > >>>> > >>>> I am trying to compile digikam from SVN. My compile script (below) > >>>> complained about libkdcraw: > >>>> > >>>> digiKam needs libkdcraw library >= 0.1.2. You need to install libkdcraw > >>>> first > >>>> libkdcraw website is at http://www.kipi-plugins.org > >>>> > >>>> This was in the running of ./configure in the graphics dir. > >>>> > >>>> So I got the latest, version 0.1.2, compiled and installed to > >>>> /home/local_pwaldo/local. Unfortunately, I can't seem to get rid of the > >>>> kdcraw version complaint. Any help would be appreciated! > >>>> > >>>> Paul > >>>> > >>>> ++++++Build script below+++++++++ > >>>> #!/bin/sh -xve > >>>> > >>>> KDEDIRS=/home/local_pwaldo/local:/usr > >>>> LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH > >>>> echo Get, compile and install required libs > >>>> svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs > >>>> cd libs > >>>> export UNSERMAKE=no > >>>> echo KDEDIRS is $KDEDIRS > >>>> make -f Makefile.cvs > >>>> ./configure --prefix=/home/local_pwaldo/local > >>>> make -j 5 > >>>> make install > >>>> cd .. > >>>> > >>>> echo Get, compile and install digikam > >>>> svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ > >>>> cd graphics > >>>> svn up digikam > >>>> svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin > >>>> make -f Makefile.cvs > >>>> ./configure --prefix=/home/local_pwaldo/local > >>>> --with-extra-includes=/home/local_pwaldo/local > >>>> --with-extra-libs=/home/local_pwaldo/local > >>>> make -j 5 > >>>> make install > >>>> > >>>> _______________________________________________ > >>>> Digikam-users mailing list > >>>> [hidden email] > >>>> https://mail.kde.org/mailman/listinfo/digikam-users > >>>> > >>>> > >>>> > >>>> > >>> _______________________________________________ > >>> Digikam-users mailing list > >>> [hidden email] > >>> https://mail.kde.org/mailman/listinfo/digikam-users > >>> > >>> > >>> > >> _______________________________________________ > >> Digikam-users mailing list > >> [hidden email] > >> https://mail.kde.org/mailman/listinfo/digikam-users > >> > >> > >> > > _______________________________________________ > > Digikam-users mailing list > > [hidden email] > > https://mail.kde.org/mailman/listinfo/digikam-users > > > > > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > > Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
On Thursday 27 September 2007 18:32:05 Arnd Baecker wrote:
> hmm, no idea anymore. > Could you empty $DIGIKAMDEST completely > and try the scripts from the webpage? > (Also don't forget to install libjasper ...) Isn't this simply the old gconf problem? (look at the archives around the 5th of june). -- Jakob Østergaard _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
2007/9/27, Arnd Baecker <[hidden email]>: On Thu, 27 Sep 2007, Jakob [iso-8859-1] Østergaard wrote: The way to check if libkdcraw have be already installed is revisited now with CMake (KDE4). Against automake (KDE3) it's really more simple to make rules/check system. Perhaps the solution is to port KDE3 branch to CMake and leaves definitively automake and autoconf (few KDE3 application use this way now). This is not really complicated to do, because all is already done from KDE4 code. Just few rules need to be changed and few folders are differrents. CMake syntax is natural and installed really more simple to understand. Personally, i hate automake/autoconf. It's a too old framework. Note than i have no problem to use digiKam/libkexiv2/likdcraw/... from KDE3 (/usr) and digiKam/libkexiv2/libkdcraw/... for KDE4 (/opt/kde4) on the same computer... Arnd _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
On Friday 28 September 2007, Gilles Caulier wrote:
... > The way to check if libkdcraw have be already installed is revisited > now with CMake (KDE4). Against automake (KDE3) it's really more > simple to make rules/check system. I have no idea how CMake/KDE4 checks for dependencies, but let me just add to this: The reason for the detected/used header/library mismatches is gconf and gconf alone. It does not make decisions based on the behaviour of the linker and compiler - it makes decisions based on something entirely different which makes it completely unfit for what it is being used to accomplish. Switching to CMake (or any other make system), will not change that. If gconf is still used, the breakage will be the same. Removing gconf from Make and from the autoconf/automake system will fix this problem completely. If someone re-wrote the make files from Make to CMake and in that process killed gconf, great, problem solved. -- Best regards, Jakob Oestergaard _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
In reply to this post by Jakob "Østergaard"
Arnd Baecker wrote:
> So you mean this thread: > http://mail.kde.org/pipermail/digikam-users/2007-June/003659.html > ? > > Paul, do you have a system wide installed libkdcraw somewhere? > If so, could you remove that and try again? > ((Gilles, If this is really the same one again, I very much > hope that with cmake and KDE4 this problem does not persist...;-)) > > Arnd > which of course had reverse dependencies on digikam, showfoto, etc. Once I removed them, configure found the correct libkdcraw. So it appears you can have only one digikam at a time, stable or SVN... Thanks for the help, and let's hope this get resolved :-) Now I'm off to try to compile digikam again. Of course my exiv2 needs to be updated also.... :-( Paul _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Paul Waldo wrote:
> Now I'm off to try to compile digikam again. Of course my exiv2 needs > to be updated also.... :-( > OK, so the current SVN build for exiv2 is broken with compile errors. Is there any way to get a snapshot that will compile? Thanks! Paul _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Paul,
Current Exiv2 from svn trunk support XMP metadata now. Andreas and me we working on... http://digikam3rdparty.free.fr/Screenshots/digikam_for_KDE4_with_XMP_metadata_support.png Compile it properly, you need to read and follow the README-XMP file before. But if you don't care about XMP at this time (only digiKam for KDE4 support XMP), just get the last stable Exiv2 0.15 bin and devel package to compile all digiKam & co for KDE3. Gilles 2007/9/28, Paul Waldo <[hidden email]>: Paul Waldo wrote: _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Sorry to keep on with the errors...
Exiv0.15 seemed to work for the configure stage. Now it seems that linking digikam fails. As I read this, there is a problem with the signatures of kexiv2 and what digikam thinks is the signature. Any ideas? Thanks! /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 -march=nocona -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 -o libdigikam.la -rpath /home/local_pwaldo/local/lib -L/usr/share/qt3/lib -L/home/local_pwaldo/local -R /home/local_pwaldo/local/lib -R /usr/lib -R /usr/share/qt3/lib -R /home/local_pwaldo/local -no-undefined -Wl,--no-undefined -Wl,--allow-shlib-undefined kdateedit.lo metadatahub.lo digikamapp.lo album.lo albumdb.lo albumdb_sqlite2.lo albumiconview.lo albumicongroupitem.lo albumiconitem.lo albumitemhandler.lo albumfiletip.lo albumfolderview.lo albumhistory.lo albumlister.lo albummanager.lo albumpropsedit.lo albumsettings.lo albumthumbnailloader.lo albumwidgetstack.lo cameradragobject.lo cameralist.lo cameratype.lo datefolderview.lo dcopiface.lo digikamfirstrun.lo digikamview.lo dio.lo dragobjects.lo firstrun.lo folderitem.lo folderview.lo iconview.lo icongroupitem.lo iconitem.lo imageattributeswatch.lo imageinfo.lo imagepreviewview.lo kdatetimeedit.lo kdatepickerpopup.lo kipiinterface.lo mediaplayerview.lo monthwidget.lo pixmapmanager.lo ratingpopupmenu.lo ratingwidget.lo scanlib.lo searchadvanceddialog.lo searchfolderview.lo searchquickdialog.lo searchresultsview.lo searchresultsitem.lo searchwidgets.lo syncjob.lo tagcreatedlg.lo tagfilterview.lo tagfolderview.lo tagspopupmenu.lo upgradedb_sqlite2tosqlite3.lo welcomepageview.lo dcopiface_skel.lo -lkio -lsqlite3 -lkabc -lkhtml -lkipi -lkutils ../../digikam/libs/sqlite2/libsqlite2.la ../../digikam/libs/thumbbar/libthumbbar.la ../../digikam/libs/themeengine/libthemeengine.la ../../digikam/libs/widgets/libwidgets.la ../../digikam/libs/dialogs/libdialog.la ../../digikam/libs/jpegutils/libjpegutils.la ../../digikam/libs/dimg/libdimg.la ../../digikam/libs/imageproperties/libimagepropertiesdigikam.la ../../digikam/libs/threadimageio/libthreadimageio.la ../../digikam/libs/greycstoration/libgreycstoration.la ../../digikam/utilities/batch/libbatch.la ../../digikam/utilities/slideshow/libslideshow.la ../../digikam/utilities/cameragui/libcameragui.la ../../digikam/utilities/imageeditor/canvas/libdimgcanvas.la ../../digikam/utilities/imageeditor/editor/libdimgeditor.la ../../digikam/utilities/setup/libsetup.la ../../digikam/utilities/lighttable/liblighttable.la ../../digikam/libs/widgets/.libs/libwidgets.a(iptcwidget.o): In function `Digikam::IptcWidget::decodeMetadata()': iptcwidget.cpp:(.text+0xdd7): undefined reference to `KExiv2Iface::KExiv2::getIptcTagsDataList(QStringList, bool)' ../../digikam/libs/widgets/.libs/libwidgets.a(exifwidget.o): In function `Digikam::ExifWidget::decodeMetadata()': exifwidget.cpp:(.text+0xe09): undefined reference to `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' ../../digikam/libs/widgets/.libs/libwidgets.a(makernotewidget.o): In function `Digikam::MakerNoteWidget::decodeMetadata()': makernotewidget.cpp:(.text+0xdd8): undefined reference to `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' ../../digikam/libs/widgets/.libs/libwidgets.a(gpswidget.o): In function `Digikam::GPSWidget::decodeMetadata()': gpswidget.cpp:(.text+0xc80): undefined reference to `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' collect2: ld returned 1 exit status make[3]: *** [libdigikam.la] Error 1 make[3]: Leaving directory `/home/local_pwaldo/digikam-svn/graphics/digikam/digikam' make[2]: *** [all-recursive] Error 1 make[2]: Leaving directory `/home/local_pwaldo/digikam-svn/graphics/digikam' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/home/local_pwaldo/digikam-svn/graphics' make: *** [all] Error 2 Gilles Caulier wrote: > Paul, > > Current Exiv2 from svn trunk support XMP metadata now. Andreas and me > we working on... > > http://digikam3rdparty.free.fr/Screenshots/digikam_for_KDE4_with_XMP_metadata_support.png > > Compile it properly, you need to read and follow the README-XMP file > before. > > But if you don't care about XMP at this time (only digiKam for KDE4 > support XMP), just get the last stable Exiv2 0.15 bin and devel > package to compile all digiKam & co for KDE3. > > Gilles > > > 2007/9/28, Paul Waldo <[hidden email] > <mailto:[hidden email]>>: > > Paul Waldo wrote: > > Now I'm off to try to compile digikam again. Of course my exiv2 > needs > > to be updated also.... :-( > > > OK, so the current SVN build for exiv2 is broken with compile > errors. Is > there any way to get a snapshot that will compile? Thanks! > > Paul > _______________________________________________ > Digikam-users mailing list > [hidden email] <mailto:[hidden email]> > https://mail.kde.org/mailman/listinfo/digikam-users > > > ------------------------------------------------------------------------ > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Paul,
Just to be sure, when you have installed Exiv2 0.15, are you recompiled and installed extargear/libs before to compile digiKam ? Are you sure than the libkexiv2 used to link digiKam is the right one ? Gilles 2007/9/28, Paul Waldo <[hidden email]>: Sorry to keep on with the errors... _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
After I did an install of the newly compiled exiv2, I re-ran my digikam
build script (below). If I read it correctly, it does do a build of the extragear libs Now that I look more closely at the link command, I think the error makes sense. Shouldn't there be a "-lkeviv2" in there somewhere? :-O #!/bin/sh -xve DIGIKAMDEST=/home/local_pwaldo/local KDEDIRS=/home/local_pwaldo/local:/usr LD_LIBRARY_PATH=/home/local_pwaldo/local:$LD_LIBRARY_PATH LD_RUN_PATH=$DIGIKAMDEST:$LD_RUN_PATH LDPATH=$DIGIKAMDEST/lib:$LDPATH PATH=$DIGIKAMDEST/bin:$PATH UNSERMAKE=no PKG_CONFIG_PATH=$DIGIKAMDEST/lib/pkgconfig echo Get, compile and install required libs svn co svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/libs cd libs export UNSERMAKE=no echo KDEDIRS is $KDEDIRS make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local make -j 5 make install cd .. echo Get, compile and install digikam svn co -N svn://anonsvn.kde.org/home/kde/branches/extragear/kde3/graphics/ cd graphics svn up digikam svn co svn://anonsvn.kde.org/home/kde/branches/KDE/3.5/kde-common/admin make -f Makefile.cvs ./configure --prefix=/home/local_pwaldo/local --with-extra-includes=/home/local_pwaldo/local --with-extra-libs=/home/local_pwaldo/local make -j 5 make install Gilles Caulier wrote: > Paul, > > Just to be sure, when you have installed Exiv2 0.15, are you > recompiled and installed extargear/libs before to compile digiKam ? > > Are you sure than the libkexiv2 used to link digiKam is the right one ? > > Gilles > > 2007/9/28, Paul Waldo <[hidden email] > <mailto:[hidden email]>>: > > Sorry to keep on with the errors... > > Exiv0.15 seemed to work for the configure stage. > > Now it seems that linking digikam fails. As I read this, there is a > problem with the signatures of kexiv2 and what digikam thinks is the > signature. Any ideas? Thanks! > > /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 > -march=nocona -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 -o libdigikam.la > <http://libdigikam.la> -rpath > /home/local_pwaldo/local/lib -L/usr/share/qt3/lib > -L/home/local_pwaldo/local -R /home/local_pwaldo/local/lib -R /usr/lib > -R /usr/share/qt3/lib -R /home/local_pwaldo/local -no-undefined > -Wl,--no-undefined -Wl,--allow-shlib-undefined kdateedit.lo > metadatahub.lo digikamapp.lo album.lo albumdb.lo albumdb_sqlite2.lo > albumiconview.lo albumicongroupitem.lo albumiconitem.lo > albumitemhandler.lo albumfiletip.lo albumfolderview.lo albumhistory.lo > albumlister.lo albummanager.lo albumpropsedit.lo albumsettings.lo > albumthumbnailloader.lo albumwidgetstack.lo cameradragobject.lo > cameralist.lo cameratype.lo datefolderview.lo dcopiface.lo > digikamfirstrun.lo digikamview.lo dio.lo dragobjects.lo firstrun.lo > folderitem.lo folderview.lo iconview.lo icongroupitem.lo iconitem.lo > imageattributeswatch.lo imageinfo.lo imagepreviewview.lo > kdatetimeedit.lo kdatepickerpopup.lo kipiinterface.lo > mediaplayerview.lo > monthwidget.lo pixmapmanager.lo ratingpopupmenu.lo ratingwidget.lo > scanlib.lo searchadvanceddialog.lo searchfolderview.lo > searchquickdialog.lo searchresultsview.lo searchresultsitem.lo > searchwidgets.lo syncjob.lo tagcreatedlg.lo tagfilterview.lo > tagfolderview.lo tagspopupmenu.lo upgradedb_sqlite2tosqlite3.lo > welcomepageview.lo dcopiface_skel.lo -lkio -lsqlite3 -lkabc -lkhtml > -lkipi -lkutils ../../digikam/libs/sqlite2/libsqlite2.la > ../../digikam/libs/thumbbar/libthumbbar.la > ../../digikam/libs/themeengine/libthemeengine.la > ../../digikam/libs/widgets/libwidgets.la > ../../digikam/libs/dialogs/libdialog.la > ../../digikam/libs/jpegutils/libjpegutils.la > ../../digikam/libs/dimg/libdimg.la > ../../digikam/libs/imageproperties/libimagepropertiesdigikam.la > ../../digikam/libs/threadimageio/libthreadimageio.la > ../../digikam/libs/greycstoration/libgreycstoration.la > ../../digikam/utilities/batch/libbatch.la > ../../digikam/utilities/slideshow/libslideshow.la > ../../digikam/utilities/cameragui/libcameragui.la > ../../digikam/utilities/imageeditor/canvas/libdimgcanvas.la > ../../digikam/utilities/imageeditor/editor/libdimgeditor.la > ../../digikam/utilities/setup/libsetup.la > ../../digikam/utilities/lighttable/liblighttable.la > ../../digikam/libs/widgets/.libs/libwidgets.a(iptcwidget.o): In > function > `Digikam::IptcWidget::decodeMetadata()': > iptcwidget.cpp:(.text+0xdd7): undefined reference to > `KExiv2Iface::KExiv2::getIptcTagsDataList(QStringList, bool)' > ../../digikam/libs/widgets/.libs/libwidgets.a(exifwidget.o): In > function > `Digikam::ExifWidget::decodeMetadata()': > exifwidget.cpp:(.text+0xe09): undefined reference to > `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' > ../../digikam/libs/widgets/.libs/libwidgets.a(makernotewidget.o): In > function `Digikam::MakerNoteWidget::decodeMetadata()': > makernotewidget.cpp:(.text+0xdd8): undefined reference to > `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' > ../../digikam/libs/widgets/.libs/libwidgets.a(gpswidget.o): In > function > `Digikam::GPSWidget::decodeMetadata()': > gpswidget.cpp:(.text+0xc80): undefined reference to > `KExiv2Iface::KExiv2::getExifTagsDataList(QStringList, bool)' > collect2: ld returned 1 exit status > make[3]: *** [libdigikam.la <http://libdigikam.la>] Error 1 > make[3]: Leaving directory > `/home/local_pwaldo/digikam-svn/graphics/digikam/digikam' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory > `/home/local_pwaldo/digikam-svn/graphics/digikam' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory `/home/local_pwaldo/digikam-svn/graphics' > make: *** [all] Error 2 > > > Gilles Caulier wrote: > > Paul, > > > > Current Exiv2 from svn trunk support XMP metadata now. Andreas > and me > > we working on... > > > > > http://digikam3rdparty.free.fr/Screenshots/digikam_for_KDE4_with_XMP_metadata_support.png > <http://digikam3rdparty.free.fr/Screenshots/digikam_for_KDE4_with_XMP_metadata_support.png> > > > > Compile it properly, you need to read and follow the README-XMP file > > before. > > > > But if you don't care about XMP at this time (only digiKam for KDE4 > > support XMP), just get the last stable Exiv2 0.15 bin and devel > > package to compile all digiKam & co for KDE3. > > > > Gilles > > > > > > 2007/9/28, Paul Waldo <[hidden email] > <mailto:[hidden email]> > > <mailto: [hidden email] <mailto:[hidden email]>>>: > > > > Paul Waldo wrote: > > > Now I'm off to try to compile digikam again. Of course my > exiv2 > > needs > > > to be updated also.... :-( > > > > > OK, so the current SVN build for exiv2 is broken with compile > > errors. Is > > there any way to get a snapshot that will compile? Thanks! > > > > Paul > > _______________________________________________ > > Digikam-users mailing list > > [hidden email] <mailto:[hidden email]> > <mailto:[hidden email] <mailto:[hidden email]>> > > https://mail.kde.org/mailman/listinfo/digikam-users > > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > Digikam-users mailing list > > [hidden email] <mailto:[hidden email]> > > https://mail.kde.org/mailman/listinfo/digikam-users > > > > _______________________________________________ > Digikam-users mailing list > [hidden email] <mailto:[hidden email]> > https://mail.kde.org/mailman/listinfo/digikam-users > > > ------------------------------------------------------------------------ > > _______________________________________________ > Digikam-users mailing list > [hidden email] > https://mail.kde.org/mailman/listinfo/digikam-users > _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
2007/9/28, Paul Waldo <[hidden email]>: After I did an install of the newly compiled exiv2, I re-ran my digikam yes -lkexiv2 is the right syntax to link with libkexiv2. This is the same way with libkipi and libkdcraw. Gilles _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
But the makefile is generated by configure, correct? Shouldn't it add
references to libkexiv2? That's not something I need to do, right? Paul Gilles Caulier wrote: > > > 2007/9/28, Paul Waldo <[hidden email] > <mailto:[hidden email]>>: > > After I did an install of the newly compiled exiv2, I re-ran my > digikam > build script (below). If I read it correctly, it does do a build > of the > extragear libs > > Now that I look more closely at the link command, I think the error > makes sense. Shouldn't there be a "-lkeviv2" in there somewhere? :-O > > > > yes -lkexiv2 is the right syntax to link with libkexiv2. This is the > same way with libkipi and libkdcraw. > > Gilles _______________________________________________ Digikam-users mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-users |
Free forum by Nabble | Edit this page |