summaryrefslogtreecommitdiff
path: root/sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch
diff options
context:
space:
mode:
Diffstat (limited to 'sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch')
-rw-r--r--sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch b/sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch
deleted file mode 100644
index 8678316bfc87..000000000000
--- a/sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-* asturm 2023-08-20: Combination of two commits from upstream git master
- 3c2579cd: Pick the only hunk relevant for exiv2-0.28...
- 64583490: Blend with that to fix build w/o exiv2 and fix indendation...
-
-
-From 3c2579cd171314f7e408c00bc8e793330dcc07ba Mon Sep 17 00:00:00 2001
-From: Cyril Richard <cyril.richard42@gmail.com>
-Date: Sun, 4 Jun 2023 22:10:55 +0000
-Subject: [PATCH] XISF image import
-
-From 64583490214302f4057cf223d7591be9d2172a4f Mon Sep 17 00:00:00 2001
-From: Vincent Hourdin <vh@free-astro.org>
-Date: Mon, 5 Jun 2023 00:27:56 +0200
-Subject: [PATCH] fixing exiv2 as optional
-
---- a/src/core/exif.cpp
-+++ b/src/core/exif.cpp
-@@ -121,10 +121,18 @@
- #endif
- }
-
-+#ifdef HAVE_EXIV2
-+#if EXIV2_TEST_VERSION(0,28,0)
-+typedef Exiv2::Image::UniquePtr ImagePtr;
-+#else
-+typedef Exiv2::Image::AutoPtr ImagePtr;
-+#endif
-+#endif
-+
- gchar* siril_get_date_from_exif(const char *filename) {
- #ifdef HAVE_EXIV2
- try {
-- Exiv2::Image::AutoPtr image = Exiv2::ImageFactory::open(WIDEN(filename));
-+ ImagePtr image = Exiv2::ImageFactory::open(WIDEN(filename));
- if (image.get() == 0) {
- fprintf(stderr, "Error Cannot open the file.\n");
- return NULL;
---
-GitLab