]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Appveyor: Install OpenSSL to resolve a header/library mismatch
authorteor <teor@torproject.org>
Mon, 11 Nov 2019 02:56:08 +0000 (12:56 +1000)
committerteor <teor@torproject.org>
Mon, 11 Nov 2019 03:19:15 +0000 (13:19 +1000)
Install the mingw OpenSSL package in Appveyor. This makes sure that
the OpenSSL headers and libraries match in Tor's Appveyor builds.

(This bug was triggered by an Appveyor image update.)

Fixes bug 32449; bugfix on 0.3.5.6-rc.

.appveyor.yml
changes/bug32449 [new file with mode: 0644]

index f722478e15d4f807cd23c825fe6770f82051ecda..818e074a4e3cf3cc03b0e68786dce2da2893fedd 100644 (file)
@@ -62,7 +62,7 @@ install:
      #
      # Use pacman --debug to show package downloads and install locations
      #>
-    Execute-Command "C:\msys64\usr\bin\pacman" -Sy --verbose --needed --noconfirm ${env:mingw_prefix}-libevent ${env:mingw_prefix}-pkg-config ${env:mingw_prefix}-xz ${env:mingw_prefix}-zstd ;
+    Execute-Command "C:\msys64\usr\bin\pacman" -Sy --verbose --needed --noconfirm ${env:mingw_prefix}-libevent ${env:mingw_prefix}-openssl ${env:mingw_prefix}-pkg-config ${env:mingw_prefix}-xz ${env:mingw_prefix}-zstd ;
 
 build_script:
 - ps: >-
diff --git a/changes/bug32449 b/changes/bug32449
new file mode 100644 (file)
index 0000000..213d8a1
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes (CI, appveyor):
+    - Install the mingw OpenSSL package in Appveyor. This makes sure that
+      the OpenSSL headers and libraries match in Tor's Appveyor builds.
+      (This bug was triggered by an Appveyor image update.)
+      Fixes bug 32449; bugfix on 0.3.5.6-rc.