diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2019-05-13 22:16:28 +0200 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2019-05-13 22:16:28 +0200 |
| commit | 0c3b218886342e44275b087c41faf3b6a2b7f664 (patch) | |
| tree | 35191c66c8f20e6f9b245d81cd79398a435370d9 /src/Makefile.am | |
| parent | 86438b558aaeb758d8770144c9e2fe70fdc4ee8a (diff) | |
| download | cataract-0c3b218886342e44275b087c41faf3b6a2b7f664.tar.xz | |
jpeg-utils: Port to gexiv2
The gexiv2 library is just a GObject wrapper around exiv2 library. It's
a healthy project that continually keeps up with exiv2 API changes.
Adopted by e.g. GIMP there's certain guarantee of future maintenance.
This allows us to get rid of C++ code, making it more readable and
predictable.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index ec7b3b1..fbf8672 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,7 +9,7 @@ AM_CPPFLAGS = \ $(DISABLE_DEPRECATED_CFLAGS) \ $(LIBXML2_CFLAGS) \ $(MAGICKWAND_CFLAGS) \ - $(EXIV2_CFLAGS) \ + $(GEXIV2_CFLAGS) \ -DG_LOG_DOMAIN=\"cgg\" bin_PROGRAMS = \ @@ -34,7 +34,7 @@ cgg_SOURCES = \ items.h \ job-manager.h \ job-manager.c \ - jpeg-utils.cpp \ + jpeg-utils.c \ jpeg-utils.h \ properties-table.c \ properties-table.h \ @@ -52,7 +52,7 @@ cgg_LDADD = \ $(GLIB_LIBS) \ $(LIBXML2_LIBS) \ $(MAGICKWAND_LIBS) \ - $(EXIV2_LIBS) \ + $(GEXIV2_LIBS) \ -lm EXTRA_DIST = cgg-dirgen |
