diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2005-11-30 18:44:52 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2005-11-30 18:44:52 +0000 |
commit | 5effdd37bee3a4a10c393dbf739c90cb259180ef (patch) | |
tree | 128afaa671edd134c09fbbead8224caa52245888 | |
parent | 29889061262a94aeb8871b185b29a1699f55af63 (diff) | |
download | xine-lib-5effdd37bee3a4a10c393dbf739c90cb259180ef.tar.gz xine-lib-5effdd37bee3a4a10c393dbf739c90cb259180ef.tar.bz2 |
*BUGFIX*
Added XINE_LIB to linking for this plugins (required on win-platforms).
CVS patchset: 7816
CVS date: 2005/11/30 18:44:52
-rw-r--r-- | src/libflac/Makefile.am | 2 | ||||
-rw-r--r-- | src/libtheora/Makefile.am | 2 | ||||
-rw-r--r-- | src/libvorbis/Makefile.am | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/libflac/Makefile.am b/src/libflac/Makefile.am index 18e9798f1..bd49237dc 100644 --- a/src/libflac/Makefile.am +++ b/src/libflac/Makefile.am @@ -11,7 +11,7 @@ libdir = $(XINE_PLUGINDIR) lib_LTLIBRARIES = $(flac_module) xineplug_flac_la_SOURCES = demux_flac.c decoder_flac.c -xineplug_flac_la_LIBADD = $(LIBFLAC_LIBS) +xineplug_flac_la_LIBADD = $(LIBFLAC_LIBS) $(XINE_LIB) xineplug_flac_la_LDFLAGS = -avoid-version -module -lFLAC @XINE_PLUGIN_MIN_SYMS@ noinst_HEADERS = demux_flac.h diff --git a/src/libtheora/Makefile.am b/src/libtheora/Makefile.am index 69384efef..94c1e8f39 100644 --- a/src/libtheora/Makefile.am +++ b/src/libtheora/Makefile.am @@ -11,5 +11,5 @@ endif lib_LTLIBRARIES = $(theora_module) xineplug_decode_theora_la_SOURCES = xine_decoder.c -xineplug_decode_theora_la_LIBADD = $(OGG_LIBS) $(THEORA_LIBS) +xineplug_decode_theora_la_LIBADD = $(OGG_LIBS) $(THEORA_LIBS) $(XINE_LIB) xineplug_decode_theora_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ diff --git a/src/libvorbis/Makefile.am b/src/libvorbis/Makefile.am index 8e3ca9cbd..9966ff48a 100644 --- a/src/libvorbis/Makefile.am +++ b/src/libvorbis/Makefile.am @@ -11,5 +11,5 @@ endif lib_LTLIBRARIES = $(vorbis_module) xineplug_decode_vorbis_la_SOURCES = xine_decoder.c -xineplug_decode_vorbis_la_LIBADD = $(VORBIS_LIBS) $(OGG_LIBS) +xineplug_decode_vorbis_la_LIBADD = $(VORBIS_LIBS) $(OGG_LIBS) $(XINE_LIB) xineplug_decode_vorbis_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@ |