Files
linphone/linphone-build-jsoncpp.patch

14 lines
406 B
Diff
Raw Permalink Normal View History

Index: liblinphone-5.3.4/CMakeLists.txt
===================================================================
--- liblinphone-5.3.4.orig/CMakeLists.txt
+++ liblinphone-5.3.4/CMakeLists.txt
@@ -194,7 +194,8 @@ if(ENABLE_LDAP)
- Update to 5.0.36: * Use UTF8 instead of locale in chat message modifiers` * Fix bad chat room when creating a call * Crash on ec-calibration : Use tone sent callback only on MS_DTMF_GEN_EVENT * Added missing conference APIs * Play ring tone only if tone indications are enabled * Fix tonemanager on infinite rings and wrong ring type * fix crash of kickOffConnectivity * Add option to deactivate potentially weak digest authentication schemes * Fix issue when receiving an INVITE with ICE and rtcp-mux * Fix call repair in case of multi account * Fix regression with ICE not setting candidates correctly for completed check-lists * Improve reliability of account creation by increasing account creation timeout to 30s * Change contact address if call in IncomingReceived state is added to conference * fix crash when session refresh after BYE received * Repair streaming from file feature of AudioStream/VideoStream * Fixed error logs showing CoreManager's core being const * Logging facility optimization * Fix bug with ChatRoomParams::isGroup() erroneously returning true for some basic chatrooms * Count unread chat messages in all Chat Rooms with a weak address testing * avoid to downgrade chat message participant state and add unitest * Stop audio stream when setting new device This fix allow changing device on Desktop while ringback * Audio : Allow setting NULL device (case of no cards available) * Fixed call to content.isFileEncrypted() on a FileTransferContent * Fixed mic gain - Update to 5.0.0: * Support of Capability Negociation framework - RFC5939 limited to media encryption choice (None, SRTP, DTLS-SRTP, ZRTP) * New API to manage SIP accounts: LinphoneAccount and LinphoneAccountParams OBS-URL: https://build.opensuse.org/package/show/network:telephony/linphone?expand=0&rev=106
2021-10-20 00:04:28 +00:00
endif()
if(ENABLE_FLEXIAPI)
- find_package(JsonCPP REQUIRED)
+ find_package(PkgConfig REQUIRED)
+ pkg_check_modules(JSONCPP REQUIRED jsoncpp)
- Update to 5.0.36: * Use UTF8 instead of locale in chat message modifiers` * Fix bad chat room when creating a call * Crash on ec-calibration : Use tone sent callback only on MS_DTMF_GEN_EVENT * Added missing conference APIs * Play ring tone only if tone indications are enabled * Fix tonemanager on infinite rings and wrong ring type * fix crash of kickOffConnectivity * Add option to deactivate potentially weak digest authentication schemes * Fix issue when receiving an INVITE with ICE and rtcp-mux * Fix call repair in case of multi account * Fix regression with ICE not setting candidates correctly for completed check-lists * Improve reliability of account creation by increasing account creation timeout to 30s * Change contact address if call in IncomingReceived state is added to conference * fix crash when session refresh after BYE received * Repair streaming from file feature of AudioStream/VideoStream * Fixed error logs showing CoreManager's core being const * Logging facility optimization * Fix bug with ChatRoomParams::isGroup() erroneously returning true for some basic chatrooms * Count unread chat messages in all Chat Rooms with a weak address testing * avoid to downgrade chat message participant state and add unitest * Stop audio stream when setting new device This fix allow changing device on Desktop while ringback * Audio : Allow setting NULL device (case of no cards available) * Fixed call to content.isFileEncrypted() on a FileTransferContent * Fixed mic gain - Update to 5.0.0: * Support of Capability Negociation framework - RFC5939 limited to media encryption choice (None, SRTP, DTLS-SRTP, ZRTP) * New API to manage SIP accounts: LinphoneAccount and LinphoneAccountParams OBS-URL: https://build.opensuse.org/package/show/network:telephony/linphone?expand=0&rev=106
2021-10-20 00:04:28 +00:00
set(HAVE_FLEXIAPI TRUE)
endif()