mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
Version: Ignore the mgmt version
This commit is contained in:
parent
8d88a5b4cc
commit
eeb44ebbe9
3 changed files with 3 additions and 5 deletions
|
@ -79,8 +79,6 @@ void srs_build_features(stringstream& ss)
|
|||
SRS_CHECK_FEATURE3(!string(region).empty(), "region", region, ss);
|
||||
string source = srs_getenv("SRS_SOURCE");
|
||||
SRS_CHECK_FEATURE3(!string(source).empty(), "source", source, ss);
|
||||
string mgmt = srs_getenv("SRS_MGMT");
|
||||
SRS_CHECK_FEATURE3(!string(mgmt).empty(), "mgmt", mgmt, ss);
|
||||
|
||||
int nn_vhosts = 0;
|
||||
bool rtsp = false, forward = false, ingest = false, edge = false, hls = false, dvr = false, flv = false;
|
||||
|
|
|
@ -9,6 +9,6 @@
|
|||
|
||||
#define VERSION_MAJOR 4
|
||||
#define VERSION_MINOR 0
|
||||
#define VERSION_REVISION 241
|
||||
#define VERSION_REVISION 242
|
||||
|
||||
#endif
|
||||
|
|
|
@ -127,9 +127,9 @@ srs_error_t do_main(int argc, char** argv)
|
|||
srs_trace2(TAG_MAIN, "%s, %s", RTMP_SIG_SRS_SERVER, RTMP_SIG_SRS_LICENSE);
|
||||
srs_trace("authors: %s", RTMP_SIG_SRS_AUTHORS);
|
||||
srs_trace("contributors: %s", SRS_CONSTRIBUTORS);
|
||||
srs_trace("cwd=%s, work_dir=%s, build: %s, configure: %s, uname: %s, osx: %d, pkg: %s, region: %s, source: %s, mgmt: %s",
|
||||
srs_trace("cwd=%s, work_dir=%s, build: %s, configure: %s, uname: %s, osx: %d, pkg: %s, region: %s, source: %s",
|
||||
_srs_config->cwd().c_str(), cwd.c_str(), SRS_BUILD_DATE, SRS_USER_CONFIGURE, SRS_UNAME, SRS_OSX_BOOL, SRS_PACKAGER,
|
||||
srs_getenv("SRS_REGION").c_str(), srs_getenv("SRS_SOURCE").c_str(), srs_getenv("SRS_MGMT").c_str());
|
||||
srs_getenv("SRS_REGION").c_str(), srs_getenv("SRS_SOURCE").c_str());
|
||||
srs_trace("configure detail: " SRS_CONFIGURE);
|
||||
#ifdef SRS_EMBEDED_TOOL_CHAIN
|
||||
srs_trace("crossbuild tool chain: " SRS_EMBEDED_TOOL_CHAIN);
|
||||
|
|
Loading…
Reference in a new issue