mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
- remove obsolete patch
Reported by: PH (via beat@) Approved by: portmgr@ (implicit) Feature safe: yes
This commit is contained in:
parent
706f34e19c
commit
ccb34b25c7
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=307167
1 changed files with 0 additions and 35 deletions
|
@ -1,35 +0,0 @@
|
|||
diff -ur gexiv2/gexiv2-metadata-exif.cpp.orig gexiv2/gexiv2-metadata-exif.cpp
|
||||
--- gexiv2/gexiv2-metadata-exif.cpp.orig 2010-09-10 17:52:54.000000000 -0400
|
||||
+++ gexiv2/gexiv2-metadata-exif.cpp 2010-12-19 19:44:49.883274002 -0500
|
||||
@@ -235,10 +235,13 @@
|
||||
const gchar* gexiv2_metadata_get_exif_tag_label (const gchar* tag) {
|
||||
g_return_val_if_fail(tag != NULL, NULL);
|
||||
|
||||
- Exiv2::ExifKey key(tag);
|
||||
-
|
||||
try {
|
||||
+ Exiv2::ExifKey key(tag);
|
||||
+#if EXIV2_TEST_VERSION(0, 21, 0)
|
||||
+ return g_intern_string(key.tagLabel().c_str());
|
||||
+#else
|
||||
return Exiv2::ExifTags::tagLabel (key.tag (), key.ifdId ());
|
||||
+#endif
|
||||
} catch (Exiv2::Error& e) {
|
||||
LOG_ERROR(e);
|
||||
}
|
||||
@@ -249,10 +252,13 @@
|
||||
const gchar* gexiv2_metadata_get_exif_tag_description (const gchar* tag) {
|
||||
g_return_val_if_fail(tag != NULL, NULL);
|
||||
|
||||
- Exiv2::ExifKey key(tag);
|
||||
-
|
||||
try {
|
||||
+ Exiv2::ExifKey key(tag);
|
||||
+#if EXIV2_TEST_VERSION(0, 21, 0)
|
||||
+ return g_intern_string(key.tagDesc().c_str());
|
||||
+#else
|
||||
return Exiv2::ExifTags::tagDesc (key.tag (), key.ifdId ());
|
||||
+#endif
|
||||
} catch (Exiv2::Error& e) {
|
||||
LOG_ERROR(e);
|
||||
}
|
Loading…
Add table
Reference in a new issue