diff options
author | joerg <joerg> | 2013-10-14 14:33:31 +0000 |
---|---|---|
committer | joerg <joerg> | 2013-10-14 14:33:31 +0000 |
commit | 993a840121470b5036a792694bca68e4aa7562db (patch) | |
tree | 1fe4b7d0be981f7e74adeb4a209c16e7d6efa756 | |
parent | 7ee466e0eb0ee1fb2eed94749e881916de78f182 (diff) | |
download | pkgsrc-993a840121470b5036a792694bca68e4aa7562db.tar.gz |
Fix inline use.
-rw-r--r-- | comms/jpilot/distinfo | 4 | ||||
-rw-r--r-- | comms/jpilot/patches/patch-utils.c | 13 | ||||
-rw-r--r-- | comms/jpilot/patches/patch-utils.h | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/comms/jpilot/distinfo b/comms/jpilot/distinfo index 0bde6f2bde4..3c375f91af8 100644 --- a/comms/jpilot/distinfo +++ b/comms/jpilot/distinfo @@ -1,5 +1,7 @@ -$NetBSD: distinfo,v 1.23 2013/10/10 10:58:38 bad Exp $ +$NetBSD: distinfo,v 1.24 2013/10/14 14:33:31 joerg Exp $ SHA1 (jpilot-1.8.1.tar.gz) = 98a70bbb30bcccb8ba74aecb6a41b819dc8a4a3b RMD160 (jpilot-1.8.1.tar.gz) = 4b40d625d4582994eeb5acfa296ed0925a59b7bd Size (jpilot-1.8.1.tar.gz) = 1582869 bytes +SHA1 (patch-utils.c) = 3e7551d0859820cc103a6c5cbfbac8d4ff21eee9 +SHA1 (patch-utils.h) = 950d4de9824620847ca8b7f197d788c666a69d81 diff --git a/comms/jpilot/patches/patch-utils.c b/comms/jpilot/patches/patch-utils.c new file mode 100644 index 00000000000..b51a2f2bee2 --- /dev/null +++ b/comms/jpilot/patches/patch-utils.c @@ -0,0 +1,13 @@ +$NetBSD: patch-utils.c,v 1.1 2013/10/14 14:33:31 joerg Exp $ + +--- utils.c.orig 2013-10-14 13:14:27.000000000 +0000 ++++ utils.c +@@ -899,7 +899,7 @@ void clist_clear(GtkCList *clist) + + /* Encapsulate GTK tooltip function which no longer supports disabling as + * of GTK 2.12 */ +-inline void set_tooltip(int show_tooltip, ++void set_tooltip(int show_tooltip, + GtkTooltips *tooltips, + GtkWidget *widget, + const gchar *tip_text, diff --git a/comms/jpilot/patches/patch-utils.h b/comms/jpilot/patches/patch-utils.h new file mode 100644 index 00000000000..33821eae31b --- /dev/null +++ b/comms/jpilot/patches/patch-utils.h @@ -0,0 +1,13 @@ +$NetBSD: patch-utils.h,v 1.1 2013/10/14 14:33:31 joerg Exp $ + +--- utils.h.orig 2013-10-14 13:14:44.000000000 +0000 ++++ utils.h +@@ -349,7 +349,7 @@ void entry_set_multiline_truncate(GtkEnt + + void clist_clear(GtkCList *clist); + +-inline void set_tooltip(int show_tooltip, ++void set_tooltip(int show_tooltip, + GtkTooltips *tooltips, + GtkWidget *widget, + const gchar *tip_text, |