diff options
Diffstat (limited to 'src/libvorbis')
| -rw-r--r-- | src/libvorbis/Makefile.am | 5 | ||||
| -rw-r--r-- | src/libvorbis/xine_decoder.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/libvorbis/Makefile.am b/src/libvorbis/Makefile.am index 9966ff48a..09abced93 100644 --- a/src/libvorbis/Makefile.am +++ b/src/libvorbis/Makefile.am @@ -1,7 +1,5 @@ include $(top_srcdir)/misc/Makefile.common -AM_CFLAGS = $(VORBIS_CFLAGS) - libdir = $(XINE_PLUGINDIR) if HAVE_VORBIS @@ -12,4 +10,5 @@ lib_LTLIBRARIES = $(vorbis_module) xineplug_decode_vorbis_la_SOURCES = xine_decoder.c xineplug_decode_vorbis_la_LIBADD = $(VORBIS_LIBS) $(OGG_LIBS) $(XINE_LIB) -xineplug_decode_vorbis_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ +xineplug_decode_vorbis_la_CFLAGS = $(VORBIS_CFLAGS) $(VISIBILITY_FLAG) +xineplug_decode_vorbis_la_LDFLAGS = -avoid-version -module diff --git a/src/libvorbis/xine_decoder.c b/src/libvorbis/xine_decoder.c index 7db5fed02..12d0a83f2 100644 --- a/src/libvorbis/xine_decoder.c +++ b/src/libvorbis/xine_decoder.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: xine_decoder.c,v 1.46 2006/06/02 22:18:58 dsalt Exp $ + * $Id: xine_decoder.c,v 1.47 2006/07/10 22:08:30 dgp85 Exp $ * * (ogg/)vorbis audio decoder plugin (libvorbis wrapper) for xine */ @@ -344,7 +344,7 @@ static const decoder_info_t dec_info_audio = { 5 /* priority */ }; -const plugin_info_t xine_plugin_info[] = { +const plugin_info_t xine_plugin_info[] EXPORTED = { /* type, API, "name", version, special_info, init_function */ { PLUGIN_AUDIO_DECODER, 15, "vorbis", XINE_VERSION_CODE, &dec_info_audio, init_plugin }, { PLUGIN_NONE, 0, "", 0, NULL, NULL } |
