2008-08-24 13:53:29 +00:00
|
|
|
plugin_LTLIBRARIES = libgstpcapparse.la
|
|
|
|
|
2008-12-29 15:54:44 +00:00
|
|
|
# when compiling for windows we need to link with the winsock library
|
|
|
|
if HAVE_WINSOCK2_H
|
|
|
|
WINSOCK2_LIBS = -lws2_32
|
|
|
|
else
|
|
|
|
WINSOCK2_LIBS =
|
|
|
|
endif
|
|
|
|
|
2008-08-24 13:53:29 +00:00
|
|
|
libgstpcapparse_la_SOURCES = \
|
|
|
|
gstpcapparse.c
|
|
|
|
|
|
|
|
noinst_HEADERS = \
|
|
|
|
gstpcapparse.h
|
|
|
|
|
|
|
|
libgstpcapparse_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS)
|
2008-12-29 15:54:44 +00:00
|
|
|
libgstpcapparse_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(WINSOCK2_LIBS)
|
2008-08-24 13:53:29 +00:00
|
|
|
libgstpcapparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2008-11-04 12:42:30 +00:00
|
|
|
libgstpcapparse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
|