Mercurial > audlegacy-plugins
changeset 9:6303e3a8a6b8 trunk
[svn] - remove last references to libaudacious.
author | nenolod |
---|---|
date | Mon, 18 Sep 2006 02:42:15 -0700 |
parents | 1a34353aeca5 |
children | 844761e5dac3 |
files | ChangeLog src/General/scrobbler/queue.h src/General/scrobbler/scrobbler.h src/Input/cdaudio/cddb.c src/Input/cdaudio/cdinfo.c src/Input/flac/http.c src/Input/flac/tag.c src/Input/sid/xmms-sid.c src/Output/OSS/about.c src/Output/OSS/audio.c src/Output/OSS/init.c src/Output/alsa/about.c src/Output/alsa/audio.c src/Output/jack/jack.c src/Visualization/paranormal/client.c |
diffstat | 15 files changed, 24 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Sep 18 02:30:20 2006 -0700 +++ b/ChangeLog Mon Sep 18 02:42:15 2006 -0700 @@ -1,3 +1,13 @@ +2006-09-18 09:30:20 +0000 William Pitcock <nenolod@nenolod.net> + revision [16] + - make effect plugins build + + + Changes: Modified: + +1 -1 trunk/src/Effect/stereo_plugin/stereo.c + +0 -1 trunk/src/Effect/voice_removal/voice_removal.c + + 2006-09-18 09:28:36 +0000 William Pitcock <nenolod@nenolod.net> revision [14] - make ladspa build
--- a/src/General/scrobbler/queue.h Mon Sep 18 02:30:20 2006 -0700 +++ b/src/General/scrobbler/queue.h Mon Sep 18 02:42:15 2006 -0700 @@ -1,7 +1,7 @@ #ifndef QUEUE_H #define QUEUE_H 1 -#include "libaudacious/titlestring.h" +#include "audacious/titlestring.h" #define I_ARTIST(i) i->artist #define I_TITLE(i) i->title
--- a/src/General/scrobbler/scrobbler.h Mon Sep 18 02:30:20 2006 -0700 +++ b/src/General/scrobbler/scrobbler.h Mon Sep 18 02:42:15 2006 -0700 @@ -1,7 +1,7 @@ #ifndef NET_H #define NET_H 1 -#include "libaudacious/titlestring.h" +#include "audacious/titlestring.h" int sc_idle(GMutex *); void sc_init(char *, char *);
--- a/src/Input/cdaudio/cddb.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Input/cdaudio/cddb.c Mon Sep 18 02:42:15 2006 -0700 @@ -25,7 +25,7 @@ #include <gtk/gtk.h> #include <stdarg.h> -#include <libaudacious/util.h> +#include <audacious/util.h> #include "http.h" #include "cdaudio.h"
--- a/src/Input/cdaudio/cdinfo.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Input/cdaudio/cdinfo.c Mon Sep 18 02:42:15 2006 -0700 @@ -25,7 +25,7 @@ #include <glib/gi18n.h> #include <glib/gprintf.h> -#include <libaudacious/rcfile.h> +#include <audacious/rcfile.h> #include "cdaudio.h"
--- a/src/Input/flac/http.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Input/flac/http.c Mon Sep 18 02:42:15 2006 -0700 @@ -31,7 +31,7 @@ #include <stdlib.h> #include <audacious/plugin.h> -#include <libaudacious/util.h> +#include <audacious/util.h> #ifdef HAVE_CONFIG_H #include <config.h>
--- a/src/Input/flac/tag.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Input/flac/tag.c Mon Sep 18 02:42:15 2006 -0700 @@ -25,7 +25,7 @@ #include <glib.h> #include <audacious/plugin.h> #include <audacious/util.h> -#include <libaudacious/titlestring.h> +#include <audacious/titlestring.h> #include "FLAC/metadata.h" #include "plugin_common/tags.h"
--- a/src/Input/sid/xmms-sid.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Input/sid/xmms-sid.c Mon Sep 18 02:42:15 2006 -0700 @@ -32,7 +32,7 @@ #include <audacious/plugin.h> #include <audacious/output.h> -#include <libaudacious/util.h> +#include <audacious/util.h> #include <gdk/gdkkeysyms.h> #include <gtk/gtk.h>
--- a/src/Output/OSS/about.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/OSS/about.c Mon Sep 18 02:42:15 2006 -0700 @@ -25,7 +25,7 @@ #include <glib/gi18n.h> #include <gtk/gtk.h> -#include <libaudacious/util.h> +#include <audacious/util.h> void
--- a/src/Output/OSS/audio.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/OSS/audio.c Mon Sep 18 02:42:15 2006 -0700 @@ -20,7 +20,7 @@ */ #include <glib.h> -#include <libaudacious/util.h> +#include <audacious/util.h> #include <string.h> #include <unistd.h>
--- a/src/Output/OSS/init.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/OSS/init.c Mon Sep 18 02:42:15 2006 -0700 @@ -21,7 +21,7 @@ #include <glib.h> #include <string.h> -#include <libaudacious/configdb.h> +#include <audacious/configdb.h> #include "OSS.h"
--- a/src/Output/alsa/about.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/alsa/about.c Mon Sep 18 02:42:15 2006 -0700 @@ -17,7 +17,7 @@ */ #include "alsa.h" -#include <libaudacious/util.h> +#include <audacious/util.h> void alsa_about(void) {
--- a/src/Output/alsa/audio.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/alsa/audio.c Mon Sep 18 02:42:15 2006 -0700 @@ -31,7 +31,7 @@ #include "alsa.h" #include <ctype.h> -#include <libaudacious/xconvert.h> +#include <audacious/xconvert.h> static snd_pcm_t *alsa_pcm; static snd_output_t *logs;
--- a/src/Output/jack/jack.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Output/jack/jack.c Mon Sep 18 02:42:15 2006 -0700 @@ -232,6 +232,7 @@ /* set the port connection mode */ jack_set_port_connection_mode(); + /* XXX unportable to 2.x */ xmmslibhandle = dlopen("libaudacious.so", RTLD_NOW); if(xmmslibhandle) {
--- a/src/Visualization/paranormal/client.c Mon Sep 18 02:30:20 2006 -0700 +++ b/src/Visualization/paranormal/client.c Mon Sep 18 02:42:15 2006 -0700 @@ -31,7 +31,7 @@ #include <gtk/gtk.h> #include <audacious/plugin.h> -#include <libaudacious/configdb.h> +#include <audacious/configdb.h> #include <SDL/SDL.h> #include <SDL/SDL_thread.h>