GNOME Bugzilla – Bug 466373
libgstrtp depends on libgstbase
Last modified: 2007-08-13 22:52:09 UTC
I believe libgstrtp-0.10 should have a dependency on libgstbase-0.10 with something like: --- gst-libs/gst/rtp/Makefile.am 29 Mar 2007 16:20:31 -0000 1.11 +++ gst-libs/gst/rtp/Makefile.am 13 Aug 2007 21:04:15 -0000 @@ -15,5 +15,6 @@ libgstrtp_@GST_MAJORMINOR@_la_SOURCES = gstbasertpdepayload.c libgstrtp_@GST_MAJORMINOR@_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) -libgstrtp_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) +libgstrtp_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) \ + -lgstbase-0.10 libgstrtp_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIB_LDFLAGS) $(GST_ALL_LDFLAGS) $(GST_LT_LDFLAGS)
The -lgstbase-0.10 should be in GST_BASE_LIBS. What's the output of $ grep GST_BASE_LIBS /path/to/src/gst-plugins-base/Makefile for you? And what's the exact problem that made you file this bug?
GST_BASE_LIBS = -pthread -lgstbase-0.10 -lgstreamer-0.10 -lgobject-2.0 -lgmodule-2.0 -ldl -lgthread-2.0 -lrt -lxml2 -lglib-2.0 Strange, libgstbase is there now... maybe it was something in my build system..