summaryrefslogtreecommitdiff
path: root/src/input/Makefile.am
diff options
context:
space:
mode:
authorMatthias Hopf <mat@mshopf.de>2001-07-16 19:36:00 +0000
committerMatthias Hopf <mat@mshopf.de>2001-07-16 19:36:00 +0000
commit0bb6f834ae95cd434110ab1612563994112d75ac (patch)
tree2cc2b29482da412356c3c8cab8474879d66f47f8 /src/input/Makefile.am
parent65d473e411929996584d8841790a9e583db6781d (diff)
downloadxine-lib-0bb6f834ae95cd434110ab1612563994112d75ac.tar.gz
xine-lib-0bb6f834ae95cd434110ab1612563994112d75ac.tar.bz2
IRIX / mips port. Audio and CD support are not implemented yet.
Nuked BUILD_LIB_STATIC. Changed some architecture dependend code to feature dependend code. Autoconf'ing CD / DVD ioctl() support. CVS patchset: 288 CVS date: 2001/07/16 19:36:00
Diffstat (limited to 'src/input/Makefile.am')
-rw-r--r--src/input/Makefile.am11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/input/Makefile.am b/src/input/Makefile.am
index 02ff88580..12d21c62b 100644
--- a/src/input/Makefile.am
+++ b/src/input/Makefile.am
@@ -14,9 +14,15 @@ libdir = $(XINE_PLUGINDIR)
# ---------
# All of xine input plugins should be named like the scheme "xineplug_inp_"
#
-lib_LTLIBRARIES = xineplug_inp_file.la xineplug_inp_dvd.la \
+
+if HAVE_CDROM_IOCTLS
+in_dvd = xineplug_inp_dvd.la
+in_vcd = xineplug_inp_vcd.la
+endif
+
+lib_LTLIBRARIES = xineplug_inp_file.la $(in_dvd) $(in_vcd) \
xineplug_inp_stdin_fifo.la xineplug_inp_net.la \
- xineplug_inp_vcd.la xineplug_inp_rtp.la
+ xineplug_inp_rtp.la
xineplug_inp_file_la_SOURCES = input_file.c
xineplug_inp_file_la_LDFLAGS = -avoid-version -module
@@ -38,6 +44,7 @@ xineplug_inp_rtp_la_LDFLAGS = -avoid-version -module
include_HEADERS = input_plugin.h
noinst_HEADERS = dvd_udf.h
+EXTRA_DIST = input_dvd.c dvd_udf.c input_vcd.c
##