Merge branch 'master' of github.com:iv-org/invidious

This commit is contained in:
テクニカル諏訪子 2022-01-05 01:14:42 +09:00
commit f6740815a5

View file

@ -5,7 +5,7 @@
RELEASE := 1 RELEASE := 1
STATIC := 0 STATIC := 0
DISABLE_LSQUIC := 0 DISABLE_QUIC := 0
NO_DBG_SYMBOLS := 0 NO_DBG_SYMBOLS := 0
@ -27,8 +27,8 @@ else
FLAGS += --debug FLAGS += --debug
endif endif
ifeq ($(DISABLE_LSQUIC), 1) ifeq ($(DISABLE_QUIC), 1)
FLAGS += -Ddisable_lsquic FLAGS += -Ddisable_quic
endif endif
@ -108,7 +108,7 @@ help:
echo "RELEASE Make a release build (Default: 1)" echo "RELEASE Make a release build (Default: 1)"
echo "STATIC Link librariess tatically (Default: 1)" echo "STATIC Link librariess tatically (Default: 1)"
echo "" echo ""
echo "DISABLE_LSQUIC Don't use lsquic (Default: 0)" echo "DISABLE_QUIC Disable support for QUIC (Default: 0)"
echo "NO_DBG_SYMBOLS Strip debug symbols (Default: 0)" echo "NO_DBG_SYMBOLS Strip debug symbols (Default: 0)"