mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
52b0e40115
Original commit message from CVS: Patch by: Damien Lespiau <damien dot lespiau at gmail dot com> * gst/pcapparse/Makefile.am: * gst/pcapparse/gstpcapparse.c: Patch to make gstpcapparse compile with mingw32 gcc. Fixes #565439.
20 lines
514 B
Makefile
20 lines
514 B
Makefile
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
|
|
|
|
noinst_HEADERS = \
|
|
gstpcapparse.h
|
|
|
|
libgstpcapparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
|
libgstpcapparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WINSOCK2_LIBS)
|
|
libgstpcapparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstpcapparse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|