forked from pool/telegram-desktop
16ed77b8da
- Update to 2.9.0 * Enable auto-delete in your chats to remove messages. * Quickly find all GIFs from a chat using the new GIF section. * Reset your Two-Step Verification password even if you forgot. * Enjoy a new app icon and default background. - Update tg_owt - Update 0001-use-bundled-ranged-exptected-gsl.patch * Use bundled rlottie - Add 0004-use-dynamic-x-libraries.patch - Add 0005-add-wayland-include-path.patch OBS-URL: https://build.opensuse.org/request/show/909652 OBS-URL: https://build.opensuse.org/package/show/server:messaging/telegram-desktop?expand=0&rev=199
63 lines
2.1 KiB
Diff
63 lines
2.1 KiB
Diff
--- a/cmake/external/expected/CMakeLists.txt
|
|
+++ b/cmake/external/expected/CMakeLists.txt
|
|
@@ -7,7 +7,7 @@
|
|
add_library(external_expected INTERFACE IMPORTED GLOBAL)
|
|
add_library(desktop-app::external_expected ALIAS external_expected)
|
|
|
|
-if (DESKTOP_APP_USE_PACKAGED)
|
|
+if (NOT DESKTOP_APP_USE_PACKAGED)
|
|
if (DESKTOP_APP_USE_PACKAGED_LAZY)
|
|
find_package(tl-expected QUIET)
|
|
else()
|
|
--- a/cmake/external/gsl/CMakeLists.txt
|
|
+++ b/cmake/external/gsl/CMakeLists.txt
|
|
@@ -7,7 +7,7 @@
|
|
add_library(external_gsl INTERFACE IMPORTED GLOBAL)
|
|
add_library(desktop-app::external_gsl ALIAS external_gsl)
|
|
|
|
-if (DESKTOP_APP_USE_PACKAGED)
|
|
+if (NOT DESKTOP_APP_USE_PACKAGED)
|
|
if (DESKTOP_APP_USE_PACKAGED_LAZY)
|
|
find_package(Microsoft.GSL QUIET)
|
|
else()
|
|
--- a/cmake/external/ranges/CMakeLists.txt
|
|
+++ b/cmake/external/ranges/CMakeLists.txt
|
|
@@ -7,7 +7,7 @@
|
|
add_library(external_ranges INTERFACE IMPORTED GLOBAL)
|
|
add_library(desktop-app::external_ranges ALIAS external_ranges)
|
|
|
|
-if (DESKTOP_APP_USE_PACKAGED)
|
|
+if (NOT DESKTOP_APP_USE_PACKAGED)
|
|
if (DESKTOP_APP_USE_PACKAGED_LAZY)
|
|
find_package(range-v3 QUIET)
|
|
else()
|
|
@@ -32,4 +32,4 @@ if (NOT range-v3_FOUND)
|
|
/wd5105 # needed for `/Zc:preprocessor`, suppressing C5105 "macro expansion producing 'defined' has undefined behavior"
|
|
)
|
|
endif()
|
|
-endif()
|
|
\ No newline at end of file
|
|
+endif()
|
|
--- a/cmake/external/webrtc/CMakeLists.txt
|
|
+++ b/cmake/external/webrtc/CMakeLists.txt
|
|
@@ -7,7 +7,7 @@
|
|
add_library(external_webrtc INTERFACE IMPORTED GLOBAL)
|
|
add_library(desktop-app::external_webrtc ALIAS external_webrtc)
|
|
|
|
-if (DESKTOP_APP_USE_PACKAGED)
|
|
+if (NOT DESKTOP_APP_USE_PACKAGED)
|
|
find_package(tg_owt REQUIRED)
|
|
target_link_libraries(external_webrtc INTERFACE tg_owt::tg_owt)
|
|
else()
|
|
--- a/cmake/external/rlottie/CMakeLists.txt
|
|
+++ b/cmake/external/rlottie/CMakeLists.txt
|
|
@@ -7,7 +7,7 @@
|
|
add_library(external_rlottie INTERFACE IMPORTED GLOBAL)
|
|
add_library(desktop-app::external_rlottie ALIAS external_rlottie)
|
|
|
|
-if (DESKTOP_APP_USE_PACKAGED)
|
|
+if (NOT DESKTOP_APP_USE_PACKAGED)
|
|
find_package(rlottie QUIET)
|
|
|
|
if (rlottie_FOUND)
|