summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-08 19:00:25 +0000
committerMiguel Freitas <miguelfreitas@users.sourceforge.net>2004-04-08 19:00:25 +0000
commita08d0489c9402ceab1e0e455dd304cb1ac4d38b9 (patch)
treea8f3362f2e249469532ced3f269eb422f0aad633
parent51ccaafbd51561070c4ba3399fa808bf6c2ca9d6 (diff)
downloadxine-lib-a08d0489c9402ceab1e0e455dd304cb1ac4d38b9.tar.gz
xine-lib-a08d0489c9402ceab1e0e455dd304cb1ac4d38b9.tar.bz2
lib order matters for static linking
CVS patchset: 6353 CVS date: 2004/04/08 19:00:25
-rw-r--r--src/demuxers/Makefile.am2
-rw-r--r--src/libvorbis/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/demuxers/Makefile.am b/src/demuxers/Makefile.am
index 5987f7bd7..82686fd9d 100644
--- a/src/demuxers/Makefile.am
+++ b/src/demuxers/Makefile.am
@@ -50,7 +50,7 @@ lib_LTLIBRARIES = $(ogg_module) $(asf_module) $(mng_module) $(image_module) \
xineplug_dmx_flv.la
xineplug_dmx_ogg_la_SOURCES = demux_ogg.c
-xineplug_dmx_ogg_la_LIBADD = $(OGG_LIBS) $(VORBIS_LIBS) $(SPEEX_LIBS) $(THEORA_LIBS) $(XINE_LIB)
+xineplug_dmx_ogg_la_LIBADD = $(VORBIS_LIBS) $(SPEEX_LIBS) $(THEORA_LIBS) $(OGG_LIBS) $(XINE_LIB)
xineplug_dmx_ogg_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@
xineplug_dmx_avi_la_SOURCES = demux_avi.c
diff --git a/src/libvorbis/Makefile.am b/src/libvorbis/Makefile.am
index 29a071993..8e3ca9cbd 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)
+xineplug_decode_vorbis_la_LIBADD = $(VORBIS_LIBS) $(OGG_LIBS)
xineplug_decode_vorbis_la_LDFLAGS = -avoid-version -module @XINE_PLUGIN_MIN_SYMS@