summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-11-27 17:02:53 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-11-27 17:02:53 +0000
commitb9d371913c66db1e4a430fdb3ebae449532563db (patch)
treeffb9644c71e940b821a59b9185ba6e7c7207bc8b /gst
parent9b0f1d1c694936fea8b0575c973291e2b842ce66 (diff)
configure.ac: fix up GST_PLUGIN_LDFLAGS
Original commit message from CVS: * configure.ac: fix up GST_PLUGIN_LDFLAGS * gst/rtsp/rtspconnection.c: fix includes (see #317043) * gst/videofilter/Makefile.am: stop installing this library
Diffstat (limited to 'gst')
-rw-r--r--gst/rtsp/rtspconnection.c5
-rw-r--r--gst/videofilter/Makefile.am4
2 files changed, 5 insertions, 4 deletions
diff --git a/gst/rtsp/rtspconnection.c b/gst/rtsp/rtspconnection.c
index 81be1a85..248a4a2b 100644
--- a/gst/rtsp/rtspconnection.c
+++ b/gst/rtsp/rtspconnection.c
@@ -17,13 +17,14 @@
* Boston, MA 02111-1307, USA.
*/
-#include <arpa/inet.h>
-#include <netdb.h>
#include <stdio.h>
#include <errno.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
+#include <netdb.h>
+#include <arpa/inet.h>
+#include <sys/socket.h>
#include "rtspconnection.h"
diff --git a/gst/videofilter/Makefile.am b/gst/videofilter/Makefile.am
index 17b3c3fa..3bfcbce6 100644
--- a/gst/videofilter/Makefile.am
+++ b/gst/videofilter/Makefile.am
@@ -1,4 +1,4 @@
-lib_LTLIBRARIES = libgstvideofilter-@GST_MAJORMINOR@.la
+noinst_LTLIBRARIES = libgstvideofilter-@GST_MAJORMINOR@.la
# noinst_LTLIBRARIES = libgstvideoexample.la
plugin_LTLIBRARIES = libgstvideoflip.la
@@ -9,7 +9,7 @@ CLEANFILES = gstvideoexample.c
libgstvideofilter_@GST_MAJORMINOR@_la_SOURCES = gstvideofilter.c gstvideofilter.h
libgstvideofilter_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS)
-libgstvideofilter_@GST_MAJORMINOR@_la_LDFLAGS = $(GST_LIBS)
+libgstvideofilter_@GST_MAJORMINOR@_la_LIBS = $(GST_LIBS)
# libgstvideoexample_la_SOURCES = gstvideoexample.c
# libgstvideoexample_la_CFLAGS = $(GST_CFLAGS)