diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-04-08 19:00:25 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-04-08 19:00:25 +0000 |
commit | a08d0489c9402ceab1e0e455dd304cb1ac4d38b9 (patch) | |
tree | a8f3362f2e249469532ced3f269eb422f0aad633 /src/demuxers | |
parent | 51ccaafbd51561070c4ba3399fa808bf6c2ca9d6 (diff) | |
download | xine-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
Diffstat (limited to 'src/demuxers')
-rw-r--r-- | src/demuxers/Makefile.am | 2 |
1 files changed, 1 insertions, 1 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 |