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/patches | |
parent | 81a4ba57ecfd42d78970ae2496e907adcd7ce825 (diff) | |
download | pkgsrc-04f9a750cff9ddefd9ebe2ca53f40e16ed76997f.tar.gz |
Build fixes for new glib2.
Diffstat (limited to 'audio/audacious/patches')
-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 |
2 files changed, 30 insertions, 0 deletions
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> |