Mercurial > audlegacy
changeset 4531:cbb1f66d8971
Fix PLUGIN_FILENAME() behaviour to not include lib on the front.
This is related to the Ubuntu PulseAudio disaster.
author | William Pitcock <nenolod@atheme.org> |
---|---|
date | Mon, 05 May 2008 07:48:56 -0500 |
parents | d2fd41d3964e |
children | 97b29dec6c6b |
files | src/audacious/pluginenum.h |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/pluginenum.h Fri May 02 10:34:07 2008 +0200 +++ b/src/audacious/pluginenum.h Mon May 05 07:48:56 2008 -0500 @@ -28,7 +28,7 @@ #include <glib.h> #include "config.h" -#define PLUGIN_FILENAME(name) ("lib" name SHARED_SUFFIX) +#define PLUGIN_FILENAME(name) (name SHARED_SUFFIX) void plugin_system_init(void); void plugin_system_cleanup(void);