From 747831154742e6e4dee9b16f3a29fc6e01904e8c Mon Sep 17 00:00:00 2001 From: winlin Date: Sat, 27 Jul 2024 11:43:09 +0800 Subject: [PATCH] Start the SRS 7.0.0 --- trunk/configure | 2 +- trunk/src/core/srs_core_version.hpp | 2 +- trunk/src/core/srs_core_version7.cpp | 7 +++++++ trunk/src/core/srs_core_version7.hpp | 14 ++++++++++++++ 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 trunk/src/core/srs_core_version7.cpp create mode 100644 trunk/src/core/srs_core_version7.hpp diff --git a/trunk/configure b/trunk/configure index 10cea9f86..579033a6c 100755 --- a/trunk/configure +++ b/trunk/configure @@ -268,7 +268,7 @@ fi MODULE_ID="CORE" MODULE_DEPENDS=() 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") CORE_INCS="src/core"; MODULE_DIR=${CORE_INCS} . $SRS_WORKDIR/auto/modules.sh CORE_OBJS="${MODULE_OBJS[@]}" diff --git a/trunk/src/core/srs_core_version.hpp b/trunk/src/core/srs_core_version.hpp index cb535d624..105921a4d 100644 --- a/trunk/src/core/srs_core_version.hpp +++ b/trunk/src/core/srs_core_version.hpp @@ -7,6 +7,6 @@ #ifndef SRS_CORE_VERSION_HPP #define SRS_CORE_VERSION_HPP -#include +#include #endif diff --git a/trunk/src/core/srs_core_version7.cpp b/trunk/src/core/srs_core_version7.cpp new file mode 100644 index 000000000..f5dc5016c --- /dev/null +++ b/trunk/src/core/srs_core_version7.cpp @@ -0,0 +1,7 @@ +// +// Copyright (c) 2013-2024 The SRS Authors +// +// SPDX-License-Identifier: MIT +// + +#include \ No newline at end of file diff --git a/trunk/src/core/srs_core_version7.hpp b/trunk/src/core/srs_core_version7.hpp new file mode 100644 index 000000000..a22d8fbdb --- /dev/null +++ b/trunk/src/core/srs_core_version7.hpp @@ -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 \ No newline at end of file