summaryrefslogtreecommitdiff
path: root/graphics
diff options
context:
space:
mode:
authorreed <reed@pkgsrc.org>2003-10-06 22:09:47 +0000
committerreed <reed@pkgsrc.org>2003-10-06 22:09:47 +0000
commitaa5cbd7fb2c9a916b0732b531ead7ea2d2681804 (patch)
treee2188c7e6ff16bd28fddfbfe2f4838145e05f17f /graphics
parent4bb475559598d86caeaf247fb85f6abd90f23d24 (diff)
downloadpkgsrc-aa5cbd7fb2c9a916b0732b531ead7ea2d2681804.tar.gz
Add patch to make filmgimp build under gcc 3.3.1. (Closes my PR
#23062; okay'd by wiz.)
Diffstat (limited to 'graphics')
-rw-r--r--graphics/filmgimp/patches/patch-aa36
1 files changed, 36 insertions, 0 deletions
diff --git a/graphics/filmgimp/patches/patch-aa b/graphics/filmgimp/patches/patch-aa
new file mode 100644
index 00000000000..93eec99a09a
--- /dev/null
+++ b/graphics/filmgimp/patches/patch-aa
@@ -0,0 +1,36 @@
+$NetBSD: patch-aa,v 1.1 2003/10/06 22:09:47 reed Exp $
+
+store_frame_manager.c:311:7: missing terminating " character
+
+--- app/store_frame_manager.c.orig 2003-10-05 06:30:56.000000000 +0000
++++ app/store_frame_manager.c 2003-10-05 06:31:41.000000000 +0000
+@@ -308,11 +308,11 @@
+
+ tooltip = gtk_tooltips_new ();
+ gtk_tooltips_set_tip (tooltip, event_box,
+- "RO - read only. This store will not be saved\n
+- A - advance. This store is affected by the advance controls\n
+- F - flip. This store is affected by the flip book controls\n
+- Bg - background. This is the src in a clone and the bg in the onionskin\n
+- * - modified. This store has been modified", NULL);
++ "RO - read only. This store will not be saved\n"
++ "A - advance. This store is affected by the advance controls\n"
++ "F - flip. This store is affected by the flip book controls\n"
++ "Bg - background. This is the src in a clone and the bg in the onionskin\n"
++ "* - modified. This store has been modified", NULL);
+
+ /* Add the CList widget to the vertical box and show it. */
+ gtk_container_add(GTK_CONTAINER(event_box), disp->bfm->sfm->store_list);
+@@ -359,9 +359,9 @@
+
+ tooltip = gtk_tooltips_new ();
+ gtk_tooltips_set_tip (tooltip, slider,
+- "Sets the opacity for onion skinning.\n
+- LMB to drag slider\n
+- MMB to jump", NULL);
++ "Sets the opacity for onion skinning.\n"
++ "LMB to drag slider\n"
++ "MMB to jump", NULL);
+
+ button = gtk_button_new_with_label ("Bg/Fg");
+ gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);