diff --git a/CMakeLists.txt b/CMakeLists.txt index 7a36999265..65cbcc9f3f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -242,7 +242,7 @@ else() endif() # Dependencies version, this must match the number in external_deps/build.sh -set(DEPS_VERSION 10) +set(DEPS_VERSION 11) option(USE_EXTERNAL_DEPS "Download or reuse dependencies from EXTERNAL_DEPS_DIR (mandatory for building and running NaCl .nexe binaries)." ON) diff --git a/external_deps/build.sh b/external_deps/build.sh index e330ab9ff0..02f920b12f 100755 --- a/external_deps/build.sh +++ b/external_deps/build.sh @@ -14,7 +14,7 @@ CURL="$(command -v curl)" # This should match the DEPS_VERSION in CMakeLists.txt. # This is mostly to ensure the path the files end up at if you build deps yourself # are the same as the ones when extracting from the downloaded packages. -DEPS_VERSION=10 +DEPS_VERSION=11 # Package download pages PKGCONFIG_BASEURL='https://pkg-config.freedesktop.org/releases'