Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
继续操作前请注册或者登录。
Authored by
winlin
2014-04-06 19:19:13 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5ff1d589f718209fedc2eb72416578c70c9f13c5
5ff1d589
1 parent
d546f815
change warn to trace for nginx disabled
隐藏空白字符变更
内嵌
并排对比
正在显示
2 个修改的文件
包含
21 行增加
和
15 行删除
trunk/auto/options.sh
trunk/configure
trunk/auto/options.sh
查看文件 @
5ff1d58
...
...
@@ -17,25 +17,35 @@ SRS_HLS=RESERVED
SRS_NGINX
=
RESERVED
SRS_SSL
=
RESERVED
SRS_FFMPEG
=
RESERVED
SRS_TRANSCODE
=
RESERVED
SRS_HTTP_PARSER
=
RESERVED
SRS_HTTP_CALLBACK
=
RESERVED
SRS_HTTP_SERVER
=
RESERVED
SRS_HTTP_API
=
RESERVED
SRS_LIBRTMP
=
RESERVED
# srs-librtmp
SRS_BWTC
=
RESERVED
# srs-bandwidth-test client
SRS_LIBRTMP
=
RESERVED
# srs-bandwidth-test client
SRS_BWTC
=
RESERVED
SRS_RESEARCH
=
RESERVED
SRS_UTEST
=
RESERVED
SRS_GPERF
=
RESERVED
# tcmalloc
SRS_GPERF_MC
=
RESERVED
# gperf memory check
SRS_GPERF_MP
=
RESERVED
# gperf memory profile
SRS_GPERF_CP
=
RESERVED
# gperf cpu profile
SRS_GPROF
=
RESERVED
# gprof
SRS_ARM_UBUNTU12
=
RESERVED
# armhf(v7cpu) built on ubuntu12
# tcmalloc
SRS_GPERF
=
RESERVED
# gperf memory check
SRS_GPERF_MC
=
RESERVED
# gperf memory profile
SRS_GPERF_MP
=
RESERVED
# gperf cpu profile
SRS_GPERF_CP
=
RESERVED
# gprof
SRS_GPROF
=
RESERVED
# armhf(v7cpu) built on ubuntu12
SRS_ARM_UBUNTU12
=
RESERVED
#
# arguments
SRS_PREFIX
=
/usr/local/srs
SRS_JOBS
=
1
SRS_STATIC
=
RESERVED
SRS_HTTP_PARSER
=
NO
#
# private internal
# dev, open all features for dev, no gperf/prof/arm.
SRS_DEV
=
NO
...
...
@@ -165,7 +175,7 @@ fi
# if dev specified, open features if possible.
if
[
$SRS_DEV
=
YES
]
;
then
SRS_HLS
=
YES
SRS_NGINX
=
YES
SRS_NGINX
=
NO
SRS_SSL
=
YES
SRS_FFMPEG
=
YES
SRS_HTTP_CALLBACK
=
YES
...
...
trunk/configure
查看文件 @
5ff1d58
...
...
@@ -499,18 +499,14 @@ echo ""
echo
"configure summary:"
echo
"
${
SRS_CONFIGURE
}
"
if
[
$SRS_HLS
=
YES
]
;
then
echo
-e
"
${
GREEN
}
HLS
over nginx
is enabled
${
BLACK
}
"
echo
-e
"
${
GREEN
}
HLS is enabled
${
BLACK
}
"
else
echo
-e
"
${
YELLOW
}
warning: without HLS support
${
BLACK
}
"
fi
if
[
$SRS_NGINX
=
YES
]
;
then
echo
-e
"
${
GREEN
}
Nginx http server is enabled
${
BLACK
}
"
else
if
[
$SRS_HLS
=
YES
]
;
then
echo
-e
"
${
YELLOW
}
warning: HLS without Nginx support
${
BLACK
}
"
else
echo
-e
"
${
GREEN
}
note: HLS without Nginx support
${
BLACK
}
"
fi
echo
-e
"
${
GREEN
}
note: Nginx http server is disabled
${
BLACK
}
"
fi
if
[
$SRS_SSL
=
YES
]
;
then
echo
-e
"
${
GREEN
}
rtmp complex handshake is enabled
${
BLACK
}
"
...
...
请
注册
或
登录
后发表评论