2018-09-06 07:27:27 +00:00
|
|
|
sctp_sources = [
|
|
|
|
'gstsctpdec.c',
|
|
|
|
'gstsctpenc.c',
|
|
|
|
'gstsctpplugin.c',
|
|
|
|
'sctpassociation.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
if get_option('sctp').disabled()
|
|
|
|
subdir_done()
|
|
|
|
endif
|
|
|
|
|
2018-10-17 10:04:51 +00:00
|
|
|
sctp_platform_deps = []
|
|
|
|
|
2018-09-06 07:27:27 +00:00
|
|
|
sctp_dep = cc.find_library('usrsctp', required : get_option('sctp').enabled())
|
|
|
|
sctp_header = cc.has_header('usrsctp.h')
|
2018-10-17 10:04:51 +00:00
|
|
|
if host_system == 'windows'
|
|
|
|
sctp_platform_deps += [cc.find_library('ws2_32')]
|
|
|
|
endif
|
2018-09-06 07:27:27 +00:00
|
|
|
|
|
|
|
if get_option('sctp').enabled()
|
|
|
|
if not sctp_dep.found() or not sctp_header
|
|
|
|
error('sctp plugin enabled but could not find libusrsctp')
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
if sctp_dep.found() and sctp_header
|
|
|
|
gstsctp = library('gstsctp',
|
|
|
|
sctp_sources,
|
|
|
|
c_args : gst_plugins_bad_args,
|
|
|
|
include_directories : [configinc],
|
2018-10-17 10:04:51 +00:00
|
|
|
dependencies : [sctp_dep, gst_dep, gstbase_dep, gstsctp_dep, sctp_platform_deps],
|
2018-09-06 07:27:27 +00:00
|
|
|
install : true,
|
|
|
|
install_dir : plugins_install_dir,
|
|
|
|
)
|
|
|
|
pkgconfig.generate(gstsctp, install_dir : plugins_pkgconfig_install_dir)
|
2019-05-29 10:28:00 +00:00
|
|
|
plugins += [gstsctp]
|
2018-09-06 07:27:27 +00:00
|
|
|
endif
|