changeset 528:4d8b92b55acf trunk

[svn] - add config.h includes where needed
author nenolod
date Mon, 22 Jan 2007 18:53:19 -0800
parents d124034ebea3
children b294765a455c
files ChangeLog src/adplug/adplug-xmms.cc src/audiocompress/audacious-glue.c src/cdaudio/cdinfo.c src/console/Audacious_Config.cxx src/console/Audacious_Driver.cxx src/echo_plugin/gui.c src/statusicon/gtktrayicon-x11.c src/tta/aud-tta.c src/wav/wav-sndfile.c src/wav/wav.c
diffstat 11 files changed, 98 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Jan 22 18:41:17 2007 -0800
+++ b/ChangeLog	Mon Jan 22 18:53:19 2007 -0800
@@ -1,3 +1,66 @@
+2007-01-23 02:41:17 +0000  William Pitcock <nenolod@sacredspiral.co.uk>
+  revision [1140]
+  - glib/gi18n.h -> audacious/i18n.h for automatic dgettext support
+  
+  trunk/src/CoreAudio/configure.c          |    3 ++-
+  trunk/src/CoreAudio/coreaudio.c          |    2 +-
+  trunk/src/OSS/OSS.c                      |    2 +-
+  trunk/src/OSS/about.c                    |    2 +-
+  trunk/src/OSS/configure.c                |    2 +-
+  trunk/src/aac/src/libmp4.c               |    2 +-
+  trunk/src/adplug/adplug-xmms.cc          |    2 +-
+  trunk/src/alac/plugin.c                  |    2 +-
+  trunk/src/alsa/alsa.h                    |    2 +-
+  trunk/src/audiocompress/audacious-glue.c |    2 +-
+  trunk/src/blur_scope/blur_scope.c        |    2 +-
+  trunk/src/blur_scope/config.c            |    2 +-
+  trunk/src/cdaudio/cdaudio.c              |    2 +-
+  trunk/src/cdaudio/cdinfo.c               |    2 +-
+  trunk/src/cdaudio/configure.c            |    2 +-
+  trunk/src/console/Audacious_Config.cxx   |    2 +-
+  trunk/src/console/Audacious_Driver.cxx   |    2 +-
+  trunk/src/disk_writer/disk_writer.c      |    2 +-
+  trunk/src/echo_plugin/echo.c             |    2 +-
+  trunk/src/echo_plugin/gui.c              |    2 +-
+  trunk/src/esd/about.c                    |    2 +-
+  trunk/src/esd/configure.c                |    2 +-
+  trunk/src/esd/esd.c                      |    2 +-
+  trunk/src/evdev-plug/ed.c                |    2 +-
+  trunk/src/evdev-plug/ed_internals.c      |    2 +-
+  trunk/src/evdev-plug/ed_ui.c             |    2 +-
+  trunk/src/jack/jack.c                    |    2 +-
+  trunk/src/lirc/about.c                   |    2 +-
+  trunk/src/lirc/lirc.c                    |    2 +-
+  trunk/src/mpg123/configure.c             |    2 +-
+  trunk/src/mpg123/fileinfo.c              |    2 +-
+  trunk/src/mpg123/mpg123.c                |    2 +-
+  trunk/src/mpg123/rtsp.c                  |    2 +-
+  trunk/src/null/null.c                    |    2 +-
+  trunk/src/paranormal/plugin.c            |    2 +-
+  trunk/src/rovascope/plugin.c             |    2 +-
+  trunk/src/scrobbler/configure.c          |    2 +-
+  trunk/src/scrobbler/gtkstuff.c           |    2 +-
+  trunk/src/scrobbler/plugin.c             |    2 +-
+  trunk/src/song_change/song_change.c      |    2 +-
+  trunk/src/statusicon/gtktrayicon-x11.c   |    2 +-
+  trunk/src/statusicon/si_ui.c             |    2 +-
+  trunk/src/stereo_plugin/stereo.c         |    2 +-
+  trunk/src/sun/about.c                    |    6 +++---
+  trunk/src/sun/configure.c                |    7 ++++---
+  trunk/src/sun/sun.c                      |    5 +++--
+  trunk/src/timidity/src/interface.c       |    3 ++-
+  trunk/src/timidity/src/xmms-timidity.c   |    2 +-
+  trunk/src/tonegen/tonegen.c              |    2 +-
+  trunk/src/tta/aud-tta.c                  |    2 +-
+  trunk/src/vorbis/configure.c             |    2 +-
+  trunk/src/vorbis/fileinfo.c              |    2 +-
+  trunk/src/vorbis/vorbis.c                |    2 +-
+  trunk/src/wav/wav-sndfile.c              |    2 +-
+  trunk/src/wav/wav.c                      |    2 +-
+  trunk/src/wma/wma.c                      |    2 +-
+  56 files changed, 65 insertions(+), 61 deletions(-)
+
+
 2007-01-22 22:56:02 +0000  Giacomo Lozito <james@develia.org>
   revision [1138]
   - metronom: use g_malloc in place of malloc
--- a/src/adplug/adplug-xmms.cc	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/adplug/adplug-xmms.cc	Mon Jan 22 18:53:19 2007 -0800
@@ -17,6 +17,10 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <algorithm>
 #include <sstream>
 #include <stdlib.h>
--- a/src/audiocompress/audacious-glue.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/audiocompress/audacious-glue.c	Mon Jan 22 18:53:19 2007 -0800
@@ -2,6 +2,10 @@
 ** Audacious effect plugin for AudioCompress
 */
 
+#ifdef HAVE_CONFIG_H
+# include "../../config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/src/cdaudio/cdinfo.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/cdaudio/cdinfo.c	Mon Jan 22 18:53:19 2007 -0800
@@ -21,7 +21,7 @@
 #include "cdinfo.h"
 
 #include <glib.h>
-#include <audacious/gi18n.h>
+#include <audacious/i18n.h>
 #include <glib/gprintf.h>
 
 #include <audacious/rcfile.h>
--- a/src/console/Audacious_Config.cxx	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/console/Audacious_Config.cxx	Mon Jan 22 18:53:19 2007 -0800
@@ -8,6 +8,10 @@
  * Libconsole preferences GUI by Giacomo Lozito
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <glib.h>
 #include <audacious/i18n.h>
 #include <gtk/gtk.h>
--- a/src/console/Audacious_Driver.cxx	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/console/Audacious_Driver.cxx	Mon Jan 22 18:53:19 2007 -0800
@@ -6,6 +6,10 @@
  * http://www.slack.net/~ant/libs/
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <glib.h>
 #include <audacious/i18n.h>
 #include <gtk/gtk.h>
--- a/src/echo_plugin/gui.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/echo_plugin/gui.c	Mon Jan 22 18:53:19 2007 -0800
@@ -1,3 +1,7 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <gtk/gtk.h>
 #include <audacious/i18n.h>
 #include "audacious/util.h"
--- a/src/statusicon/gtktrayicon-x11.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/statusicon/gtktrayicon-x11.c	Mon Jan 22 18:53:19 2007 -0800
@@ -27,7 +27,7 @@
 #include "si_common.h"
 #include <string.h>
 #include <glib.h>
-#include <audacious/gi18n.h>
+#include <audacious/i18n.h>
 
 #include <gtk/gtkprivate.h>
 #include "gtktrayicon.h"
--- a/src/tta/aud-tta.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/tta/aud-tta.c	Mon Jan 22 18:53:19 2007 -0800
@@ -28,6 +28,11 @@
  * Please see the file COPYING in this directory for full copyright
  * information.
  */
+
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
--- a/src/wav/wav-sndfile.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/wav/wav-sndfile.c	Mon Jan 22 18:53:19 2007 -0800
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <glib.h>
 #include <string.h>
 #include <math.h>
--- a/src/wav/wav.c	Mon Jan 22 18:41:17 2007 -0800
+++ b/src/wav/wav.c	Mon Jan 22 18:53:19 2007 -0800
@@ -19,6 +19,10 @@
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "wav.h"
 
 #include <glib.h>