Skip to content

Commit

Permalink
Merge pull request #236 from exactly-one-kas/qt-openssl
Browse files Browse the repository at this point in the history
Hotfix QT OpenSSL compatibility
  • Loading branch information
Murmele authored Aug 12, 2022
2 parents 57d7aff + 5334978 commit 7fa0bce
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,11 @@ jobs:
if: matrix.env.ninja_platform == 'mac'
run: |
cd dep/openssl/openssl
# this is necessary until https://github.com/openssl/openssl/issues/18720
# is fixed in OpenSSL 1.1.1r
export CFLAGS=-Wno-error=implicit-function-declaration
./Configure ${{ matrix.env.openssl_arch }} no-shared
make
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(Gittyup)
set(GITTYUP_NAME "Gittyup")
set(GITTYUP_VERSION_MAJOR 1)
set(GITTYUP_VERSION_MINOR 1)
set(GITTYUP_VERSION_PATCH 1)
set(GITTYUP_VERSION_PATCH 2)
set(GITTYUP_VERSION
"${GITTYUP_VERSION_MAJOR}.${GITTYUP_VERSION_MINOR}.${GITTYUP_VERSION_PATCH}"
)
Expand Down
2 changes: 1 addition & 1 deletion dep/openssl/openssl
Submodule openssl updated 9008 files
10 changes: 10 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### v1.1.2 - 2022-08-12

Bug fix release

#### Changed

* Fix bundled OpenSSL version incompatibility

----

### v1.1.1 - 2022-06-09

Bug fix release
Expand Down
6 changes: 3 additions & 3 deletions pack/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,12 @@ if(NOT FLATPAK)
if(NOT APPLE)
if(WIN32)
if(CMAKE_SIZEOF_VOID_P EQUAL 8)
set(SSL_LIB_SUFFIX "-3-x64.dll")
set(SSL_LIB_SUFFIX "-1_1-x64.dll")
else()
set(SSL_LIB_SUFFIX "-3.dll")
set(SSL_LIB_SUFFIX "-1_1.dll")
endif()
else()
set(SSL_LIB_SUFFIX ".so.3")
set(SSL_LIB_SUFFIX ".so.1.1")
endif()

foreach(SSL_LIB_NAME ssl crypto)
Expand Down

0 comments on commit 7fa0bce

Please sign in to comment.