diff options
author | Ewald Snel <esnel@users.sourceforge.net> | 2002-10-24 09:42:21 +0000 |
---|---|---|
committer | Ewald Snel <esnel@users.sourceforge.net> | 2002-10-24 09:42:21 +0000 |
commit | 754fcb2fce9b2b9c9c0f04099dd6580428e8ff90 (patch) | |
tree | 21a3c889b4eb12e83120cae394ca02fde3095208 /src/libxineadec | |
parent | 8d96c1b5a9344b593e8fbc1f4f67cc053754eaf9 (diff) | |
download | xine-lib-754fcb2fce9b2b9c9c0f04099dd6580428e8ff90.tar.gz xine-lib-754fcb2fce9b2b9c9c0f04099dd6580428e8ff90.tar.bz2 |
Fix unresolved symbols by linking with the xine library
CVS patchset: 2980
CVS date: 2002/10/24 09:42:21
Diffstat (limited to 'src/libxineadec')
-rw-r--r-- | src/libxineadec/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libxineadec/Makefile.am b/src/libxineadec/Makefile.am index 10ebe0460..ded631840 100644 --- a/src/libxineadec/Makefile.am +++ b/src/libxineadec/Makefile.am @@ -17,14 +17,17 @@ xineplug_decode_roqaudio_la_SOURCES = roqaudio.c xineplug_decode_roqaudio_la_LDFLAGS = -avoid-version -module xineplug_decode_adpcm_la_SOURCES = adpcm.c +xineplug_decode_adpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la xineplug_decode_adpcm_la_LDFLAGS = -avoid-version -module xineplug_decode_logpcm_la_SOURCES = logpcm.c +xineplug_decode_logpcm_la_LIBADD = $(top_builddir)/src/xine-engine/libxine.la xineplug_decode_logpcm_la_LDFLAGS = -avoid-version -module xineplug_decode_gsm610_la_SOURCES = gsm610.c xineplug_decode_gsm610_la_LDFLAGS = -avoid-version -module xineplug_decode_gsm610_la_LIBADD = \ + $(top_builddir)/src/xine-engine/libxine.la \ $(top_builddir)/src/libxineadec/gsm610/libgsm610.la # noinst_HEADERS = |