diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-31 02:28:46 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2007-05-31 02:28:46 +0100 |
commit | adebccc0fc011b6d1abe2f682bbfc866dffee73e (patch) | |
tree | 00c2633e0766e6a76c172a83ecce36d1c9f49f04 | |
parent | d1949261589719fefad3add8cade4d6a29e6e81c (diff) | |
download | xine-lib-adebccc0fc011b6d1abe2f682bbfc866dffee73e.tar.gz xine-lib-adebccc0fc011b6d1abe2f682bbfc866dffee73e.tar.bz2 |
Link libiso9660 into the vcd plugin. Fixes a run-time symbol lookup failure.
-rw-r--r-- | src/input/vcd/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/vcd/Makefile.am b/src/input/vcd/Makefile.am index 873f1d54a..3de899f7e 100644 --- a/src/input/vcd/Makefile.am +++ b/src/input/vcd/Makefile.am @@ -13,5 +13,5 @@ noinst_HEADERS = vcdio.h vcdplayer.h xine-extra.h xineplug_LTLIBRARIES = xineplug_inp_vcd.la xineplug_inp_vcd_la_SOURCES = xineplug_inp_vcd.c vcdplayer.c vcdio.c xine-extra.c -xineplug_inp_vcd_la_LIBADD = $(XINE_LIB) $(LIBCDIO_LIBS) $(LIBVCD_LIBS) $(LIBVCDINFO_LIBS) -lm +xineplug_inp_vcd_la_LIBADD = $(XINE_LIB) $(LIBCDIO_LIBS) $(LIBVCD_LIBS) $(LIBVCDINFO_LIBS) $(LIBISO9660_LIBS) -lm xineplug_inp_vcd_la_CFLAGS = $(AM_CFLAGS) $(LIBCDIO_CFLAGS) $(LIBVCD_CFLAGS) |