Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 729924 Details for
Bug 806292
>net-im/telegram-desktop-2.8.1 does not start on x11-wm/awesome
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
1st patch
1.patch (text/plain), 1.71 KB, created by
Ilia Durov
on 2021-08-03 19:03:21 UTC
(
hide
)
Description:
1st patch
Filename:
MIME Type:
Creator:
Ilia Durov
Created:
2021-08-03 19:03:21 UTC
Size:
1.71 KB
patch
obsolete
>From 0a4b8fc7f66b9f80490cea844c249d47901f94cf Mon Sep 17 00:00:00 2001 >From: Ilya Fedin <fedin-ilja2010@ya.ru> >Date: Mon, 19 Jul 2021 02:20:39 +0400 >Subject: [PATCH] Always use QLibrary for gtk to avoid confusing dynamic linker > >--- > Telegram/CMakeLists.txt | 21 ++++++--------------- > 1 file changed, 6 insertions(+), 15 deletions(-) > >diff --git a/Telegram/CMakeLists.txt b/Telegram/CMakeLists.txt >index 02ae2f87d8ae..55dda89e3c87 100644 >--- a/Telegram/CMakeLists.txt >+++ b/Telegram/CMakeLists.txt >@@ -114,25 +114,16 @@ if (LINUX) > endif() > > if (NOT DESKTOP_APP_DISABLE_GTK_INTEGRATION) >- target_link_libraries(Telegram PRIVATE rt) > find_package(PkgConfig REQUIRED) > >- if (DESKTOP_APP_USE_PACKAGED AND NOT DESKTOP_APP_USE_PACKAGED_LAZY) >- pkg_check_modules(GTK3 REQUIRED IMPORTED_TARGET gtk+-3.0) >- target_link_libraries(Telegram PRIVATE PkgConfig::GTK3) >- >- if (NOT DESKTOP_APP_DISABLE_X11_INTEGRATION) >- pkg_check_modules(X11 REQUIRED IMPORTED_TARGET x11) >- target_link_libraries(Telegram PRIVATE PkgConfig::X11) >- endif() >- else() >- pkg_check_modules(GTK REQUIRED gtk+-3.0) >- target_include_directories(Telegram PRIVATE ${GTK_INCLUDE_DIRS}) >+ pkg_check_modules(GTK REQUIRED gtk+-3.0) >+ target_include_directories(Telegram PRIVATE ${GTK_INCLUDE_DIRS}) > >- if (NOT DESKTOP_APP_DISABLE_X11_INTEGRATION) >- target_link_libraries(Telegram PRIVATE X11) >- endif() >+ if (NOT DESKTOP_APP_DISABLE_X11_INTEGRATION) >+ target_link_libraries(Telegram PRIVATE X11) > endif() >+ >+ target_link_libraries(Telegram PRIVATE rt) > endif() > endif() >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 806292
:
729876
| 729924 |
729926
|
729928