We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bcbd69 commit cb2aabbCopy full SHA for cb2aabb
util/build.sh
@@ -10,14 +10,19 @@ version=$1
10
force=$2
11
home=~
12
13
+if [ -z "$version" ]; then
14
+ echo "Usage: $0 <nginx-version> [force]"
15
+ exit 1
16
+fi
17
+
18
add_http3_module=--with-http_v3_module
-answer=`$root/util/ver-ge "$NGINX_VERSION" 1.25.1`
19
+answer=`$root/util/ver-ge "$version" 1.25.1`
20
if [ "$OPENSSL_VER" = "1.1.0l" ] || [ "$answer" = "N" ]; then
21
add_http3_module=""
22
fi
23
24
disable_pcre2=--without-pcre2
25
26
if [ "$answer" = "N" ] || [ "$USE_PCRE2" = "Y" ]; then
27
disable_pcre2=""
28
0 commit comments