summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--INSTALL.md2
-rw-r--r--appveyor.yml2
-rw-r--r--other/docker/windows/Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 2cb25741..de6f1095 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -179,7 +179,7 @@ Build the container image based on the Dockerfile. The following options are ava
179| `SUPPORT_ARCH_x86_64` | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true | 179| `SUPPORT_ARCH_x86_64` | Support building 64-bit toxcore. | "true" or "false" (case sensitive). | true |
180| `SUPPORT_TEST` | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false | 180| `SUPPORT_TEST` | Support running toxcore automated tests. | "true" or "false" (case sensitive). | false |
181| `VERSION_OPUS` | Version of libopus to build toxcore with. | Git branch name. | v1.2.1 | 181| `VERSION_OPUS` | Version of libopus to build toxcore with. | Git branch name. | v1.2.1 |
182| `VERSION_SODIUM` | Version of libsodium to build toxcore with. | Git branch name. | 1.0.16 | 182| `VERSION_SODIUM` | Version of libsodium to build toxcore with. | Git branch name. | 1.0.18 |
183| `VERSION_VPX` | Version of libvpx to build toxcore with. | Git branch name. | v1.6.1 | 183| `VERSION_VPX` | Version of libvpx to build toxcore with. | Git branch name. | v1.6.1 |
184 184
185Example of building a container image with options 185Example of building a container image with options
diff --git a/appveyor.yml b/appveyor.yml
index 08505615..08687595 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -11,7 +11,7 @@ install:
11 - cd third_party 11 - cd third_party
12 # libsodium 12 # libsodium
13 - mkdir libsodium && cd libsodium 13 - mkdir libsodium && cd libsodium
14 - if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.16-msvc.zip -o %APPDATA%\downloads\libsodium.zip 14 - if not exist %APPDATA%\downloads\libsodium.zip curl -L https://download.libsodium.org/libsodium/releases/libsodium-1.0.18-msvc.zip -o %APPDATA%\downloads\libsodium.zip
15 - unzip %APPDATA%\downloads\libsodium.zip 15 - unzip %APPDATA%\downloads\libsodium.zip
16 - cd .. 16 - cd ..
17 # pthreads-win32 17 # pthreads-win32
diff --git a/other/docker/windows/Dockerfile b/other/docker/windows/Dockerfile
index 94bedc47..bf69326d 100644
--- a/other/docker/windows/Dockerfile
+++ b/other/docker/windows/Dockerfile
@@ -1,7 +1,7 @@
1FROM debian:stretch-slim 1FROM debian:stretch-slim
2 2
3# Build-time environment variables 3# Build-time environment variables
4ARG VERSION_SODIUM=1.0.16 4ARG VERSION_SODIUM=1.0.18
5ARG VERSION_OPUS=v1.2.1 5ARG VERSION_OPUS=v1.2.1
6ARG VERSION_VPX=v1.6.1 6ARG VERSION_VPX=v1.6.1
7 7