diff options
Diffstat (limited to 'net-im/tdlib')
-rw-r--r-- | net-im/tdlib/Makefile | 15 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-CMakeLists.txt | 92 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake | 2 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-sqlite_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdactor_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tddb_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tde2e_CMakeLists.txt | 17 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdnet_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdtl_CMakeLists.txt | 9 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-tdutils_CMakeLists.txt | 19 | ||||
-rw-r--r-- | net-im/tdlib/files/patch-test_CMakeLists.txt | 11 | ||||
-rw-r--r-- | net-im/tdlib/pkg-plist | 513 |
12 files changed, 687 insertions, 35 deletions
diff --git a/net-im/tdlib/Makefile b/net-im/tdlib/Makefile index 28fbf97c053e..77fe4f5caaad 100644 --- a/net-im/tdlib/Makefile +++ b/net-im/tdlib/Makefile @@ -1,6 +1,7 @@ PORTNAME= tdlib DISTVERSIONPREFIX= v DISTVERSION= 1.8.48 +PORTREVISION= 3 CATEGORIES= net-im devel MAINTAINER= yuri@FreeBSD.org @@ -15,8 +16,10 @@ USE_GITHUB= yes GH_PROJECT= td GH_TAGNAME= b8b08b0 # hash corresponding to 1.8.48 -CMAKE_ON= TD_INSTALL_SHARED_LIBRARIES TD_INSTALL_STATIC_LIBRARIES -CMAKE_OFF= BUILD_TESTING FREEBSD_BUILD_BENCHMARKS +CMAKE_ON= TD_INSTALL_SHARED_LIBRARIES TD_INSTALL_STATIC_LIBRARIES \ + BUILD_SHARED_LIBS +CMAKE_OFF+= TD_E2E_ONLY # supposed to install tde2e but it fails to install headers +CMAKE_OFF+= BUILD_TESTING FREEBSD_BUILD_BENCHMARKS PLIST_SUB+= LIBVERSION=${PORTVERSION} @@ -24,4 +27,12 @@ post-patch: @${REINPLACE_CMD} -e 's|%%COMMIT%%|${GH_TAGNAME}|g' \ ${WRKSRC}/CMake/GetGitRevisionDescription.cmake +post-install: # see https://github.com/tdlib/td/issues/3328 + @cd ${WRKSRC}/td && \ + ${COPYTREE_SHARE} telegram ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" + @cd ${WRKSRC}/tdutils/td && \ + ${COPYTREE_SHARE} utils ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" + @cd ${WRKSRC}/tde2e/td && \ + ${COPYTREE_SHARE} e2e ${STAGEDIR}${PREFIX}/include/td "-name *\.h -o -name *\.hpp" + .include <bsd.port.mk> diff --git a/net-im/tdlib/files/patch-CMakeLists.txt b/net-im/tdlib/files/patch-CMakeLists.txt index ace0aa6c9837..989c6940d4d3 100644 --- a/net-im/tdlib/files/patch-CMakeLists.txt +++ b/net-im/tdlib/files/patch-CMakeLists.txt @@ -9,3 +9,95 @@ add_subdirectory(benchmark) endif() +@@ -1148,7 +1148,7 @@ set(MEMPROF_STAT_SOURCE + # LIBRARIES + + # memprof - simple library for memory usage profiling +-add_library(memprof STATIC ${MEMPROF_SOURCE}) ++add_library(memprof ${MEMPROF_SOURCE}) + target_include_directories(memprof PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(memprof PRIVATE tdutils) + if (MEMPROF) +@@ -1162,12 +1162,12 @@ endif() + endif() + endif() + +-add_library(memprof_stat EXCLUDE_FROM_ALL STATIC ${MEMPROF_STAT_SOURCE}) ++add_library(memprof_stat EXCLUDE_FROM_ALL ${MEMPROF_STAT_SOURCE}) + target_include_directories(memprof_stat PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(memprof_stat PRIVATE tdutils) + + +-add_library(tdapi STATIC ${TL_TD_API_SOURCE}) ++add_library(tdapi ${TL_TD_API_SOURCE}) + target_include_directories(tdapi PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> INTERFACE $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdapi PRIVATE tdutils) + +@@ -1184,7 +1184,7 @@ endif() + add_dependencies(tdapi tl_generate_common) + endif() + +-add_library(tdmtproto STATIC ${TD_MTPROTO_SOURCE}) ++add_library(tdmtproto ${TD_MTPROTO_SOURCE}) + target_include_directories(tdmtproto PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_include_directories(tdmtproto SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR}) + target_link_libraries(tdmtproto PUBLIC tdactor tdnet tdutils PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}) +@@ -1201,11 +1201,11 @@ if (MSVC AND TD_ENABLE_LTO) + + # tdcore - internal TDLib interface + if (MSVC AND TD_ENABLE_LTO) +- add_library(tdcore_part1 STATIC ${TDLIB_SOURCE_PART1}) ++ add_library(tdcore_part1 ${TDLIB_SOURCE_PART1}) + target_include_directories(tdcore_part1 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore_part1 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +- add_library(tdcore_part2 STATIC ${TDLIB_SOURCE_PART2}) ++ add_library(tdcore_part2 ${TDLIB_SOURCE_PART2}) + target_include_directories(tdcore_part2 PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore_part2 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +@@ -1214,7 +1214,7 @@ else() + + set(TD_CORE_PART_TARGETS tdcore_part1 tdcore_part2) + else() +- add_library(tdcore STATIC ${TDLIB_SOURCE}) ++ add_library(tdcore ${TDLIB_SOURCE}) + target_include_directories(tdcore PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) + target_link_libraries(tdcore PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + +@@ -1231,7 +1231,7 @@ endif() + endif() + endif() + +-add_library(tdclient STATIC td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h) ++add_library(tdclient td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h) + target_include_directories(tdclient PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + ) +@@ -1263,7 +1263,7 @@ endif() + endif() + + # tdc - TDLib interface in pure C +-add_library(tdc STATIC EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h) ++add_library(tdc EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h) + target_include_directories(tdc PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) +@@ -1272,7 +1272,7 @@ endif() + add_dependencies(tdc tl_generate_c) + endif() + +-add_library(tdjson_private STATIC ${TL_TD_JSON_SOURCE} td/telegram/ClientJson.cpp td/telegram/ClientJson.h) ++add_library(tdjson_private ${TL_TD_JSON_SOURCE} td/telegram/ClientJson.cpp td/telegram/ClientJson.h) + target_include_directories(tdjson_private PUBLIC + $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}> + $<BUILD_INTERFACE:${TL_TD_AUTO_INCLUDE_DIR}>) +@@ -1299,7 +1299,7 @@ endif() + set_target_properties(tdjson PROPERTIES LINK_FLAGS "-Wl,-exported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/tdclientjson_export_list") + endif() + +-add_library(tdjson_static STATIC ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) ++add_library(tdjson_static ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) + target_link_libraries(tdjson_static PRIVATE tdjson_private) + target_compile_definitions(tdjson_static PUBLIC TDJSON_STATIC_DEFINE) + target_include_directories(tdjson_static PUBLIC diff --git a/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake b/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake index cf442232b657..f35b6961cc68 100644 --- a/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake +++ b/net-im/tdlib/files/patch-CMake_GetGitRevisionDescription.cmake @@ -5,7 +5,7 @@ if (GIT_DIR STREQUAL "") set(${_refspecvar} "GITDIR-NOTFOUND" PARENT_SCOPE) - set(${_hashvar} "GITDIR-NOTFOUND" PARENT_SCOPE) -+ set(${_hashvar} "%%COMMIT%%" PARENT_SCOPE) ++ set(${_hashvar} "b8b08b0" PARENT_SCOPE) return() endif() diff --git a/net-im/tdlib/files/patch-sqlite_CMakeLists.txt b/net-im/tdlib/files/patch-sqlite_CMakeLists.txt new file mode 100644 index 000000000000..d6db21f5bb35 --- /dev/null +++ b/net-im/tdlib/files/patch-sqlite_CMakeLists.txt @@ -0,0 +1,11 @@ +--- sqlite/CMakeLists.txt.orig 2025-05-09 16:44:31 UTC ++++ sqlite/CMakeLists.txt +@@ -23,7 +23,7 @@ set(SQLITE_SOURCE + + # all SQLite functions are moved to namespace tdsqlite3 by `sed -Ebi 's/sqlite3([^.]|$)/td&/g' *` + +-add_library(tdsqlite STATIC ${SQLITE_SOURCE}) ++add_library(tdsqlite ${SQLITE_SOURCE}) + target_include_directories(tdsqlite PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(tdsqlite SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR}) + target_link_libraries(tdsqlite PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}) diff --git a/net-im/tdlib/files/patch-tdactor_CMakeLists.txt b/net-im/tdlib/files/patch-tdactor_CMakeLists.txt new file mode 100644 index 000000000000..7894a1a863c2 --- /dev/null +++ b/net-im/tdlib/files/patch-tdactor_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tdactor/CMakeLists.txt.orig 2025-05-09 16:50:48 UTC ++++ tdactor/CMakeLists.txt +@@ -44,7 +44,7 @@ set(TDACTOR_TEST_SOURCE + PARENT_SCOPE + ) + +-add_library(tdactor STATIC ${TDACTOR_SOURCE}) ++add_library(tdactor ${TDACTOR_SOURCE}) + target_include_directories(tdactor PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(tdactor PUBLIC tdutils) + diff --git a/net-im/tdlib/files/patch-tddb_CMakeLists.txt b/net-im/tdlib/files/patch-tddb_CMakeLists.txt new file mode 100644 index 000000000000..e42b54861319 --- /dev/null +++ b/net-im/tdlib/files/patch-tddb_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tddb/CMakeLists.txt.orig 2025-05-09 16:50:17 UTC ++++ tddb/CMakeLists.txt +@@ -48,7 +48,7 @@ set(TDDB_SOURCE + td/db/detail/RawSqliteDb.h + ) + +-add_library(tddb STATIC ${TDDB_SOURCE}) ++add_library(tddb ${TDDB_SOURCE}) + target_include_directories(tddb PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(tddb PUBLIC tdactor tdutils PRIVATE tdsqlite) + diff --git a/net-im/tdlib/files/patch-tde2e_CMakeLists.txt b/net-im/tdlib/files/patch-tde2e_CMakeLists.txt index 8dc1e7c1fb01..7a9d1238ff0a 100644 --- a/net-im/tdlib/files/patch-tde2e_CMakeLists.txt +++ b/net-im/tdlib/files/patch-tde2e_CMakeLists.txt @@ -1,10 +1,11 @@ ---- tde2e/CMakeLists.txt.orig 2025-04-30 22:25:21 UTC +--- tde2e/CMakeLists.txt.orig 2025-05-09 16:51:07 UTC +++ tde2e/CMakeLists.txt -@@ -83,4 +83,7 @@ if (TDE2E_ENABLE_INSTALL) - LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" - ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" - ) -+ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/td -+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} -+ FILES_MATCHING PATTERN "*.h") +@@ -62,7 +62,7 @@ set(TDE2E_TEST_SOURCE "${TDE2E_TEST_SOURCE}" PARENT_SC + + set(TDE2E_TEST_SOURCE "${TDE2E_TEST_SOURCE}" PARENT_SCOPE) + +-add_library(tde2e STATIC ${TDE2E_SOURCE}) ++add_library(tde2e ${TDE2E_SOURCE}) + if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tde2e tl_generate_common) endif() diff --git a/net-im/tdlib/files/patch-tdnet_CMakeLists.txt b/net-im/tdlib/files/patch-tdnet_CMakeLists.txt new file mode 100644 index 000000000000..3ff722cf12f0 --- /dev/null +++ b/net-im/tdlib/files/patch-tdnet_CMakeLists.txt @@ -0,0 +1,11 @@ +--- tdnet/CMakeLists.txt.orig 2025-05-09 16:51:47 UTC ++++ tdnet/CMakeLists.txt +@@ -60,7 +60,7 @@ endif() + set_source_files_properties(td/net/DarwinHttp.mm PROPERTIES COMPILE_FLAGS -fobjc-arc) + endif() + +-add_library(tdnet STATIC ${TDNET_SOURCE}) ++add_library(tdnet ${TDNET_SOURCE}) + target_include_directories(tdnet PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(tdnet SYSTEM PRIVATE $<BUILD_INTERFACE:${OPENSSL_INCLUDE_DIR}>) + target_link_libraries(tdnet PUBLIC tdutils tdactor) diff --git a/net-im/tdlib/files/patch-tdtl_CMakeLists.txt b/net-im/tdlib/files/patch-tdtl_CMakeLists.txt new file mode 100644 index 000000000000..bd6135a15438 --- /dev/null +++ b/net-im/tdlib/files/patch-tdtl_CMakeLists.txt @@ -0,0 +1,9 @@ +--- tdtl/CMakeLists.txt.orig 2025-05-09 16:52:10 UTC ++++ tdtl/CMakeLists.txt +@@ -24,5 +24,5 @@ set(TDTL_SOURCE + td/tl/tl_writer.h + ) + +-add_library(tdtl STATIC ${TDTL_SOURCE}) ++add_library(tdtl ${TDTL_SOURCE}) + target_include_directories(tdtl PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) diff --git a/net-im/tdlib/files/patch-tdutils_CMakeLists.txt b/net-im/tdlib/files/patch-tdutils_CMakeLists.txt index bea6582773bf..60e62535b6d3 100644 --- a/net-im/tdlib/files/patch-tdutils_CMakeLists.txt +++ b/net-im/tdlib/files/patch-tdutils_CMakeLists.txt @@ -1,12 +1,11 @@ ---- tdutils/CMakeLists.txt.orig 2025-04-30 22:25:21 UTC +--- tdutils/CMakeLists.txt.orig 2025-05-09 16:51:24 UTC +++ tdutils/CMakeLists.txt -@@ -416,6 +416,9 @@ if (TDUTILS_ENABLE_INSTALL) - LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" - ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" - ) -+ install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/td -+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR} -+ FILES_MATCHING PATTERN "*.h") - endif() +@@ -351,7 +351,7 @@ set(TDUTILS_TEST_SOURCE + PARENT_SCOPE + ) - if (TD_TEST_FOLLY AND ABSL_FOUND AND TDUTILS_USE_EXTERNAL_DEPENDENCIES) +-add_library(tdutils STATIC ${TDUTILS_SOURCE}) ++add_library(tdutils ${TDUTILS_SOURCE}) + + if (NOT CMAKE_CROSSCOMPILING AND TDUTILS_MIME_TYPE) + add_dependencies(tdutils tdmime_auto) diff --git a/net-im/tdlib/files/patch-test_CMakeLists.txt b/net-im/tdlib/files/patch-test_CMakeLists.txt new file mode 100644 index 000000000000..bc5db0338a3e --- /dev/null +++ b/net-im/tdlib/files/patch-test_CMakeLists.txt @@ -0,0 +1,11 @@ +--- test/CMakeLists.txt.orig 2025-05-09 17:43:17 UTC ++++ test/CMakeLists.txt +@@ -61,7 +61,7 @@ if (NOT CMAKE_CROSSCOMPILING OR EMSCRIPTEN) + target_include_directories(run_all_tests PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_include_directories(test-tdutils PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>) + target_link_libraries(test-tdutils PRIVATE tdutils) +- target_link_libraries(run_all_tests PRIVATE tdcore tdclient) ++ target_link_libraries(run_all_tests PRIVATE tdcore tdclient tdmtproto) + target_link_libraries(test-online PRIVATE tdcore tdjson_private tdclient tdutils tdactor) + + if (CLANG) diff --git a/net-im/tdlib/pkg-plist b/net-im/tdlib/pkg-plist index eee8bb81e4c1..bdf48af6106a 100644 --- a/net-im/tdlib/pkg-plist +++ b/net-im/tdlib/pkg-plist @@ -16,10 +16,495 @@ include/td/e2e/bip39.h include/td/e2e/e2e_api.h include/td/e2e/e2e_errors.h include/td/e2e/utils.h +include/td/telegram/AccentColorId.h +include/td/telegram/AccessRights.h +include/td/telegram/AccountManager.h +include/td/telegram/AffectedHistory.h +include/td/telegram/AffiliateType.h +include/td/telegram/AlarmManager.h +include/td/telegram/AnimationsManager.h +include/td/telegram/AnimationsManager.hpp +include/td/telegram/Application.h +include/td/telegram/AttachMenuManager.h +include/td/telegram/AudiosManager.h +include/td/telegram/AudiosManager.hpp +include/td/telegram/AuthManager.h +include/td/telegram/AuthManager.hpp +include/td/telegram/AutoDownloadSettings.h +include/td/telegram/AutosaveManager.h +include/td/telegram/BackgroundId.h +include/td/telegram/BackgroundInfo.h +include/td/telegram/BackgroundInfo.hpp +include/td/telegram/BackgroundManager.h +include/td/telegram/BackgroundType.h +include/td/telegram/BackgroundType.hpp +include/td/telegram/BaseTheme.h +include/td/telegram/Birthdate.h +include/td/telegram/Birthdate.hpp +include/td/telegram/BlockListId.h +include/td/telegram/BoostManager.h +include/td/telegram/BotCommand.h +include/td/telegram/BotCommandScope.h +include/td/telegram/BotInfoManager.h +include/td/telegram/BotMenuButton.h +include/td/telegram/BotQueries.h +include/td/telegram/BotRecommendationManager.h +include/td/telegram/BotVerification.h +include/td/telegram/BotVerification.hpp +include/td/telegram/BotVerifierSettings.h +include/td/telegram/BotVerifierSettings.hpp +include/td/telegram/BusinessAwayMessage.h +include/td/telegram/BusinessAwayMessage.hpp +include/td/telegram/BusinessAwayMessageSchedule.h +include/td/telegram/BusinessAwayMessageSchedule.hpp +include/td/telegram/BusinessBotManageBar.h +include/td/telegram/BusinessBotRights.h +include/td/telegram/BusinessBotRights.hpp +include/td/telegram/BusinessChatLink.h +include/td/telegram/BusinessConnectedBot.h +include/td/telegram/BusinessConnectedBot.hpp +include/td/telegram/BusinessConnectionId.h +include/td/telegram/BusinessConnectionManager.h +include/td/telegram/BusinessGreetingMessage.h +include/td/telegram/BusinessGreetingMessage.hpp +include/td/telegram/BusinessInfo.h +include/td/telegram/BusinessInfo.hpp +include/td/telegram/BusinessIntro.h +include/td/telegram/BusinessIntro.hpp +include/td/telegram/BusinessManager.h +include/td/telegram/BusinessRecipients.h +include/td/telegram/BusinessRecipients.hpp +include/td/telegram/BusinessWorkHours.h +include/td/telegram/BusinessWorkHours.hpp +include/td/telegram/CallActor.h +include/td/telegram/CallDiscardReason.h +include/td/telegram/CallId.h +include/td/telegram/CallManager.h +include/td/telegram/CallbackQueriesManager.h +include/td/telegram/ChainId.h +include/td/telegram/ChannelId.h +include/td/telegram/ChannelParticipantFilter.h +include/td/telegram/ChannelRecommendationManager.h +include/td/telegram/ChannelType.h +include/td/telegram/ChatId.h +include/td/telegram/ChatManager.h +include/td/telegram/ChatReactions.h +include/td/telegram/ChatReactions.hpp include/td/telegram/Client.h +include/td/telegram/ClientActor.h +include/td/telegram/ClientJson.h +include/td/telegram/CommonDialogManager.h +include/td/telegram/ConfigManager.h +include/td/telegram/ConnectionState.h +include/td/telegram/ConnectionStateManager.h +include/td/telegram/Contact.h +include/td/telegram/CountryInfoManager.h +include/td/telegram/CustomEmojiId.h +include/td/telegram/DelayDispatcher.h +include/td/telegram/Dependencies.h +include/td/telegram/DeviceTokenManager.h +include/td/telegram/DhCache.h +include/td/telegram/DhConfig.h +include/td/telegram/DialogAction.h +include/td/telegram/DialogActionBar.h +include/td/telegram/DialogActionManager.h +include/td/telegram/DialogAdministrator.h +include/td/telegram/DialogBoostLinkInfo.h +include/td/telegram/DialogDate.h +include/td/telegram/DialogDb.h +include/td/telegram/DialogEventLog.h +include/td/telegram/DialogFilter.h +include/td/telegram/DialogFilter.hpp +include/td/telegram/DialogFilterDialogInfo.h +include/td/telegram/DialogFilterId.h +include/td/telegram/DialogFilterInviteLink.h +include/td/telegram/DialogFilterManager.h +include/td/telegram/DialogId.h +include/td/telegram/DialogInviteLink.h +include/td/telegram/DialogInviteLink.hpp +include/td/telegram/DialogInviteLinkManager.h +include/td/telegram/DialogListId.h +include/td/telegram/DialogLocation.h +include/td/telegram/DialogManager.h +include/td/telegram/DialogNotificationSettings.h +include/td/telegram/DialogNotificationSettings.hpp +include/td/telegram/DialogParticipant.h +include/td/telegram/DialogParticipantFilter.h +include/td/telegram/DialogParticipantManager.h +include/td/telegram/DialogSource.h +include/td/telegram/Dimensions.h +include/td/telegram/Dimensions.hpp +include/td/telegram/DisallowedGiftsSettings.h +include/td/telegram/DisallowedGiftsSettings.hpp +include/td/telegram/Document.h +include/td/telegram/Document.hpp +include/td/telegram/DocumentsManager.h +include/td/telegram/DocumentsManager.hpp +include/td/telegram/DownloadManager.h +include/td/telegram/DownloadManagerCallback.h +include/td/telegram/DraftMessage.h +include/td/telegram/DraftMessage.hpp +include/td/telegram/EmailVerification.h +include/td/telegram/EmojiGroup.h +include/td/telegram/EmojiGroup.hpp +include/td/telegram/EmojiGroupType.h +include/td/telegram/EmojiStatus.h +include/td/telegram/EncryptedFile.h +include/td/telegram/FactCheck.h +include/td/telegram/FactCheck.hpp +include/td/telegram/FileReferenceManager.h +include/td/telegram/FileReferenceManager.hpp +include/td/telegram/FolderId.h +include/td/telegram/ForumTopic.h +include/td/telegram/ForumTopic.hpp +include/td/telegram/ForumTopicEditedData.h +include/td/telegram/ForumTopicEditedData.hpp +include/td/telegram/ForumTopicIcon.h +include/td/telegram/ForumTopicIcon.hpp +include/td/telegram/ForumTopicInfo.h +include/td/telegram/ForumTopicInfo.hpp +include/td/telegram/ForumTopicManager.h +include/td/telegram/Game.h +include/td/telegram/Game.hpp +include/td/telegram/GameManager.h +include/td/telegram/GitCommitHash.h +include/td/telegram/GiveawayParameters.h +include/td/telegram/GiveawayParameters.hpp +include/td/telegram/Global.h +include/td/telegram/GlobalPrivacySettings.h +include/td/telegram/GroupCallId.h +include/td/telegram/GroupCallJoinParameters.h +include/td/telegram/GroupCallManager.h +include/td/telegram/GroupCallParticipant.h +include/td/telegram/GroupCallParticipantOrder.h +include/td/telegram/GroupCallVideoPayload.h +include/td/telegram/HashtagHints.h +include/td/telegram/InlineMessageManager.h +include/td/telegram/InlineQueriesManager.h +include/td/telegram/InputBusinessChatLink.h +include/td/telegram/InputDialogId.h +include/td/telegram/InputGroupCall.h +include/td/telegram/InputGroupCallId.h +include/td/telegram/InputInvoice.h +include/td/telegram/InputInvoice.hpp +include/td/telegram/InputMessageText.h +include/td/telegram/InputMessageText.hpp +include/td/telegram/JsonValue.h +include/td/telegram/LabeledPricePart.h +include/td/telegram/LanguagePackManager.h +include/td/telegram/LinkManager.h +include/td/telegram/Location.h include/td/telegram/Log.h +include/td/telegram/Logging.h +include/td/telegram/MediaArea.h +include/td/telegram/MediaArea.hpp +include/td/telegram/MediaAreaCoordinates.h +include/td/telegram/MediaAreaCoordinates.hpp +include/td/telegram/MessageContent.h +include/td/telegram/MessageContentType.h +include/td/telegram/MessageCopyOptions.h +include/td/telegram/MessageDb.h +include/td/telegram/MessageEffectId.h +include/td/telegram/MessageEntity.h +include/td/telegram/MessageEntity.hpp +include/td/telegram/MessageExtendedMedia.h +include/td/telegram/MessageExtendedMedia.hpp +include/td/telegram/MessageForwardInfo.h +include/td/telegram/MessageForwardInfo.hpp +include/td/telegram/MessageFullId.h +include/td/telegram/MessageId.h +include/td/telegram/MessageImportManager.h +include/td/telegram/MessageInputReplyTo.h +include/td/telegram/MessageInputReplyTo.hpp +include/td/telegram/MessageLinkInfo.h +include/td/telegram/MessageOrigin.h +include/td/telegram/MessageOrigin.hpp +include/td/telegram/MessageQueryManager.h +include/td/telegram/MessageQuote.h +include/td/telegram/MessageQuote.hpp +include/td/telegram/MessageReaction.h +include/td/telegram/MessageReaction.hpp +include/td/telegram/MessageReactor.h +include/td/telegram/MessageReactor.hpp +include/td/telegram/MessageReplyHeader.h +include/td/telegram/MessageReplyInfo.h +include/td/telegram/MessageReplyInfo.hpp +include/td/telegram/MessageSearchFilter.h +include/td/telegram/MessageSearchOffset.h +include/td/telegram/MessageSelfDestructType.h +include/td/telegram/MessageSender.h +include/td/telegram/MessageSource.h +include/td/telegram/MessageThreadDb.h +include/td/telegram/MessageThreadInfo.h +include/td/telegram/MessageTtl.h +include/td/telegram/MessageViewer.h +include/td/telegram/MessagesInfo.h +include/td/telegram/MessagesManager.h +include/td/telegram/MinChannel.h +include/td/telegram/MinChannel.hpp +include/td/telegram/MissingInvitee.h +include/td/telegram/NewPasswordState.h +include/td/telegram/Notification.h +include/td/telegram/NotificationGroupFromDatabase.h +include/td/telegram/NotificationGroupId.h +include/td/telegram/NotificationGroupInfo.h +include/td/telegram/NotificationGroupInfo.hpp +include/td/telegram/NotificationGroupKey.h +include/td/telegram/NotificationGroupType.h +include/td/telegram/NotificationId.h +include/td/telegram/NotificationManager.h +include/td/telegram/NotificationObjectFullId.h +include/td/telegram/NotificationObjectId.h +include/td/telegram/NotificationSettingsManager.h +include/td/telegram/NotificationSettingsScope.h +include/td/telegram/NotificationSound.h +include/td/telegram/NotificationSoundType.h +include/td/telegram/NotificationType.h +include/td/telegram/OnlineManager.h +include/td/telegram/OptionManager.h +include/td/telegram/OrderInfo.h +include/td/telegram/OrderInfo.hpp +include/td/telegram/OrderedMessage.h +include/td/telegram/Outline.h +include/td/telegram/PaidReactionType.h +include/td/telegram/PaidReactionType.hpp +include/td/telegram/PasswordManager.h +include/td/telegram/Payments.h +include/td/telegram/PeerColor.h +include/td/telegram/PeopleNearbyManager.h +include/td/telegram/PhoneNumberManager.h +include/td/telegram/Photo.h +include/td/telegram/Photo.hpp +include/td/telegram/PhotoFormat.h +include/td/telegram/PhotoSize.h +include/td/telegram/PhotoSize.hpp +include/td/telegram/PhotoSizeSource.h +include/td/telegram/PhotoSizeSource.hpp +include/td/telegram/PhotoSizeType.h +include/td/telegram/PhotoSizeType.hpp +include/td/telegram/PollId.h +include/td/telegram/PollId.hpp +include/td/telegram/PollManager.h +include/td/telegram/PollManager.hpp +include/td/telegram/Premium.h +include/td/telegram/PremiumGiftOption.h +include/td/telegram/PremiumGiftOption.hpp +include/td/telegram/PrivacyManager.h +include/td/telegram/PromoDataManager.h +include/td/telegram/PtsManager.h +include/td/telegram/PublicDialogType.h +include/td/telegram/QueryCombiner.h +include/td/telegram/QueryMerger.h +include/td/telegram/QuickReplyManager.h +include/td/telegram/QuickReplyMessageFullId.h +include/td/telegram/QuickReplyShortcutId.h +include/td/telegram/ReactionListType.h +include/td/telegram/ReactionManager.h +include/td/telegram/ReactionManager.hpp +include/td/telegram/ReactionNotificationSettings.h +include/td/telegram/ReactionNotificationSettings.hpp +include/td/telegram/ReactionNotificationsFrom.h +include/td/telegram/ReactionNotificationsFrom.hpp +include/td/telegram/ReactionType.h +include/td/telegram/ReactionType.hpp +include/td/telegram/ReactionUnavailabilityReason.h +include/td/telegram/RecentDialogList.h +include/td/telegram/ReferralProgramInfo.h +include/td/telegram/ReferralProgramInfo.hpp +include/td/telegram/ReferralProgramManager.h +include/td/telegram/ReferralProgramParameters.h +include/td/telegram/ReferralProgramParameters.hpp +include/td/telegram/ReferralProgramSortOrder.h +include/td/telegram/RepliedMessageInfo.h +include/td/telegram/RepliedMessageInfo.hpp +include/td/telegram/ReplyMarkup.h +include/td/telegram/ReplyMarkup.hpp +include/td/telegram/ReportReason.h +include/td/telegram/RequestActor.h +include/td/telegram/RequestedDialogType.h +include/td/telegram/RequestedDialogType.hpp +include/td/telegram/Requests.h +include/td/telegram/RestrictionReason.h +include/td/telegram/SavedMessagesManager.h +include/td/telegram/SavedMessagesTopicId.h +include/td/telegram/ScheduledServerMessageId.h +include/td/telegram/ScopeNotificationSettings.h +include/td/telegram/ScopeNotificationSettings.hpp +include/td/telegram/SecretChatActor.h +include/td/telegram/SecretChatDb.h +include/td/telegram/SecretChatId.h +include/td/telegram/SecretChatLayer.h +include/td/telegram/SecretChatsManager.h +include/td/telegram/SecretInputMedia.h +include/td/telegram/SecureManager.h +include/td/telegram/SecureStorage.h +include/td/telegram/SecureValue.h +include/td/telegram/SecureValue.hpp +include/td/telegram/SendCodeHelper.h +include/td/telegram/SendCodeHelper.hpp +include/td/telegram/SentEmailCode.h +include/td/telegram/SequenceDispatcher.h +include/td/telegram/ServerMessageId.h +include/td/telegram/SetWithPosition.h +include/td/telegram/SharedDialog.h +include/td/telegram/SharedDialog.hpp +include/td/telegram/SpecialStickerSetType.h +include/td/telegram/SponsoredMessageManager.h +include/td/telegram/StarAmount.h +include/td/telegram/StarAmount.hpp +include/td/telegram/StarGift.h +include/td/telegram/StarGift.hpp +include/td/telegram/StarGiftAttribute.h +include/td/telegram/StarGiftAttribute.hpp +include/td/telegram/StarGiftId.h +include/td/telegram/StarGiftId.hpp +include/td/telegram/StarGiftManager.h +include/td/telegram/StarGiftSettings.h +include/td/telegram/StarGiftSettings.hpp +include/td/telegram/StarManager.h +include/td/telegram/StarSubscription.h +include/td/telegram/StarSubscriptionPricing.h +include/td/telegram/StarSubscriptionPricing.hpp +include/td/telegram/StateManager.h +include/td/telegram/StatisticsManager.h +include/td/telegram/StickerFormat.h +include/td/telegram/StickerListType.h +include/td/telegram/StickerMaskPosition.h +include/td/telegram/StickerMaskPosition.hpp +include/td/telegram/StickerPhotoSize.h +include/td/telegram/StickerPhotoSize.hpp +include/td/telegram/StickerSetId.h +include/td/telegram/StickerType.h +include/td/telegram/StickersManager.h +include/td/telegram/StickersManager.hpp +include/td/telegram/StorageManager.h +include/td/telegram/StoryContent.h +include/td/telegram/StoryContentType.h +include/td/telegram/StoryDb.h +include/td/telegram/StoryForwardInfo.h +include/td/telegram/StoryForwardInfo.hpp +include/td/telegram/StoryFullId.h +include/td/telegram/StoryId.h +include/td/telegram/StoryInteractionInfo.h +include/td/telegram/StoryInteractionInfo.hpp +include/td/telegram/StoryListId.h +include/td/telegram/StoryManager.h +include/td/telegram/StoryNotificationSettings.h +include/td/telegram/StoryStealthMode.h +include/td/telegram/StoryStealthMode.hpp +include/td/telegram/StoryViewer.h +include/td/telegram/SuggestedAction.h +include/td/telegram/SuggestedAction.hpp +include/td/telegram/SuggestedActionManager.h +include/td/telegram/Support.h +include/td/telegram/SynchronousRequests.h +include/td/telegram/TargetDialogTypes.h +include/td/telegram/Td.h +include/td/telegram/TdCallback.h +include/td/telegram/TdDb.h +include/td/telegram/TermsOfService.h +include/td/telegram/TermsOfService.hpp +include/td/telegram/TermsOfServiceManager.h +include/td/telegram/ThemeManager.h +include/td/telegram/ThemeSettings.h +include/td/telegram/ThemeSettings.hpp +include/td/telegram/TimeZoneManager.h +include/td/telegram/TopDialogCategory.h +include/td/telegram/TopDialogManager.h +include/td/telegram/TranscriptionInfo.h +include/td/telegram/TranscriptionInfo.hpp +include/td/telegram/TranscriptionManager.h +include/td/telegram/TranslationManager.h +include/td/telegram/UniqueId.h +include/td/telegram/UpdatesManager.h +include/td/telegram/UserId.h +include/td/telegram/UserManager.h +include/td/telegram/UserPrivacySetting.h +include/td/telegram/UserPrivacySettingRule.h +include/td/telegram/UserStarGift.h +include/td/telegram/Usernames.h +include/td/telegram/Venue.h +include/td/telegram/VerificationStatus.h +include/td/telegram/Version.h +include/td/telegram/VideoNotesManager.h +include/td/telegram/VideoNotesManager.hpp +include/td/telegram/VideosManager.h +include/td/telegram/VideosManager.hpp +include/td/telegram/VoiceNotesManager.h +include/td/telegram/VoiceNotesManager.hpp +include/td/telegram/WebApp.h +include/td/telegram/WebApp.hpp +include/td/telegram/WebAppManager.h +include/td/telegram/WebAppOpenParameters.h +include/td/telegram/WebPageBlock.h +include/td/telegram/WebPageId.h +include/td/telegram/WebPagesManager.h +include/td/telegram/files/FileBitmask.h +include/td/telegram/files/FileData.h +include/td/telegram/files/FileData.hpp +include/td/telegram/files/FileDb.h +include/td/telegram/files/FileDbId.h +include/td/telegram/files/FileDownloadManager.h +include/td/telegram/files/FileDownloader.h +include/td/telegram/files/FileEncryptionKey.h +include/td/telegram/files/FileFromBytes.h +include/td/telegram/files/FileGcParameters.h +include/td/telegram/files/FileGcWorker.h +include/td/telegram/files/FileGenerateManager.h +include/td/telegram/files/FileHashUploader.h +include/td/telegram/files/FileId.h +include/td/telegram/files/FileId.hpp +include/td/telegram/files/FileLoadManager.h +include/td/telegram/files/FileLoaderActor.h +include/td/telegram/files/FileLoaderUtils.h +include/td/telegram/files/FileLocation.h +include/td/telegram/files/FileLocation.hpp +include/td/telegram/files/FileManager.h +include/td/telegram/files/FileManager.hpp +include/td/telegram/files/FileSourceId.h +include/td/telegram/files/FileSourceId.hpp +include/td/telegram/files/FileStats.h +include/td/telegram/files/FileStatsWorker.h +include/td/telegram/files/FileType.h +include/td/telegram/files/FileUploadId.h +include/td/telegram/files/FileUploadManager.h +include/td/telegram/files/FileUploader.h +include/td/telegram/files/PartsManager.h +include/td/telegram/files/ResourceManager.h +include/td/telegram/files/ResourceState.h +include/td/telegram/logevent/LogEvent.h +include/td/telegram/logevent/LogEventHelper.h +include/td/telegram/logevent/SecretChatEvent.h +include/td/telegram/misc.h +include/td/telegram/net/AuthDataShared.h +include/td/telegram/net/AuthKeyState.h +include/td/telegram/net/ConnectionCreator.h +include/td/telegram/net/DcAuthManager.h +include/td/telegram/net/DcId.h +include/td/telegram/net/DcOptions.h +include/td/telegram/net/DcOptionsSet.h +include/td/telegram/net/MtprotoHeader.h +include/td/telegram/net/NetActor.h +include/td/telegram/net/NetQuery.h +include/td/telegram/net/NetQueryCounter.h +include/td/telegram/net/NetQueryCreator.h +include/td/telegram/net/NetQueryDelayer.h +include/td/telegram/net/NetQueryDispatcher.h +include/td/telegram/net/NetQueryStats.h +include/td/telegram/net/NetQueryVerifier.h +include/td/telegram/net/NetStatsManager.h +include/td/telegram/net/NetType.h +include/td/telegram/net/Proxy.h +include/td/telegram/net/PublicRsaKeySharedCdn.h +include/td/telegram/net/PublicRsaKeySharedMain.h +include/td/telegram/net/PublicRsaKeyWatchdog.h +include/td/telegram/net/Session.h +include/td/telegram/net/SessionMultiProxy.h +include/td/telegram/net/SessionProxy.h +include/td/telegram/net/TempAuthKeyWatchdog.h include/td/telegram/td_api.h include/td/telegram/td_api.hpp +include/td/telegram/td_c_client.h include/td/telegram/td_json_client.h include/td/telegram/td_log.h include/td/telegram/tdjson_export.h @@ -198,24 +683,24 @@ include/td/utils/unique_value_ptr.h include/td/utils/utf8.h lib/cmake/Td/TdConfig.cmake lib/cmake/Td/TdConfigVersion.cmake -lib/cmake/Td/TdTargets-%%CMAKE_BUILD_TYPE%%.cmake -lib/cmake/Td/TdTargets.cmake lib/cmake/Td/TdStaticTargets-%%CMAKE_BUILD_TYPE%%.cmake lib/cmake/Td/TdStaticTargets.cmake -lib/libtdactor.a -lib/libtdapi.a -lib/libtdclient.a -lib/libtdcore.a -lib/libtddb.a -lib/libtde2e.a +lib/cmake/Td/TdTargets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/Td/TdTargets.cmake +lib/libtdactor.so +lib/libtdapi.so +lib/libtdclient.so +lib/libtdcore.so +lib/libtddb.so +lib/libtde2e.so lib/libtdjson.so lib/libtdjson.so.%%LIBVERSION%% -lib/libtdjson_private.a -lib/libtdjson_static.a -lib/libtdmtproto.a -lib/libtdnet.a -lib/libtdsqlite.a -lib/libtdutils.a +lib/libtdjson_private.so +lib/libtdjson_static.so +lib/libtdmtproto.so +lib/libtdnet.so +lib/libtdsqlite.so +lib/libtdutils.so libdata/pkgconfig/tdactor.pc libdata/pkgconfig/tdapi.pc libdata/pkgconfig/tdclient.pc |