diff --git a/bin/compile b/bin/compile index b48afa4..111f694 100755 --- a/bin/compile +++ b/bin/compile @@ -5,8 +5,8 @@ set -eo pipefail NGINX_VERSION="1.23.1" NGINX_TARBALL="nginx-${NGINX_VERSION}.tar.gz" -PCRE_VERSION="8.45" -PCRE_TARBALL="pcre-${PCRE_VERSION}.tar.gz" +PCRE_VERSION="10.40" +PCRE_TARBALL="pcre2-${PCRE_VERSION}.tar.gz" SIGIL_VERSION="0.9.0" SIGIL_TARBALL="gliderlabs-sigil_${SIGIL_VERSION}_linux_amd64.tgz" ZLIB_VERSION="1.2.12" @@ -57,7 +57,7 @@ fi if [[ ! -d "${PCRE_TARBALL%.tar.gz}" ]]; then echo "-----> Download and unzip pcre ${PCRE_VERSION} via http" - curl -sSL "https://downloads.sourceforge.net/project/pcre/pcre/${PCRE_VERSION}/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" + curl -sSL "https://github.com/PCRE2Project/pcre2/releases/download/pcre2-${PCRE_VERSION}/${PCRE_TARBALL}" -o "${PCRE_TARBALL}" tar xzf "${PCRE_TARBALL}" && rm -f "${PCRE_TARBALL}" fi @@ -83,7 +83,7 @@ if [[ ! -f "${CACHE_DIR}/bin/nginx" ]]; then suppress ./configure \ --with-cpu-opt=generic \ --prefix="$BUILD_DIR/nginx" \ - --with-pcre=../pcre-${PCRE_VERSION} \ + --with-pcre=../pcre2-${PCRE_VERSION} \ --sbin-path=. \ --pid-path=./nginx.pid \ --conf-path=./nginx.conf \