mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Add WINSOCK2_LIBS, remove WIN32_LIBS, fix rtmp build on Windows some more
One way of passing -lws2_32 to plugins should be enough..
This commit is contained in:
parent
e4ec3e4bd7
commit
b87f7345db
6 changed files with 7 additions and 34 deletions
20
configure.ac
20
configure.ac
|
@ -401,28 +401,14 @@ AC_CHECK_HEADERS([sys/socket.h], HAVE_SYS_SOCKET_H=yes)
|
|||
AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
|
||||
|
||||
if test "x$HAVE_WINSOCK2_H" = "xyes"; then
|
||||
WIN32_LIBS="-lws2_32"
|
||||
AC_SUBST(WIN32_LIBS)
|
||||
fi
|
||||
|
||||
dnl needed for festival
|
||||
AM_CONDITIONAL(HAVE_WINSOCK2_H, test "x$HAVE_WINSOCK2_H" = "xyes")
|
||||
|
||||
if test "x$HAVE_WINSOCK2_H" = "xyes"; then
|
||||
DCCP_LIBS="$DCCP_LIBS -lws2_32"
|
||||
XDG_LIBS="$XDG_LIBS -lws2_32"
|
||||
RTMP_LIBS="$RTMP_LIBS -lws2_32"
|
||||
AC_SUBST(DCCP_LIBS)
|
||||
AC_SUBST(XDG_LIBS)
|
||||
AC_SUBST(RTMP_LIBS)
|
||||
WINSOCK2_LIBS="-lws2_32"
|
||||
AC_SUBST(WINSOCK2_LIBS)
|
||||
fi
|
||||
|
||||
if test "x$HAVE_PTHREAD_H" = "xyes"; then
|
||||
DCCP_LIBS="$DCCP_LIBS -lpthread"
|
||||
AC_SUBST(DCCP_LIBS)
|
||||
fi
|
||||
|
||||
if test "x$HAVE_PTHREAD_H" != "xyes"; then
|
||||
else
|
||||
AG_GST_DISABLE_PLUGIN(dccp)
|
||||
fi
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ libgstrtmp_la_SOURCES = gstrtmpsrc.c gstrtmpsink.c gstrtmp.c
|
|||
|
||||
noinst_HEADERS = gstrtmpsrc.h gstrtmpsink.h
|
||||
libgstrtmp_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(RTMP_CFLAGS)
|
||||
libgstrtmp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(RTMP_LIBS)
|
||||
libgstrtmp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GST_LIBS) $(RTMP_LIBS) $(WINSOCK2_LIBS)
|
||||
libgstrtmp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstrtmp_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ libgstdccp_la_SOURCES = gstdccpplugin.c \
|
|||
|
||||
# flags used to compile this plugin
|
||||
libgstdccp_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstdccp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DCCP_LIBS)
|
||||
libgstdccp_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS) $(DCCP_LIBS) $(WINSOCK2_LIBS)
|
||||
libgstdccp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstdccp_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
|
@ -1,12 +1,6 @@
|
|||
|
||||
plugin_LTLIBRARIES = libgstfestival.la
|
||||
|
||||
if HAVE_WINSOCK2_H
|
||||
WINSOCK2_LIBS = -lws2_32
|
||||
else
|
||||
WINSOCK2_LIBS =
|
||||
endif
|
||||
|
||||
libgstfestival_la_SOURCES = gstfestival.c
|
||||
libgstfestival_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
||||
# we use net connection now... perhaps use the lib later
|
||||
|
|
|
@ -1,12 +1,5 @@
|
|||
plugin_LTLIBRARIES = libgstpcapparse.la
|
||||
|
||||
# when compiling for windows we need to link with the winsock library
|
||||
if HAVE_WINSOCK2_H
|
||||
WINSOCK2_LIBS = -lws2_32
|
||||
else
|
||||
WINSOCK2_LIBS =
|
||||
endif
|
||||
|
||||
libgstpcapparse_la_SOURCES = \
|
||||
gstpcapparse.c gstirtspparse.c plugin.c
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ libgstsdpelem_la_SOURCES = gstsdpelem.c gstsdpdemux.h gstsdpdemux.c
|
|||
libgstsdpelem_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(GIO_CFLAGS)
|
||||
libgstsdpelem_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) $(GST_BASE_LIBS) $(GIO_LIBS) \
|
||||
-lgstrtp-@GST_API_VERSION@ -lgstsdp-@GST_API_VERSION@ \
|
||||
$(GST_LIBS) $(WIN32_LIBS)
|
||||
$(GST_LIBS) $(WINSOCK2_LIBS)
|
||||
libgstsdpelem_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgstsdpelem_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
|
|
Loading…
Reference in a new issue