diff options
author | Julien Moutte <julien@moutte.net> | 2003-12-11 22:29:14 +0000 |
---|---|---|
committer | Julien Moutte <julien@moutte.net> | 2003-12-11 22:29:14 +0000 |
commit | d2ef360eef07db87999fcccc2f8bc968744a042e (patch) | |
tree | 6bae96d22694c596faba1ea5032314b3a4f5eb9c /gst-libs/gst/play/Makefile.am | |
parent | aa9969dbcfca36106b6c9a37554221ecd621afd0 (diff) | |
download | gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.tar.gz gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.tar.bz2 gst-plugins-bad-d2ef360eef07db87999fcccc2f8bc968744a042e.zip |
Using private structure for members so that we have more chance that the header is frozen. :)
Original commit message from CVS:
Using private structure for members so that we have more chance that the header is frozen. :)
Diffstat (limited to 'gst-libs/gst/play/Makefile.am')
-rw-r--r-- | gst-libs/gst/play/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gst-libs/gst/play/Makefile.am b/gst-libs/gst/play/Makefile.am index 360fff49..db444521 100644 --- a/gst-libs/gst/play/Makefile.am +++ b/gst-libs/gst/play/Makefile.am @@ -2,13 +2,13 @@ librarydir = $(libdir) library_LTLIBRARIES = libgstplay-@GST_MAJORMINOR@.la -libgstplay_@GST_MAJORMINOR@_la_SOURCES = play.c +libgstplay_@GST_MAJORMINOR@_la_SOURCES = gstplay.c libgstplay_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/play -libgstplay_@GST_MAJORMINOR@include_HEADERS = play.h +libgstplay_@GST_MAJORMINOR@include_HEADERS = gstplay.h libgstplay_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_CFLAGS) libgstplay_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) $(GST_PLUGINS_LIBS) $(GST_CONTROL_LIBS) -libgstplay_@GST_MAJORMINOR@_la_LDFLAGS = -version-info @GST_PLUGINS_LIBVERSION@ +libgstplay_@GST_MAJORMINOR@_la_LDFLAGS = \ + -version-info @GST_PLUGINS_LIBVERSION@ -noinst_HEADERS = playpipelines.c |