diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2005-06-02 14:01:22 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2005-06-02 14:01:22 +0000 |
commit | ec4f41ed2587632c8149bd44d47c8d0f15d0c1a8 (patch) | |
tree | 9ab14af15012dab944ee6af8d8b4d6a0a931f745 | |
parent | 239bdbcd62968225f2fb76a5663f0991179c3800 (diff) |
Added net stuff, version net lib.
Original commit message from CVS:
* gst-libs/gst/net/Makefile.am:
* pkgconfig/gstreamer-libs-uninstalled.pc.in:
* pkgconfig/gstreamer-libs.pc.in:
Added net stuff, version net lib.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | gst-libs/gst/net/Makefile.am | 12 | ||||
-rw-r--r-- | gst-libs/gst/netbuffer/Makefile.am | 12 | ||||
-rw-r--r-- | pkgconfig/gstreamer-libs-uninstalled.pc.in | 2 | ||||
-rw-r--r-- | pkgconfig/gstreamer-libs.pc.in | 2 |
5 files changed, 25 insertions, 10 deletions
@@ -1,5 +1,12 @@ 2005-06-02 Wim Taymans <wim@fluendo.com> + * gst-libs/gst/net/Makefile.am: + * pkgconfig/gstreamer-libs-uninstalled.pc.in: + * pkgconfig/gstreamer-libs.pc.in: + Added net stuff, version net lib. + +2005-06-02 Wim Taymans <wim@fluendo.com> + * examples/seeking/seek.c: (make_vorbis_theora_pipeline), (query_rates), (query_positions_elems), (query_positions_pads), (do_seek): diff --git a/gst-libs/gst/net/Makefile.am b/gst-libs/gst/net/Makefile.am index 85fc58e31..c04a1dc95 100644 --- a/gst-libs/gst/net/Makefile.am +++ b/gst-libs/gst/net/Makefile.am @@ -1,8 +1,12 @@ -noinst_LTLIBRARIES = libgstnet.la +libgstnetincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net + +libgstnetinclude_HEADERS = gstnetbuffer.h + +noinst_LTLIBRARIES = libgstnet-@GST_MAJORMINOR@.la libgstnet_la_SOURCES = gstnetbuffer.c -libgstnetincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net -libgstnetinclude_HEADERS = gstnetbuffer.h +libgstnet_@GST_MAJORMINOR@_la_SOURCES = gstnetbuffer.c +libgstnet_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst/tags +libgstnet_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) -libgstnet_la_CFLAGS = $(GST_CFLAGS) diff --git a/gst-libs/gst/netbuffer/Makefile.am b/gst-libs/gst/netbuffer/Makefile.am index 85fc58e31..c04a1dc95 100644 --- a/gst-libs/gst/netbuffer/Makefile.am +++ b/gst-libs/gst/netbuffer/Makefile.am @@ -1,8 +1,12 @@ -noinst_LTLIBRARIES = libgstnet.la +libgstnetincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net + +libgstnetinclude_HEADERS = gstnetbuffer.h + +noinst_LTLIBRARIES = libgstnet-@GST_MAJORMINOR@.la libgstnet_la_SOURCES = gstnetbuffer.c -libgstnetincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/net -libgstnetinclude_HEADERS = gstnetbuffer.h +libgstnet_@GST_MAJORMINOR@_la_SOURCES = gstnetbuffer.c +libgstnet_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst/tags +libgstnet_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) -libgstnet_la_CFLAGS = $(GST_CFLAGS) diff --git a/pkgconfig/gstreamer-libs-uninstalled.pc.in b/pkgconfig/gstreamer-libs-uninstalled.pc.in index 1251407ea..9b8ab49ea 100644 --- a/pkgconfig/gstreamer-libs-uninstalled.pc.in +++ b/pkgconfig/gstreamer-libs-uninstalled.pc.in @@ -8,5 +8,5 @@ Description: Streaming-media framework media-specific libraries, not installed Version: @VERSION@ Requires: gstreamer-@GST_MAJORMINOR@ -Libs: -L${libdir}/audio -L${libdir}/video -L${libdir}/tag +Libs: -L${libdir}/audio -L${libdir}/video -L${libdir}/tag -L${libdir}/net Cflags: -I${includedir} diff --git a/pkgconfig/gstreamer-libs.pc.in b/pkgconfig/gstreamer-libs.pc.in index 07988c14a..391ba4996 100644 --- a/pkgconfig/gstreamer-libs.pc.in +++ b/pkgconfig/gstreamer-libs.pc.in @@ -7,5 +7,5 @@ Name: GStreamer Plugin Libraries Description: Streaming-media framework, plugin libraries Requires: gstreamer-@GST_MAJORMINOR@ Version: @VERSION@ -Libs: -L${libdir}/audio -L${libdir}/video -L${libdir}/tag +Libs: -L${libdir}/audio -L${libdir}/video -L${libdir}/tag -L${libdir}/net Cflags: -I${includedir} |