mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
dtls: Link against winsock2 on Windows
Should fix the Windows build after
b1509b1047
.
This commit is contained in:
parent
8af8fd62dd
commit
84d3f58c4a
2 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ libgstdtls_la_CFLAGS = \
|
|||
$(GST_CFLAGS) \
|
||||
$(DTLS_CFLAGS)
|
||||
|
||||
libgstdtls_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(DTLS_LIBS)
|
||||
libgstdtls_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(DTLS_LIBS) $(WINSOCK2_LIBS)
|
||||
libgstdtls_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -19,7 +19,7 @@ if openssl_dep.found() and libcrypto_dep.found()
|
|||
dtls_sources,
|
||||
c_args : gst_plugins_bad_args,
|
||||
include_directories : [configinc],
|
||||
dependencies : [gst_dep, libcrypto_dep, openssl_dep],
|
||||
dependencies : [gst_dep, libcrypto_dep, openssl_dep] + winsock2,
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue