mirror of
https://github.com/ossrs/srs.git
synced 2025-02-13 03:41:55 +00:00
Start the SRS 7.0.0
This commit is contained in:
parent
384ccbac0d
commit
7478311547
4 changed files with 23 additions and 2 deletions
2
trunk/configure
vendored
2
trunk/configure
vendored
|
@ -268,7 +268,7 @@ fi
|
||||||
MODULE_ID="CORE"
|
MODULE_ID="CORE"
|
||||||
MODULE_DEPENDS=()
|
MODULE_DEPENDS=()
|
||||||
ModuleLibIncs=(${SRS_OBJS})
|
ModuleLibIncs=(${SRS_OBJS})
|
||||||
MODULE_FILES=("srs_core" "srs_core_version" "srs_core_version5" "srs_core_autofree" "srs_core_performance"
|
MODULE_FILES=("srs_core" "srs_core_version" "srs_core_version7" "srs_core_autofree" "srs_core_performance"
|
||||||
"srs_core_time" "srs_core_platform" "srs_core_deprecated")
|
"srs_core_time" "srs_core_platform" "srs_core_deprecated")
|
||||||
CORE_INCS="src/core"; MODULE_DIR=${CORE_INCS} . $SRS_WORKDIR/auto/modules.sh
|
CORE_INCS="src/core"; MODULE_DIR=${CORE_INCS} . $SRS_WORKDIR/auto/modules.sh
|
||||||
CORE_OBJS="${MODULE_OBJS[@]}"
|
CORE_OBJS="${MODULE_OBJS[@]}"
|
||||||
|
|
|
@ -7,6 +7,6 @@
|
||||||
#ifndef SRS_CORE_VERSION_HPP
|
#ifndef SRS_CORE_VERSION_HPP
|
||||||
#define SRS_CORE_VERSION_HPP
|
#define SRS_CORE_VERSION_HPP
|
||||||
|
|
||||||
#include <srs_core_version6.hpp>
|
#include <srs_core_version7.hpp>
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
7
trunk/src/core/srs_core_version7.cpp
Normal file
7
trunk/src/core/srs_core_version7.cpp
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
//
|
||||||
|
// Copyright (c) 2013-2024 The SRS Authors
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
#include <srs_core_version7.hpp>
|
14
trunk/src/core/srs_core_version7.hpp
Normal file
14
trunk/src/core/srs_core_version7.hpp
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
//
|
||||||
|
// Copyright (c) 2013-2024 The SRS Authors
|
||||||
|
//
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef SRS_CORE_VERSION7_HPP
|
||||||
|
#define SRS_CORE_VERSION7_HPP
|
||||||
|
|
||||||
|
#define VERSION_MAJOR 7
|
||||||
|
#define VERSION_MINOR 0
|
||||||
|
#define VERSION_REVISION 0
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in a new issue