njs: Build CLI without PCRE2. For stable it does not make sense to build CLI with PCRE2 since modules would be using PCRE1.
diff --git a/alpine/Makefile.module-njs b/alpine/Makefile.module-njs index f0cc992..172f107 100644 --- a/alpine/Makefile.module-njs +++ b/alpine/Makefile.module-njs
@@ -25,7 +25,7 @@ export MODULE_ADD_CONTROL_TAGS_njs define MODULE_PREBUILD_njs - cd ../njs-$(NJS_VERSION) \&\& ./configure \&\& make njs \&\& mv build build-cli + cd ../njs-$(NJS_VERSION) \&\& ./configure --no-pcre2 \&\& make njs \&\& mv build build-cli endef export MODULE_PREBUILD_njs
diff --git a/debian/Makefile.module-njs b/debian/Makefile.module-njs index 61757fd..c323e9c 100644 --- a/debian/Makefile.module-njs +++ b/debian/Makefile.module-njs
@@ -20,7 +20,7 @@ MODULE_BUILD_DEPENDS_njs=,libedit-dev define MODULE_PREBUILD_njs - cd debian/extra/njs-$(NJS_VERSION) \&\& ./configure \&\& make njs \&\& mv build build-cli + cd debian/extra/njs-$(NJS_VERSION) \&\& ./configure --no-pcre2 \&\& make njs \&\& mv build build-cli endef export MODULE_PREBUILD_njs
diff --git a/rpm/SPECS/Makefile.module-njs b/rpm/SPECS/Makefile.module-njs index b33c778..3610861 100644 --- a/rpm/SPECS/Makefile.module-njs +++ b/rpm/SPECS/Makefile.module-njs
@@ -23,7 +23,7 @@ export MODULE_DEFINITIONS_njs define MODULE_PREBUILD_njs -cd %{bdir}/njs-$(NJS_VERSION) \&\& ./configure \&\& make njs \&\& mv build build-cli +cd %{bdir}/njs-$(NJS_VERSION) \&\& ./configure --no-pcre2 \&\& make njs \&\& mv build build-cli endef export MODULE_PREBUILD_njs