Mercurial > audlegacy-plugins
changeset 434:7385182ae4b8 trunk
[svn] - add missing config.h inclusion for wavpack, null and metronom plugin
author | giacomo |
---|---|
date | Mon, 15 Jan 2007 12:02:09 -0800 |
parents | 38fe08dff5cd |
children | c18fd1befd1f |
files | ChangeLog src/metronom/metronom.c src/null/null.c src/wavpack/libwavpack.cxx src/wavpack/ui.cxx |
diffstat | 5 files changed, 24 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Jan 15 11:54:32 2007 -0800 +++ b/ChangeLog Mon Jan 15 12:02:09 2007 -0800 @@ -1,3 +1,21 @@ +2007-01-15 19:54:32 +0000 Giacomo Lozito <james@develia.org> + revision [950] + - added status icon plugin (written from scratch, with code from gtk 2.10) + trunk/configure.ac | 21 + + trunk/mk/rules.mk.in | 2 + trunk/src/statusicon/Makefile | 18 + + trunk/src/statusicon/gtktrayicon-x11.c | 522 +++++++++++++++++++++++++++++++++ + trunk/src/statusicon/gtktrayicon.h | 75 ++++ + trunk/src/statusicon/si.c | 103 ++++++ + trunk/src/statusicon/si.h | 44 ++ + trunk/src/statusicon/si.xpm | 117 +++++++ + trunk/src/statusicon/si_audacious.h | 30 + + trunk/src/statusicon/si_common.h | 35 ++ + trunk/src/statusicon/si_ui.c | 148 +++++++++ + trunk/src/statusicon/si_ui.h | 32 ++ + 12 files changed, 1147 insertions(+) + + 2007-01-15 16:33:07 +0000 William Pitcock <nenolod@sacredspiral.co.uk> revision [948] - remove blanket http:// grabbing -- probing for mp3 now works by VFS
--- a/src/metronom/metronom.c Mon Jan 15 11:54:32 2007 -0800 +++ b/src/metronom/metronom.c Mon Jan 15 12:02:09 2007 -0800 @@ -17,8 +17,9 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "audacious/plugin.h" -#include "audacious/util.h" +#include <audacious/plugin.h> +#include <audacious/util.h> +#include "../../config.h" #include <glib.h> #include <string.h>
--- a/src/null/null.c Mon Jan 15 11:54:32 2007 -0800 +++ b/src/null/null.c Mon Jan 15 12:02:09 2007 -0800 @@ -26,6 +26,7 @@ #include <audacious/plugin.h> #include <audacious/util.h> #include <audacious/configdb.h> +#include "../../config.h" static GTimer *timer; static gulong offset_time, written;
--- a/src/wavpack/libwavpack.cxx Mon Jan 15 11:54:32 2007 -0800 +++ b/src/wavpack/libwavpack.cxx Mon Jan 15 12:02:09 2007 -0800 @@ -17,6 +17,7 @@ #include <iconv.h> #include <math.h> #include "tags.h" +#include "../../config.h" #ifndef M_LN10 #define M_LN10 2.3025850929940456840179914546843642 #endif