Skip to content

Commit

Permalink
mingw32: Disable ssl verify to download from code.videolan.org.
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxdude42 committed Jan 11, 2022
1 parent c9db358 commit 26027b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platform/win32/w64-mingw32/MythBuild_MXE.sh
Expand Up @@ -88,17 +88,17 @@ rm libexiv2.patch
cd ..

echo "Compiling libudfread"
git clone https://code.videolan.org/videolan/libudfread.git
GIT_SSL_NO_VERIFY= git clone https://code.videolan.org/videolan/libudfread.git
cd libudfread
./bootstrap
./configure --prefix=$buildPath/mxe/usr/i686-w64-mingw32.shared --host=i686-w64-mingw32.shared
make -j$(nproc)
sudo make install
cd ..

git clone https://code.videolan.org/videolan/libbluray.git
GIT_SSL_NO_VERIFY= git clone https://code.videolan.org/videolan/libbluray.git
cd $buildPath/libbluray
git submodule update --init
GIT_SSL_NO_VERIFY= git submodule update --init

sudo -E chmod -R 777 $buildPath/libbluray

Expand Down

3 comments on commit 26027b8

@stuarta
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we disabling SSL verification for code.videolan.org??
The cert is valid and should validate. Is the builder missing the letsencrypt
root and / or intermediate certificates?

@linuxdude42
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That builder is running a standard Ubuntu 20.04 install.

@linuxdude42
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Was running. Its now running 22.04, and can download those three repositories with SSL. I'll revert this change.

Please sign in to comment.