From d6ead6c0c51169a8570e74cb4570532846c68692 Mon Sep 17 00:00:00 2001 From: everything411 Date: Sat, 12 Mar 2022 18:34:30 +0800 Subject: [PATCH] SRT: Fix typo in libsrt build options (#2943) the cmake option is ENABLE_APPS, so we should use --disable-apps or --enable-apps=0. this commit fixes the typo. --- trunk/auto/depends.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/auto/depends.sh b/trunk/auto/depends.sh index 2dbddbb86..f01e08d0d 100755 --- a/trunk/auto/depends.sh +++ b/trunk/auto/depends.sh @@ -812,7 +812,7 @@ if [[ $SRS_SRT == YES ]]; then exit -1; fi # Always disable c++11 for libsrt, because only the srt-app requres it. - LIBSRT_OPTIONS="--disable-app --enable-static --enable-c++11=0" + LIBSRT_OPTIONS="--disable-apps --enable-static --enable-c++11=0" if [[ $SRS_SHARED_SRT == YES ]]; then LIBSRT_OPTIONS="$LIBSRT_OPTIONS --enable-shared=1" else