You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
133 lines
5.7 KiB
133 lines
5.7 KiB
ngx_addon_name="ngx_rtmp_module"
|
|
|
|
RTMP_CORE_MODULES=" \
|
|
ngx_rtmp_module \
|
|
ngx_rtmp_core_module \
|
|
ngx_rtmp_cmd_module \
|
|
ngx_rtmp_codec_module \
|
|
ngx_rtmp_access_module \
|
|
ngx_rtmp_record_module \
|
|
ngx_rtmp_live_module \
|
|
ngx_rtmp_play_module \
|
|
ngx_rtmp_flv_module \
|
|
ngx_rtmp_mp4_module \
|
|
ngx_rtmp_netcall_module \
|
|
ngx_rtmp_relay_module \
|
|
ngx_rtmp_exec_module \
|
|
ngx_rtmp_auto_push_module \
|
|
ngx_rtmp_auto_push_index_module \
|
|
ngx_rtmp_notify_module \
|
|
ngx_rtmp_log_module \
|
|
ngx_rtmp_limit_module \
|
|
ngx_rtmp_hls_module \
|
|
ngx_rtmp_dash_module \
|
|
"
|
|
|
|
|
|
RTMP_HTTP_MODULES=" \
|
|
ngx_rtmp_stat_module \
|
|
ngx_rtmp_control_module \
|
|
"
|
|
|
|
|
|
RTMP_DEPS=" \
|
|
$ngx_addon_dir/ngx_rtmp_amf.h \
|
|
$ngx_addon_dir/ngx_rtmp_bandwidth.h \
|
|
$ngx_addon_dir/ngx_rtmp_cmd_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_codec_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_eval.h \
|
|
$ngx_addon_dir/ngx_rtmp.h \
|
|
$ngx_addon_dir/ngx_rtmp_version.h \
|
|
$ngx_addon_dir/ngx_rtmp_live_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_netcall_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_play_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_record_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_relay_module.h \
|
|
$ngx_addon_dir/ngx_rtmp_streams.h \
|
|
$ngx_addon_dir/ngx_rtmp_bitop.h \
|
|
$ngx_addon_dir/ngx_rtmp_proxy_protocol.h \
|
|
$ngx_addon_dir/hls/ngx_rtmp_mpegts.h \
|
|
$ngx_addon_dir/dash/ngx_rtmp_mp4.h \
|
|
"
|
|
|
|
|
|
RTMP_CORE_SRCS=" \
|
|
$ngx_addon_dir/ngx_rtmp.c \
|
|
$ngx_addon_dir/ngx_rtmp_init.c \
|
|
$ngx_addon_dir/ngx_rtmp_handshake.c \
|
|
$ngx_addon_dir/ngx_rtmp_handler.c \
|
|
$ngx_addon_dir/ngx_rtmp_amf.c \
|
|
$ngx_addon_dir/ngx_rtmp_send.c \
|
|
$ngx_addon_dir/ngx_rtmp_shared.c \
|
|
$ngx_addon_dir/ngx_rtmp_eval.c \
|
|
$ngx_addon_dir/ngx_rtmp_receive.c \
|
|
$ngx_addon_dir/ngx_rtmp_core_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_cmd_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_codec_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_access_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_record_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_live_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_play_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_flv_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_mp4_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_netcall_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_relay_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_bandwidth.c \
|
|
$ngx_addon_dir/ngx_rtmp_exec_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_auto_push_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_notify_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_log_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_limit_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_bitop.c \
|
|
$ngx_addon_dir/ngx_rtmp_proxy_protocol.c \
|
|
$ngx_addon_dir/hls/ngx_rtmp_hls_module.c \
|
|
$ngx_addon_dir/dash/ngx_rtmp_dash_module.c \
|
|
$ngx_addon_dir/hls/ngx_rtmp_mpegts.c \
|
|
$ngx_addon_dir/dash/ngx_rtmp_mp4.c \
|
|
"
|
|
|
|
|
|
RTMP_HTTP_SRCS=" \
|
|
$ngx_addon_dir/ngx_rtmp_stat_module.c \
|
|
$ngx_addon_dir/ngx_rtmp_control_module.c \
|
|
"
|
|
|
|
if [ -f auto/module ] ; then
|
|
ngx_module_incs=$ngx_addon_dir
|
|
ngx_module_deps=$RTMP_DEPS
|
|
|
|
if [ $ngx_module_link = DYNAMIC ] ; then
|
|
ngx_module_name="$RTMP_CORE_MODULES $RTMP_HTTP_MODULES"
|
|
ngx_module_srcs="$RTMP_CORE_SRCS $RTMP_HTTP_SRCS"
|
|
|
|
. auto/module
|
|
|
|
else
|
|
ngx_module_type=CORE
|
|
ngx_module_name=$RTMP_CORE_MODULES
|
|
ngx_module_srcs=$RTMP_CORE_SRCS
|
|
|
|
. auto/module
|
|
|
|
|
|
ngx_module_type=HTTP
|
|
ngx_module_name=$RTMP_HTTP_MODULES
|
|
ngx_module_incs=
|
|
ngx_module_deps=
|
|
ngx_module_srcs=$RTMP_HTTP_SRCS
|
|
|
|
. auto/module
|
|
fi
|
|
|
|
else
|
|
CORE_MODULES="$CORE_MODULES $RTMP_CORE_MODULES"
|
|
HTTP_MODULES="$HTTP_MODULES $RTMP_HTTP_MODULES"
|
|
|
|
NGX_ADDON_DEPS="$NGX_ADDON_DEPS $RTMP_DEPS"
|
|
NGX_ADDON_SRCS="$NGX_ADDON_SRCS $RTMP_CORE_SRCS $RTMP_HTTP_SRCS"
|
|
|
|
CFLAGS="$CFLAGS -I$ngx_addon_dir"
|
|
fi
|
|
|
|
USE_OPENSSL=YES
|
|
|
|
|