changeset 1139:038298d9fbe3 trunk

[svn] - projectm: convert to plugin2 architecture. now SVN users have milkdrop back.
author nenolod
date Mon, 28 May 2007 02:56:10 -0700
parents 402ee2120cb1
children 054fa57ecfb1
files ChangeLog src/projectm/main.c
diffstat 2 files changed, 10 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sun May 27 17:11:58 2007 -0700
+++ b/ChangeLog	Mon May 28 02:56:10 2007 -0700
@@ -1,3 +1,10 @@
+2007-05-28 00:11:58 +0000  Giacomo Lozito <james@develia.org>
+  revision [2442]
+  - added options in configure.ac to disable sse2 and altivec support (madplug) even if available on the system
+  trunk/configure.ac |   62 ++++++++++++++++++++++++++++++++---------------------
+  1 file changed, 38 insertions(+), 24 deletions(-)
+
+
 2007-05-27 21:30:06 +0000  Ralf Ertzinger <ralf@skytale.net>
   revision [2440]
   Move effect plugin handling out of the output plugins
--- a/src/projectm/main.c	Sun May 27 17:11:58 2007 -0700
+++ b/src/projectm/main.c	Mon May 28 02:56:10 2007 -0700
@@ -89,11 +89,9 @@
   projectM_render_freq     // Render the freq data, must return quickly
 };
 
-// XMMS entry point
-VisPlugin *get_vplugin_info(void)
-{
-  return &projectM_vtable;
-}
+VisPlugin *projectM_vplist[] = { &projectM_vtable, NULL };
+
+DECLARE_PLUGIN(projectm, NULL, NULL, NULL, NULL, NULL, NULL, projectM_vplist);
 
 // Our worker thread
 SDL_Thread *worker_thread;