Skip to content

Commit

Permalink
Fix so-names for SDL on MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
o01eg committed Dec 25, 2024
1 parent 98fff57 commit 7c2927f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions patches/sdl/0002-CMake-Remove-so-names.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
From 3afda049162863750b849908338991b1e77803fe Mon Sep 17 00:00:00 2001
From: O01eg <o01eg@yandex.ru>
Date: Wed, 25 Dec 2024 09:49:41 +0400
Subject: [PATCH 2/2] CMake: Remove so-names

---
CMakeLists.txt | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index a596eec..37bab7c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3290,9 +3290,7 @@ if(SDL_SHARED)
if(APPLE)
# FIXME: Remove SOVERSION in SDL3
set_target_properties(SDL2 PROPERTIES
- MACOSX_RPATH 1
- SOVERSION 0
- OUTPUT_NAME "SDL2-${LT_RELEASE}")
+ MACOSX_RPATH 1)
elseif(UNIX AND NOT ANDROID)
set_target_properties(SDL2 PROPERTIES
VERSION ${LT_VERSION}
--
2.45.2

0 comments on commit 7c2927f

Please sign in to comment.