aboutsummaryrefslogtreecommitdiff
path: root/audio/uade/files
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2010-03-20 21:34:51 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2010-03-20 21:34:51 +0000
commit4fdaed942d7ff27d0b5b2f69bb2d83a5b948bdee (patch)
treee19cb863e5a43508adb4eaa72df86c674175f120 /audio/uade/files
parent7a149bee8a6119365b99de1c787bf4b90ff4a149 (diff)
downloadports-4fdaed942d7ff27d0b5b2f69bb2d83a5b948bdee.tar.gz
ports-4fdaed942d7ff27d0b5b2f69bb2d83a5b948bdee.zip
Discontinue audacious plugin support. The plugin won't build after audacious
has changed the API [1]. The option will be added again if the plugin gets fixed by the upstream project. [1] http://board.kohina.net/viewtopic.php?t=1212&sid=b6dea715bf62b1d9607435a16dfdd8d5 PR: 144903 (based on) Submitted by: CeDeROM <tomek.cedro@gmail.com>
Notes
Notes: svn path=/head/; revision=251316
Diffstat (limited to 'audio/uade/files')
-rw-r--r--audio/uade/files/patch-src-frontends-audacious-plugin.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/audio/uade/files/patch-src-frontends-audacious-plugin.c b/audio/uade/files/patch-src-frontends-audacious-plugin.c
deleted file mode 100644
index 209dcdde4395..000000000000
--- a/audio/uade/files/patch-src-frontends-audacious-plugin.c
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/frontends/audacious/plugin.c~
-+++ src/frontends/audacious/plugin.c
-@@ -75,6 +75,10 @@ static void uade_seek(int time);
-
- /* GLOBAL VARIABLE DECLARATIONS */
-
-+static gchar *fmts[] = {
-+ "ahx", NULL
-+};
-+
- static InputPlugin uade_ip = {
- .description = "UADE " UADE_VERSION,
- .init = uade_init,
-@@ -87,6 +90,9 @@ static InputPlugin uade_ip = {
- .cleanup = uade_cleanup,
- .get_song_info = uade_get_song_info,
- .file_info_box = uade_file_info,
-+#ifdef __AUDACIOUS_INPUT_PLUGIN_API__
-+ .vfs_extensions = fmts,
-+#endif
- };
-
- #ifndef __AUDACIOUS_INPUT_PLUGIN_API__