diff options
author | dholland <dholland@pkgsrc.org> | 2012-05-06 19:06:21 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2012-05-06 19:06:21 +0000 |
commit | 04f9a750cff9ddefd9ebe2ca53f40e16ed76997f (patch) | |
tree | 1fc93b5475d5dba5d0344d87766a0ab74a7bd4f8 /audio/audacious | |
parent | 81a4ba57ecfd42d78970ae2496e907adcd7ce825 (diff) | |
download | pkgsrc-04f9a750cff9ddefd9ebe2ca53f40e16ed76997f.tar.gz |
Build fixes for new glib2.
Diffstat (limited to 'audio/audacious')
-rw-r--r-- | audio/audacious/distinfo | 4 | ||||
-rw-r--r-- | audio/audacious/patches/patch-src_audacious_i18n_h | 15 | ||||
-rw-r--r-- | audio/audacious/patches/patch-src_audacious_ui__skinned__window_c | 15 |
3 files changed, 33 insertions, 1 deletions
diff --git a/audio/audacious/distinfo b/audio/audacious/distinfo index 59751744714..5e96e040a9c 100644 --- a/audio/audacious/distinfo +++ b/audio/audacious/distinfo @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.4 2011/04/21 20:01:03 hans Exp $ +$NetBSD: distinfo,v 1.5 2012/05/06 19:12:22 dholland Exp $ SHA1 (audacious-1.5.1.tbz2) = 571ed77333c4d85dab901770f6640501930a748c RMD160 (audacious-1.5.1.tbz2) = 1748b7075cef3fd0d41fb74c44109e294433d03b Size (audacious-1.5.1.tbz2) = 1374028 bytes SHA1 (patch-aa) = a95588e0f2c27f1f520cb687421f5d33e01e5155 +SHA1 (patch-src_audacious_i18n_h) = a0524ed265fb1298cf741f5c3af2f9893bde3bfe +SHA1 (patch-src_audacious_ui__skinned__window_c) = 1aa195373ee7a2542a8d4e2b71b611a533c00483 diff --git a/audio/audacious/patches/patch-src_audacious_i18n_h b/audio/audacious/patches/patch-src_audacious_i18n_h new file mode 100644 index 00000000000..1f6a34647e9 --- /dev/null +++ b/audio/audacious/patches/patch-src_audacious_i18n_h @@ -0,0 +1,15 @@ +$NetBSD: patch-src_audacious_i18n_h,v 1.1 2012/05/06 19:12:22 dholland Exp $ + +Fix build with latest glib2. + +--- src/audacious/i18n.h~ 2008-05-23 22:00:34.000000000 +0000 ++++ src/audacious/i18n.h +@@ -20,7 +20,7 @@ + #ifndef AUDACIOUS_I18N_H + #define AUDACIOUS_I18N_H + +-#include <glib/gstrfuncs.h> ++#include <glib.h> + #include <libintl.h> + + #define _(String) dgettext (PACKAGE, String) diff --git a/audio/audacious/patches/patch-src_audacious_ui__skinned__window_c b/audio/audacious/patches/patch-src_audacious_ui__skinned__window_c new file mode 100644 index 00000000000..4707bc7bf4c --- /dev/null +++ b/audio/audacious/patches/patch-src_audacious_ui__skinned__window_c @@ -0,0 +1,15 @@ +$NetBSD: patch-src_audacious_ui__skinned__window_c,v 1.1 2012/05/06 19:12:22 dholland Exp $ + +Fix build with latest glib2. + +--- src/audacious/ui_skinned_window.c~ 2008-05-23 22:00:34.000000000 +0000 ++++ src/audacious/ui_skinned_window.c +@@ -23,7 +23,7 @@ + + #include <gtk/gtkmain.h> + #include <glib-object.h> +-#include <glib/gmacros.h> ++#include <glib.h> + #include <gtk/gtkmarshal.h> + #include <gtk/gtkwindow.h> + #include <string.h> |