summaryrefslogtreecommitdiff
path: root/graphics/shotwell
diff options
context:
space:
mode:
authorDavid Thiel <lx@FreeBSD.org>2014-01-29 19:24:07 +0000
committerDavid Thiel <lx@FreeBSD.org>2014-01-29 19:24:07 +0000
commita6c848fec7c4097413c0aa041bb0f227021ad54a (patch)
tree6d497afba1e6834ed6fa008e287fa0370b0d3dd4 /graphics/shotwell
parentUpdate to lastest version, changelog: (diff)
Was sure I removed this. This will fix build.
Notes
Notes: svn path=/head/; revision=341770
Diffstat (limited to 'graphics/shotwell')
-rw-r--r--graphics/shotwell/files/patch-git_89aa16754
1 files changed, 0 insertions, 54 deletions
diff --git a/graphics/shotwell/files/patch-git_89aa167 b/graphics/shotwell/files/patch-git_89aa167
deleted file mode 100644
index 674b40fb1873..000000000000
--- a/graphics/shotwell/files/patch-git_89aa167
+++ /dev/null
@@ -1,54 +0,0 @@
-commit 89aa167726d12f9ae0b53c01a2fdc54601fc3cc5
-Author: Jim Nelson <jim@yorba.org>
-Date: Wed May 29 11:52:09 2013 -0700
-
- Build with LibRaw 0.15: Closes #7012
-
- LibRaw 0.15 removed document-mode processing, which, as their release
- notes say, "no one uses". Compile error were nothing more than
- missing symbols -- Shotwell wasn't using it either.
-
---- src/photos/GRaw.vala
-+++ src/photos/GRaw.vala
-@@ -21,12 +21,6 @@ public enum Colorspace {
- XYZ = 5
- }
-
--public enum DocMode {
-- STANDARD = 0,
-- GRAYSCALE = 1,
-- GRAYSCALE_NO_WHITE_BALANCE = 2
--}
--
- public errordomain Exception {
- UNSPECIFIED,
- UNSUPPORTED_FILE,
-@@ -167,10 +161,6 @@ public class Processor {
- throw_exception("adjust_sizes_info_only", proc.adjust_sizes_info_only());
- }
-
-- public void document_mode_processing() throws Exception {
-- throw_exception("document_mode_processing", proc.document_mode_processing());
-- }
--
- public unowned LibRaw.ImageOther get_image_other() {
- return proc.get_image_other();
- }
-@@ -244,7 +234,6 @@ public class Processor {
- // threshold
- output_params->half_size = half_size;
- // four_color_rgb
-- output_params->document_mode = GRaw.DocMode.STANDARD;
- output_params->highlight = GRaw.HighlightMode.CLIP;
- output_params->use_auto_wb = true;
- output_params->use_camera_wb = true;
---- vapi/libraw.vapi
-+++ vapi/libraw.vapi
-@@ -104,7 +104,6 @@ public struct OutputParams {
- public float threshold;
- public bool half_size;
- public bool four_color_rgb;
-- public int document_mode;
- public int highlight;
- public bool use_auto_wb;
- public bool use_camera_wb;