mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
50501c07be
Original commit message from CVS: * configure.ac: * ext/Makefile.am: * ext/dvdread/Makefile.am: * ext/dvdread/dvdreadsrc.c: * ext/dvdread/dvdreadsrc.h: Half-baked port to 0.10. Needs some love in the seeking department, but at least it does something. * ext/dvdread/stream_labels.c: * ext/dvdread/stream_labels.h: Remove these (we use ISO-639 language codes internally; applications that want to translate those into language names for display to the user should rely on the iso-codes package for that).
17 lines
345 B
Makefile
17 lines
345 B
Makefile
|
|
plugin_LTLIBRARIES = libgstdvdread.la
|
|
|
|
libgstdvdread_la_SOURCES = dvdreadsrc.c
|
|
libgstdvdread_la_CFLAGS = \
|
|
$(GST_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(DVDREAD_CFLAGS)
|
|
libgstdvdread_la_LIBADD = \
|
|
$(GST_BASE_LIBS) \
|
|
$(DVDREAD_LIBS)
|
|
libgstdvdread_la_LDFLAGS = \
|
|
$(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = dvdreadsrc.h
|
|
|
|
EXTRA_DIST = README demo-play
|