aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Moench-Tegeder <cmt@FreeBSD.org>2022-03-24 10:38:14 +0000
committerChristoph Moench-Tegeder <cmt@FreeBSD.org>2022-03-24 10:38:14 +0000
commitb9710a8d1617715abaf72d72a8023d3666d9dca0 (patch)
tree2256ba134e821e23f6aa09ff27d86768a30849b6
parentb89f1874147db0d8d5ea61149a5e2e46cb807ec3 (diff)
downloadports-b9710a8d1617715abaf72d72a8023d3666d9dca0.tar.gz
ports-b9710a8d1617715abaf72d72a8023d3666d9dca0.zip
graphics/shotwell: unbreak after 843c31724a
vala 0.48.23 misorders variable and constant declarations and puts the definition of DEFAULT_SCALE after it's (only) use: src/shotwell.p/dialogs/ExportDialog.c:146:43: error: use of undeclared identifier 'EXPORT_DIALOG_DEFAULT_SCALE' static gint export_dialog_current_scale = EXPORT_DIALOG_DEFAULT_SCALE; As a workaround, just insert the constant directly.
-rw-r--r--graphics/shotwell/files/patch-src_dialogs_ExportDialog.vala12
1 files changed, 12 insertions, 0 deletions
diff --git a/graphics/shotwell/files/patch-src_dialogs_ExportDialog.vala b/graphics/shotwell/files/patch-src_dialogs_ExportDialog.vala
new file mode 100644
index 000000000000..8963137ef12d
--- /dev/null
+++ b/graphics/shotwell/files/patch-src_dialogs_ExportDialog.vala
@@ -0,0 +1,12 @@
+--- src/dialogs/ExportDialog.vala.orig 2022-03-24 11:17:17.231343000 +0100
++++ src/dialogs/ExportDialog.vala 2022-03-24 11:34:07.028552000 +0100
+@@ -23,7 +23,8 @@
+
+ private static ScaleConstraint current_constraint = ScaleConstraint.ORIGINAL;
+ private static ExportFormatParameters current_parameters = ExportFormatParameters.current();
+- private static int current_scale = DEFAULT_SCALE;
++ // DEFAULT_SCALE, but vala misorders the definitions
++ private static int current_scale = 1200;
+
+ private Gtk.Grid table = new Gtk.Grid();
+ private Gtk.ComboBoxText quality_combo;