diff options
author | Trever Fischer <tdfischer@fedoraproject.org> | 2010-01-06 12:21:25 -0500 |
---|---|---|
committer | Trever Fischer <tdfischer@fedoraproject.org> | 2010-01-06 12:21:25 -0500 |
commit | cc1a46cebce07d4f0d3417b3354fe367fa3c984b (patch) | |
tree | efe2d487c7fa18029bb64c3531c8f14926d60f65 /src/input | |
parent | 4fc7f9d52eb06a1c16a6af76b3d20db2b06a0d8b (diff) | |
download | xine-lib-cc1a46cebce07d4f0d3417b3354fe367fa3c984b.tar.gz xine-lib-cc1a46cebce07d4f0d3417b3354fe367fa3c984b.tar.bz2 |
Add v4l2 to the makefile
--HG--
branch : v4l
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input/Makefile.am b/src/input/Makefile.am index 0748c8f29..3c700ea46 100644 --- a/src/input/Makefile.am +++ b/src/input/Makefile.am @@ -21,6 +21,7 @@ endif if HAVE_V4L in_v4l = xineplug_inp_v4l.la +in_v4l2 = xineplug_inp_v4l2.la in_pvr = xineplug_inp_pvr.la endif @@ -60,6 +61,7 @@ xineplug_LTLIBRARIES = \ $(in_dvd) \ $(in_vcd) \ $(in_v4l) \ + $(in_v4l2) \ $(in_gnome_vfs) \ $(in_smb) \ xineplug_inp_mms.la \ @@ -138,6 +140,11 @@ xineplug_inp_v4l_la_LIBADD = $(XINE_LIB) $(ALSA_LIBS) $(LTLIBINTL) xineplug_inp_v4l_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) xineplug_inp_v4l_la_LDFLAGS = -avoid-version -module +xineplug_inp_v4l2_la_SOURCES = input_v4l2.c +xineplug_inp_v4l2_la_LIBADD = $(XINE_LIB) $(ALSA_LIBS) +xineplug_inp_v4l2_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) +xineplug_inp_v4l2_la_LDFLAGS = -avoid-version -module + xineplug_inp_gnome_vfs_la_SOURCES = input_gnome_vfs.c net_buf_ctrl.c xineplug_inp_gnome_vfs_la_LIBADD = $(XINE_LIB) $(GNOME_VFS_LIBS) $(PTHREAD_LIBS) $(LTLIBINTL) xineplug_inp_gnome_la_CFLAGS = $(VISIBILITY_FLAG) $(AM_CFLAGS) |