Bug 277133 - additional patch needed to compile 2.0.0-rc with external libpgf
Summary: additional patch needed to compile 2.0.0-rc with external libpgf
Status: RESOLVED FIXED
Alias: None
Product: digikam
Classification: Applications
Component: Portability-Compilation (show other bugs)
Version: 2.0.0
Platform: Gentoo Packages Linux
: NOR normal
Target Milestone: ---
Assignee: Digikam Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-07-05 12:11 UTC by Andreas K. Huettel
Modified: 2017-08-19 20:58 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In: 2.0.0


Attachments
patch for pgfloader.cpp (824 bytes, patch)
2011-07-05 12:11 UTC, Andreas K. Huettel
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Andreas K. Huettel 2011-07-05 12:11:02 UTC
Created attachment 61620 [details]
patch for pgfloader.cpp

See attached patch... note that after your changes the version number should always be defined, so the if clause should be simplified (also at the other place)
Comment 1 caulier.gilles 2011-07-05 14:13:13 UTC
I already fixed this code in git master. Please checkout code from KDE repository and try like this...

Gilles Caulier
Comment 3 Andreas K. Huettel 2011-07-05 14:32:27 UTC
That should build, yes. But what happens if PGFCodecVersionID is defined and smaller 0x061124? (That happens if your FindPGF.cmake identifies an older codec, right?) As I read it there will be no call to Write at all... This is why I simplified the #if's
Comment 4 caulier.gilles 2011-07-05 15:13:31 UTC
PGF codec ID do not exist in official libpgf yet. I patch internal lib and reported that to PGF team.

This ID for the moment is managed in PGF find cmake script :

https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/cmake/modules/FindPGF.cmake#L26

This ID is always different and value progress incrementally for for each releases

Gilles Caulier
Comment 5 Andreas K. Huettel 2011-07-05 18:08:54 UTC
(In reply to comment #4)
> PGF codec ID do not exist in official libpgf yet. I patch internal lib and
> reported that to PGF team.
> This ID for the moment is managed in PGF find cmake script
(...)

Yes, I know. Sorry I should have been more precise. But... let's assume we build the >>current git master<< digikam against an external system libpgf-6.09.44

Then, the FindPGF.cmake script defines PGF_CODEC_VERSION_ID=060944 and digikam/utils/config-digikam.h sets 
#define PGFCodecVersionID 0x${PGF_CODEC_VERSION_ID}
i.e. PGFCodecVersionID=0x060944

Now if you look at libs/dimg/loaders/pgfloader.cpp line 433 and following, PGFCodecVersionID is defined, but it is also smaller than 0x061124. Meaning, no branch of the #if statements is actually compiled, and there is no call to pgf.Write at all. (Of course this compilation always succeeds, but the resulting code does not do anything.)

With the current version of FindPGF.cmake, PGFCodecVersionID is always defined after the pgf library has been found. This is why I suggest changing the code to 

#if PGFCodecVersionID >= 0x061124
        pgf.Write(&stream, &nWrittenBytes, CallbackForLibPGF, this);
#else
        pgf.Write(&stream, 0, CallbackForLibPGF, &nWrittenBytes, this);
#endif

The same problem also exists in libs/threadimageio/pgfutils.cpp line 156 and following, which should in my opinion be 

#if PGFCodecVersionID >= 0x061124
        pgfImg.Write(&stream, &nWrittenBytes);
#else
        pgfImg.Write(&stream, 0, 0, &nWrittenBytes);
#endif
Comment 6 caulier.gilles 2011-07-05 18:17:10 UTC
>let's assume we
>build the >>current git master<< digikam against an external system
>libpgf-6.09.44

In this case, FindPGF will report to not found an external libpgf. So, FinPGF will not define codec ID and value from digiKam core will be used as well..

Gilles Caulier
Comment 7 Andreas K. Huettel 2011-07-05 18:33:43 UTC
(In reply to comment #6)
> >let's assume we
> >build the >>current git master<< digikam against an external system
> >libpgf-6.09.44
> 
> In this case, FindPGF will report to not found an external libpgf. So, FinPGF
> will not define codec ID and value from digiKam core will be used as well..

Why? 

-- checking for module 'libpgf'
--   found libpgf, version 6.09.44
-- PGF_INCLUDE_DIRS     = /usr/include/libpgf
-- PGF_INCLUDEDIR       = /usr/include/libpgf
-- PGF_LIBRARIES        = pgf
-- PGF_LDFLAGS          = -lpgf
-- PGF_CFLAGS           = -I/usr/include/libpgf
-- PGF_VERSION          = 6.09.44
-- PGF_CODEC_VERSION_ID = 60944
Comment 8 caulier.gilles 2011-07-05 19:51:18 UTC
Because libpgf uninstall ùethod is bugous and pkconfig file in not removed from the system.

I tested to compile digiKam with olders version of libpgf (compiled and installed using official tarballs), and at each time, after to run libpgf "make uninstall", i see this problem relevant of pkconfig file not cleaned on my system.

Gilles Caulier
Comment 9 Andreas K. Huettel 2011-07-05 20:06:41 UTC
What I mean is, right now digikam finds and recognizes the old libpgf just fine (see the configure snippet in comment #7), and defines the version accordingly. I cannot find any code in FindPGF that disables this for older libpgf versions. This is why I dont understand your comment #6; that's clearly wrong.

As for the problematic uninstall method, well that is what you have distributions, packagers and package manager programs for... :)
Comment 10 caulier.gilles 2011-07-05 20:21:24 UTC
>This is why I dont understand your comment #6; that's clearly wrong.

There is 2 cases : 

- you use an external libpgf : FindPGF script setup codec ID

- you don't use an external libpgf : internal code is used instead and setup codec ID.

that simple. 

>As for the problematic uninstall method, well that is what you have
>distributions, packagers and package manager programs for... :)

No. i don't use a package from my distro. I downloaded the libpgf tarball from SF.net, and compiled/installed it as well using automake/autoconf. The make provide uninstall command which forget to remove pkconfig file (all the rest is cleaned from my system). It's a problem from libpgf tarball, not my distro.

Gilles Caulier
Comment 11 Andreas K. Huettel 2011-07-05 21:02:47 UTC
(In reply to comment #10)
> >This is why I dont understand your comment #6; that's clearly wrong.
> 
> There is 2 cases : 
> 
> - you use an external libpgf : FindPGF script setup codec ID
> 
> - you don't use an external libpgf : internal code is used instead and setup
> codec ID.
> 
> that simple. 

So in either case PGFCodecVersionID is defined, see comment #5.
Comment 12 caulier.gilles 2011-07-06 05:39:28 UTC
From Comment #5 :

>Then, the FindPGF.cmake script defines PGF_CODEC_VERSION_ID=060944 and
>digikam/utils/config-digikam.h sets 
>#define PGFCodecVersionID 0x${PGF_CODEC_VERSION_ID}
>i.e. PGFCodecVersionID=0x060944

This is true, but in this case _external_ libpgf include dir will be used instead internal libpgf dir. To resume, internal libpgf will be dropped as well, and ID used will be one defined from FindPGF script. 

Rules to manage libpgf Include dir is here :

https://projects.kde.org/projects/extragear/graphics/digikam/repository/revisions/master/entry/CMakeLists.txt#L561

Gilles Caulier
Comment 13 Andreas K. Huettel 2011-07-06 08:45:56 UTC
Yes, but that means that libs/dimg/loaders/pgfloader.cpp and libs/threadimageio/pgfutils.cpp (which are not part of the pgf library but of digikam) are compiled with the external libpgf includes and the ID defined by FindPGF from the version of the external libpgf (which can be below 0x061124).
Comment 14 caulier.gilles 2011-07-06 08:57:35 UTC
Absolutly, and it's the case (:=)))

Gilles Caulier