Skip to content

Commit cdbe50b

Browse files
chundonglinlinxiaozhihong
authored andcommitted
Compile: Fix typo for 3rdparty. v5.0.166, v6.0.59 (#3615)
--------- Co-authored-by: john <[email protected]>
1 parent b1d1c7a commit cdbe50b

File tree

8 files changed

+62
-60
lines changed

8 files changed

+62
-60
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,6 @@ RUN ldd /usr/local/srs/objs/ffmpeg/bin/ffmpeg && \
5656

5757
# Default workdir and command.
5858
WORKDIR /usr/local/srs
59-
ENV SRS_LOG_TANK=console SRS_DAEMON=off
59+
ENV SRS_DAEMON=off
6060
CMD ["./objs/srs", "-c", "conf/srs.conf"]
6161

trunk/auto/depends.sh

+47-47
Large diffs are not rendered by default.

trunk/auto/setup_variables.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@ echo "All outputs to: ${SRS_OBJS}/${SRS_PLATFORM}"
5454
(cd ${SRS_OBJS} && rm -rf src utest srs srs_utest research include lib srs_hls_ingester srs_mp4_parser) &&
5555
mkdir -p ${SRS_OBJS}/src ${SRS_OBJS}/research ${SRS_OBJS}/utest &&
5656

57-
mkdir -p ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry &&
57+
mkdir -p ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty &&
5858
(cd ${SRS_OBJS} && rm -rf st ffmpeg opus srtp2 openssl srt) &&
5959
mkdir -p ${SRS_OBJS}/st ${SRS_OBJS}/ffmpeg ${SRS_OBJS}/opus ${SRS_OBJS}/srtp2 ${SRS_OBJS}/openssl \
6060
${SRS_OBJS}/srt &&
61-
mkdir -p ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/st ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/ffmpeg \
62-
${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/opus ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/srtp2 \
63-
${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/openssl ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/srt
61+
mkdir -p ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/st ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/ffmpeg \
62+
${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/opus ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/srtp2 \
63+
${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/openssl ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/srt
6464
)
6565
ret=$?; if [[ $ret -ne 0 ]]; then echo "Create build directory failed, ret=$ret"; exit $ret; fi
6666

trunk/auto/utest.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mkdir -p ${SRS_OBJS}/${SRS_PLATFORM}/utest
1717
# trunk of srs, which contains the src dir, relative to objs/utest, it's trunk
1818
SRS_TRUNK_PREFIX=../../..
1919
# gest dir, relative to objs/utest, it's trunk/objs/{Platform}/gtest
20-
GTEST_DIR=../3rdpatry/gtest/googletest
20+
GTEST_DIR=../3rdparty/gtest/googletest
2121

2222
# Whether enable C++11 or higher versions.
2323
# For linux, always use C++11 for gtest required, see https://github.com/google/googletest

trunk/configure

+5-5
Original file line numberDiff line numberDiff line change
@@ -554,23 +554,23 @@ clean_modules:
554554
@(cd ${SRS_OBJS} && rm -rf $__mdefaults)
555555
556556
clean_openssl:
557-
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/openssl
557+
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/openssl
558558
@echo "Please rebuild openssl by: ./configure"
559559
560560
clean_srtp2:
561-
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/srtp2
561+
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/srtp2
562562
@echo "Please rebuild libsrtp2 by: ./configure"
563563
564564
clean_opus:
565-
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/opus
565+
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/opus
566566
@echo "Please rebuild opus by: ./configure"
567567
568568
clean_ffmpeg:
569-
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/ffmpeg
569+
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/ffmpeg
570570
@echo "Please rebuild FFmpeg by: ./configure"
571571
572572
clean_st:
573-
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdpatry/st
573+
@rm -rf ${SRS_OBJS}/${SRS_PLATFORM}/3rdparty/st
574574
@echo "Please rebuild ST by: ./configure"
575575
576576
st:

trunk/doc/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ The changelog for SRS.
88

99
## SRS 6.0 Changelog
1010

11+
* v6.0, 2023-07-09, Merge [#3615](https://github.com/ossrs/srs/pull/3615): Compile: Fix typo for 3rdparty. v6.0.59 (#3615)
1112
* v6.0, 2023-07-01, Merge [#3595](https://github.com/ossrs/srs/pull/3595): WHIP: Improve WHIP deletion by token verification. v6.0.58 (#3595)
1213
* v6.0, 2023-07-01, Merge [#3605](https://github.com/ossrs/srs/pull/3605): BugFix: Resolve the problem of srs_error_t memory leak. v6.0.57 (#3605)
1314
* v6.0, 2023-06-30, Merge [#3596](https://github.com/ossrs/srs/pull/3596): Improve the usage of "transcode" in the "full.conf" file. v6.0.56 (#3596)
@@ -72,6 +73,7 @@ The changelog for SRS.
7273

7374
## SRS 5.0 Changelog
7475

76+
* v5.0, 2023-07-09, Merge [#3615](https://github.com/ossrs/srs/pull/3615): Compile: Fix typo for 3rdparty. v5.0.166 (#3615)
7577
* v5.0, 2023-07-01, Merge [#3595](https://github.com/ossrs/srs/pull/3595): WHIP: Improve WHIP deletion by token verification. v5.0.164 (#3595)
7678
* v5.0, 2023-07-01, Merge [#3605](https://github.com/ossrs/srs/pull/3605): BugFix: Resolve the problem of srs_error_t memory leak. v5.0.163 (#3605)
7779
* v5.0, 2023-06-30, Merge [#3596](https://github.com/ossrs/srs/pull/3596): Improve the usage of "transcode" in the "full.conf" file. v5.0.162 (#3596)

trunk/src/core/srs_core_version5.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 5
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 164
12+
#define VERSION_REVISION 166
1313

1414
#endif

trunk/src/core/srs_core_version6.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99

1010
#define VERSION_MAJOR 6
1111
#define VERSION_MINOR 0
12-
#define VERSION_REVISION 58
12+
#define VERSION_REVISION 59
1313

1414
#endif

0 commit comments

Comments
 (0)