Update diff doxygen and doxygen-gui to 1.10.0. I tested alle consumers and the diff includes those that needs a bump.
This diff does not include the libgphoto2 changes but it re-adds a lost[1] patch (patches/patch-src_dirdef_cpp) which I deleted a long time ago with an update. I don't think it will do any good in the ports tree but never mind. Objections? Ok? Rafael 1: https://cvsweb.openbsd.org/ports/devel/doxygen/patches/Attic/patch-src_dirdef_cpp Index: devel/doxygen/Makefile =================================================================== RCS file: /cvs/ports/devel/doxygen/Makefile,v diff -u -p -r1.66 Makefile --- devel/doxygen/Makefile 21 Sep 2023 09:49:52 -0000 1.66 +++ devel/doxygen/Makefile 13 Jan 2024 20:42:48 -0000 @@ -5,7 +5,7 @@ BROKEN-alpha= .got subsegment exceeds 64 COMMENT= source code documentation generator tool -VERSION= 1.9.8 +VERSION= 1.10.0 DISTNAME= doxygen-${VERSION}.src PKGNAME= doxygen-${VERSION} @@ -23,31 +23,31 @@ WANTLIB += ${COMPILER_LIBCXX} c iconv m COMPILER = base-clang ports-gcc base-gcc SITES= https://doxygen.nl/files/ -TAR = ${LOCALBASE}/bin/gtar - -BUILD_DEPENDS = archivers/gtar - -LIB_DEPENDS= converters/libiconv \ - databases/xapian-core MODULES= devel/cmake \ lang/python MODPY_RUNDEP= No -.if ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" -CXXFLAGS+= -mxgot -.endif +LIB_DEPENDS= converters/libiconv \ + databases/xapian-core + -BUILD_DEPENDS+= devel/bison \ +BUILD_DEPENDS= devel/bison \ devel/git -RUN_DEPENDS+= print/ghostscript/gnu \ +RUN_DEPENDS= print/ghostscript/gnu \ math/graphviz -CONFIGURE_ARGS+=-Dbuild_doc=ON \ - -Dbuild_app=ON \ - -Dbuild_search=ON +CONFIGURE_ARGS= -Dbuild_doc=ON \ + -Dbuild_app=ON \ + -Dbuild_search=ON + +CONFIGURE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_Javacc=ON + +.if ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" +CXXFLAGS+= -mxgot +.endif WRKDIST= ${WRKDIR}/doxygen-${VERSION} Index: devel/doxygen/distinfo =================================================================== RCS file: /cvs/ports/devel/doxygen/distinfo,v diff -u -p -r1.25 distinfo --- devel/doxygen/distinfo 30 Aug 2023 13:51:05 -0000 1.25 +++ devel/doxygen/distinfo 13 Jan 2024 20:42:48 -0000 @@ -1,2 +1,2 @@ -SHA256 (doxygen-1.9.8.src.tar.gz) = BePSKOg4S186+cj9YkbSKASstzGjokzihciYbtfhT2I= -SIZE (doxygen-1.9.8.src.tar.gz) = 8087770 +SHA256 (doxygen-1.10.0.src.tar.gz) = 3XxVa02Wyl5oJTS8Hxp4pc+rzgxCWxTBuFSYAmhqREI= +SIZE (doxygen-1.10.0.src.tar.gz) = 8400410 Index: devel/doxygen/patches/patch-doc_CMakeLists_txt =================================================================== RCS file: /cvs/ports/devel/doxygen/patches/patch-doc_CMakeLists_txt,v diff -u -p -r1.14 patch-doc_CMakeLists_txt --- devel/doxygen/patches/patch-doc_CMakeLists_txt 30 Aug 2023 13:51:05 -0000 1.14 +++ devel/doxygen/patches/patch-doc_CMakeLists_txt 13 Jan 2024 20:42:48 -0000 @@ -14,25 +14,26 @@ Index: doc/CMakeLists.txt include(GNUInstallDirs) if (doxygen_BINARY_DIR) -@@ -160,9 +157,6 @@ endforeach() +@@ -157,9 +154,6 @@ endforeach() configure_file(${PROJECT_SOURCE_DIR}/doc/manual.sty ${PROJECT_BINARY_DIR}/doc/manual.sty COPYONLY) configure_file(${PROJECT_SOURCE_DIR}/doc/doxygen_manual.tex ${PROJECT_BINARY_DIR}/doc/doxygen_manual.tex COPYONLY) configure_file(${PROJECT_SOURCE_DIR}/doc/doxygen.1 ${PROJECT_BINARY_DIR}/man/doxygen.1) -configure_file(${PROJECT_SOURCE_DIR}/doc/doxywizard.1 ${PROJECT_BINARY_DIR}/man/doxywizard.1) -configure_file(${PROJECT_SOURCE_DIR}/doc/doxysearch.1 ${PROJECT_BINARY_DIR}/man/doxysearch.1) -configure_file(${PROJECT_SOURCE_DIR}/doc/doxyindexer.1 ${PROJECT_BINARY_DIR}/man/doxyindexer.1) + configure_file(${PROJECT_SOURCE_DIR}/templates/icon/doxygen.ico ${PROJECT_BINARY_DIR}/doc/doxygen.ico COPYONLY) # Call the main page "Introduction" in LaTeX, which is more appropriate for that format. - set(MAINPAGE_TITLE Doxygen) -@@ -188,42 +182,7 @@ add_custom_command( +@@ -185,43 +179,7 @@ add_custom_command( + WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/doc/ ) - set_source_files_properties(config.doc PROPERTIES GENERATED 1) - ################################################################################ + set_source_files_properties(config.dox PROPERTIES GENERATED 1) +-################################################################################ -add_custom_target(run_doxygen - COMMENT "Generating Latex and HTML documentation." -- COMMAND ${CMAKE_COMMAND} -E env VERSION=${VERSION} INDEX_DOC=index_html.doc GENERATE_HTML=YES GENERATE_LATEX=NO ${DOXYGEN_EXECUTABLE} -- COMMAND ${CMAKE_COMMAND} -E env VERSION=${VERSION} INDEX_DOC=index_latex.doc GENERATE_HTML=NO GENERATE_LATEX=YES ${DOXYGEN_EXECUTABLE} -- DEPENDS ${PROJECT_BINARY_DIR}/doc/language.doc ${PROJECT_BINARY_DIR}/doc/config.doc +- COMMAND ${CMAKE_COMMAND} -E env VERSION=${VERSION} INDEX_DOC=index_html.dox GENERATE_HTML=YES GENERATE_LATEX=NO ${DOXYGEN_EXECUTABLE} +- COMMAND ${CMAKE_COMMAND} -E env VERSION=${VERSION} INDEX_DOC=index_latex.dox GENERATE_HTML=NO GENERATE_LATEX=YES ${DOXYGEN_EXECUTABLE} +- DEPENDS ${PROJECT_BINARY_DIR}/doc/language.dox ${PROJECT_BINARY_DIR}/doc/config.dox - DEPENDS ${OUT_DOC_FILES} - DEPENDS examples - DEPENDS doxygen @@ -67,7 +68,7 @@ Index: doc/CMakeLists.txt # return status of ${HTML_HELP_COMPILER} is not correct, so we have to do a trick with an "or" statement # output is redirected to "nul" as we are on windows no problem if (build_doc_chm) -@@ -251,35 +210,5 @@ endif () +@@ -249,35 +207,5 @@ endif () ################################################################################ install(FILES "${PROJECT_BINARY_DIR}/man/doxygen.1" Index: devel/doxygen/patches/patch-src_dirdef_cpp =================================================================== RCS file: devel/doxygen/patches/patch-src_dirdef_cpp diff -N devel/doxygen/patches/patch-src_dirdef_cpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ devel/doxygen/patches/patch-src_dirdef_cpp 13 Jan 2024 20:42:48 -0000 @@ -0,0 +1,16 @@ +Doxygen encodes the source directory path into some of the output filenames. +This is problematic in a ports context as it means WRKDIR pathnames can appear +in generated filenames. + +Index: src/dirdef.cpp +--- src/dirdef.cpp.orig ++++ src/dirdef.cpp +@@ -220,7 +220,7 @@ static QCString encodeDirName(const QCString &anchor) + + QCString DirDefImpl::getOutputFileBase() const + { +- QCString dir = "dir_"+encodeDirName(m_diskName); ++ QCString dir = "dir_"+encodeDirName(m_shortName); + AUTO_TRACE("diskName={} result={}",m_diskName,dir); + return dir; + } Index: devel/doxygen-gui/Makefile =================================================================== RCS file: /cvs/ports/devel/doxygen-gui/Makefile,v diff -u -p -r1.30 Makefile --- devel/doxygen-gui/Makefile 21 Sep 2023 09:49:52 -0000 1.30 +++ devel/doxygen-gui/Makefile 13 Jan 2024 20:42:48 -0000 @@ -5,7 +5,7 @@ BROKEN-alpha= .got subsegment exceeds 64 COMMENT= GUI front-end for doxygen -VERSION= 1.9.8 +VERSION= 1.10.0 DISTNAME= doxygen-${VERSION}.src PKGNAME= doxygen-gui-${VERSION} @@ -24,9 +24,6 @@ WANTLIB += c m COMPILER = base-clang ports-gcc base-gcc SITES= https://doxygen.nl/files/ -TAR = ${LOCALBASE}/bin/gtar - -BUILD_DEPENDS = archivers/gtar LIB_DEPENDS= ${MODQT_LIB_DEPENDS} Index: devel/doxygen-gui/distinfo =================================================================== RCS file: /cvs/ports/devel/doxygen-gui/distinfo,v diff -u -p -r1.16 distinfo --- devel/doxygen-gui/distinfo 30 Aug 2023 13:51:05 -0000 1.16 +++ devel/doxygen-gui/distinfo 13 Jan 2024 20:42:48 -0000 @@ -1,2 +1,2 @@ -SHA256 (doxygen-1.9.8.src.tar.gz) = BePSKOg4S186+cj9YkbSKASstzGjokzihciYbtfhT2I= -SIZE (doxygen-1.9.8.src.tar.gz) = 8087770 +SHA256 (doxygen-1.10.0.src.tar.gz) = 3XxVa02Wyl5oJTS8Hxp4pc+rzgxCWxTBuFSYAmhqREI= +SIZE (doxygen-1.10.0.src.tar.gz) = 8400410 Index: graphics/ipe/Makefile =================================================================== RCS file: /cvs/ports/graphics/ipe/Makefile,v diff -u -p -r1.31 Makefile --- graphics/ipe/Makefile 26 Sep 2023 11:39:05 -0000 1.31 +++ graphics/ipe/Makefile 13 Jan 2024 20:43:00 -0000 @@ -4,7 +4,7 @@ V = 7.2.24 SUBST_VARS += V DISTNAME = ipe-${V}-src PKGNAME = ipe-${V} -REVISION = 3 +REVISION = 4 # Upstream libraries would be installed as libxxx.so.${V} SHLIB_VERSION = 4.0 @@ -37,7 +37,7 @@ MODULES = lang/lua \ MODLUA_VERSION = 5.3 MODLUA_SA = Yes -BUILD_DEPENDS = devel/doxygen>=1.9.8 +BUILD_DEPENDS = devel/doxygen>=1.10.0 LIB_DEPENDS = ${MODLUA_LIB_DEPENDS} \ ${MODQT5_LIB_DEPENDS} \ Index: graphics/ipe/pkg/PLIST =================================================================== RCS file: /cvs/ports/graphics/ipe/pkg/PLIST,v diff -u -p -r1.12 PLIST --- graphics/ipe/pkg/PLIST 30 Aug 2023 13:51:10 -0000 1.12 +++ graphics/ipe/pkg/PLIST 13 Jan 2024 20:43:00 -0000 @@ -269,16 +269,18 @@ share/doc/ipe/classipe_1_1_xml_attribute share/doc/ipe/classipe_1_1_xml_attributes.html share/doc/ipe/classipe_1_1_xml_parser-members.html share/doc/ipe/classipe_1_1_xml_parser.html +share/doc/ipe/clipboard.js share/doc/ipe/closed.png share/doc/ipe/cpp-ipelets.html -share/doc/ipe/dir_7b54d492694b293bf8b54c70d2fe7f56.html -share/doc/ipe/dir_91a90e6e897462a7bb8a7a0fc103953b.html -share/doc/ipe/dir_d44c64559bbebec7f509842c48db8b23.html -share/doc/ipe/dir_e27e8af4fb4f24f00c2e8a69665fe110.html +share/doc/ipe/dir_931edc5bf5f1455904096a1be40a10c3.html +share/doc/ipe/dir_a33c6cabb77106a21e2cde41bb296661.html +share/doc/ipe/dir_cf38a027053fd3b142bc1df43ea3fc51.html +share/doc/ipe/dir_d436eb0fd9de10b54a828ce6435f7e81.html share/doc/ipe/doc.svg share/doc/ipe/docd.svg share/doc/ipe/doxygen.css share/doc/ipe/doxygen.svg +share/doc/ipe/doxygen_crawl.html share/doc/ipe/dynsections.js share/doc/ipe/example1.svg share/doc/ipe/example2.svg Index: graphics/orthanc/server/Makefile =================================================================== RCS file: /cvs/ports/graphics/orthanc/server/Makefile,v diff -u -p -r1.27 Makefile --- graphics/orthanc/server/Makefile 24 Nov 2023 12:49:28 -0000 1.27 +++ graphics/orthanc/server/Makefile 13 Jan 2024 20:43:00 -0000 @@ -2,7 +2,7 @@ COMMENT = RESTful DICOM server for heal DISTNAME = Orthanc-1.11.1 PKGNAME = ${DISTNAME:L} -REVISION = 6 +REVISION = 7 HOMEPAGE = https://www.orthanc-server.com/ @@ -26,7 +26,7 @@ MODULES = devel/cmake \ MODPY_RUNDEP = No -BUILD_DEPENDS = devel/doxygen>=1.9.8 \ +BUILD_DEPENDS = devel/doxygen>=1.10.0 \ devel/gtest LIB_DEPENDS = databases/sqlite3 \ Index: graphics/orthanc/server/pkg/PLIST =================================================================== RCS file: /cvs/ports/graphics/orthanc/server/pkg/PLIST,v diff -u -p -r1.11 PLIST --- graphics/orthanc/server/pkg/PLIST 27 Oct 2023 10:31:31 -0000 1.11 +++ graphics/orthanc/server/pkg/PLIST 13 Jan 2024 20:43:00 -0000 @@ -20,17 +20,19 @@ share/doc/orthanc/OrthancPlugin/annotate share/doc/orthanc/OrthancPlugin/bc_s.png share/doc/orthanc/OrthancPlugin/bc_sd.png share/doc/orthanc/OrthancPlugin/classes.html +share/doc/orthanc/OrthancPlugin/clipboard.js share/doc/orthanc/OrthancPlugin/closed.png share/doc/orthanc/OrthancPlugin/deprecated.html -share/doc/orthanc/OrthancPlugin/dir_0489bdf01843387577ad1964c946a7c0.html -share/doc/orthanc/OrthancPlugin/dir_782bcc12326a942b54bfb52f65417af2.html -share/doc/orthanc/OrthancPlugin/dir_8a0d447fe7aaf723da4d36caa8de6b31.html -share/doc/orthanc/OrthancPlugin/dir_ddde61eb52d2d712e5147ece0844b740.html -share/doc/orthanc/OrthancPlugin/dir_e73b30f829e3152d8d094d6a99e83774.html +share/doc/orthanc/OrthancPlugin/dir_076e7eee9774f2b95d59a44fc7c5dc4b.html +share/doc/orthanc/OrthancPlugin/dir_18f315041aaf5f48ef65a9b73e2a1470.html +share/doc/orthanc/OrthancPlugin/dir_520ad0f1b6d3f851ab5c24f1548bcbe2.html +share/doc/orthanc/OrthancPlugin/dir_bb38096ab39160dc20d44f3ea6b44507.html +share/doc/orthanc/OrthancPlugin/dir_f4d72a64acd8929c0cc9ed96a7a336cc.html share/doc/orthanc/OrthancPlugin/doc.svg share/doc/orthanc/OrthancPlugin/docd.svg share/doc/orthanc/OrthancPlugin/doxygen.css share/doc/orthanc/OrthancPlugin/doxygen.svg +share/doc/orthanc/OrthancPlugin/doxygen_crawl.html share/doc/orthanc/OrthancPlugin/dynsections.js share/doc/orthanc/OrthancPlugin/files.html share/doc/orthanc/OrthancPlugin/folderclosed.svg Index: net/libaccounts-qt/Makefile =================================================================== RCS file: /cvs/ports/net/libaccounts-qt/Makefile,v diff -u -p -r1.5 Makefile --- net/libaccounts-qt/Makefile 27 Sep 2023 14:18:14 -0000 1.5 +++ net/libaccounts-qt/Makefile 13 Jan 2024 20:43:05 -0000 @@ -4,7 +4,7 @@ CATEGORIES = net V = VERSION_1.16 DISTNAME = libaccounts-qt-${V:S/VERSION_//} -REVISION = 1 +REVISION = 2 SHARED_LIBS += accounts-qt5 0.0 # 1.4 @@ -23,7 +23,7 @@ WANTLIB += c gio-2.0 glib-2.0 gobject-2. MODULES = x11/qt5 \ devel/qmake -BUILD_DEPENDS = devel/doxygen>=1.9.8 \ +BUILD_DEPENDS = devel/doxygen>=1.10.0 \ textproc/gtk-doc LIB_DEPENDS = net/libaccounts-glib \ Index: net/libaccounts-qt/pkg/PLIST =================================================================== RCS file: /cvs/ports/net/libaccounts-qt/pkg/PLIST,v diff -u -p -r1.3 PLIST --- net/libaccounts-qt/pkg/PLIST 30 Aug 2023 13:51:18 -0000 1.3 +++ net/libaccounts-qt/pkg/PLIST 13 Jan 2024 20:43:05 -0000 @@ -67,14 +67,17 @@ share/doc/accounts-qt/html/classAccounts share/doc/accounts-qt/html/classAccounts_1_1ServiceType.html share/doc/accounts-qt/html/classAccounts_1_1ServiceType.js share/doc/accounts-qt/html/classes.html +share/doc/accounts-qt/html/clipboard.js share/doc/accounts-qt/html/closed.png +share/doc/accounts-qt/html/cookie.js share/doc/accounts-qt/html/deprecated.html -share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.html -share/doc/accounts-qt/html/dir_c3d1d086c816c0518443c9e800634b9c.js +share/doc/accounts-qt/html/dir_9b945efebb006547a94415eadaa12921.html +share/doc/accounts-qt/html/dir_9b945efebb006547a94415eadaa12921.js share/doc/accounts-qt/html/doc.svg share/doc/accounts-qt/html/docd.svg share/doc/accounts-qt/html/doxygen.css share/doc/accounts-qt/html/doxygen.svg +share/doc/accounts-qt/html/doxygen_crawl.html share/doc/accounts-qt/html/dynsections.js share/doc/accounts-qt/html/error_8cpp_source.html share/doc/accounts-qt/html/error_8h_source.html Index: net/signond/Makefile =================================================================== RCS file: /cvs/ports/net/signond/Makefile,v diff -u -p -r1.7 Makefile --- net/signond/Makefile 27 Sep 2023 14:18:32 -0000 1.7 +++ net/signond/Makefile 13 Jan 2024 20:43:07 -0000 @@ -6,7 +6,7 @@ HOMEPAGE = https://accounts-sso.gitlab.i V = VERSION_8.61 DISTNAME = signond-${V:S/VERSION_//} -REVISION = 4 +REVISION = 5 MAINTAINER = Rafael Sadowski <rsadow...@openbsd.org> @@ -26,7 +26,7 @@ WANTLIB += Qt5Sql Qt5Xml c m MODULES = x11/qt5 \ devel/qmake -BUILD_DEPENDS = devel/doxygen>=1.9.8 +BUILD_DEPENDS = devel/doxygen>=1.10.0 WRKDIST = ${WRKDIR}/signond-${V}-5b34c5bbc45eedf55bf553675595b3fcb5c156a8 Index: net/signond/pkg/PLIST =================================================================== RCS file: /cvs/ports/net/signond/pkg/PLIST,v diff -u -p -r1.4 PLIST --- net/signond/pkg/PLIST 30 Aug 2023 13:51:19 -0000 1.4 +++ net/signond/pkg/PLIST 13 Jan 2024 20:43:07 -0000 @@ -108,16 +108,19 @@ share/doc/signon-plugins-dev/example/exa share/doc/signon/html/ share/doc/signon/html/bc_s.png share/doc/signon/html/bc_sd.png +share/doc/signon/html/clipboard.js share/doc/signon/html/closed.png -share/doc/signon/html/dir_61c9e5842729cb34568d93cb98ad85b9.html -share/doc/signon/html/dir_61c9e5842729cb34568d93cb98ad85b9_dep.map -share/doc/signon/html/dir_61c9e5842729cb34568d93cb98ad85b9_dep.md5 -share/doc/signon/html/dir_61c9e5842729cb34568d93cb98ad85b9_dep.png -share/doc/signon/html/dir_e68e8157741866f444e17edd764ebbae.html +share/doc/signon/html/cookie.js +share/doc/signon/html/dir_25d902c24283ab8cfbac54dfa101ad31.html +share/doc/signon/html/dir_25d902c24283ab8cfbac54dfa101ad31_dep.map +share/doc/signon/html/dir_25d902c24283ab8cfbac54dfa101ad31_dep.md5 +share/doc/signon/html/dir_25d902c24283ab8cfbac54dfa101ad31_dep.png +share/doc/signon/html/dir_9a09b4dfda82e3e665e31092d1c3ec8d.html share/doc/signon/html/doc.svg share/doc/signon/html/docd.svg share/doc/signon/html/doxygen.css share/doc/signon/html/doxygen.svg +share/doc/signon/html/doxygen_crawl.html share/doc/signon/html/dynsections.js share/doc/signon/html/folderclosed.svg share/doc/signon/html/folderclosedd.svg Index: telephony/linphone/liblinphone/Makefile =================================================================== RCS file: /cvs/ports/telephony/linphone/liblinphone/Makefile,v diff -u -p -r1.14 Makefile --- telephony/linphone/liblinphone/Makefile 2 Nov 2023 16:35:46 -0000 1.14 +++ telephony/linphone/liblinphone/Makefile 13 Jan 2024 20:43:13 -0000 @@ -1,4 +1,5 @@ COMMENT = SIP library supporting voice/video calls and text messaging +REVISION = 0 MODULE = liblinphone @@ -15,7 +16,7 @@ CONFIGURE_ARGS =-DENABLE_STATIC=NO \ BUILD_DEPENDS = textproc/py-stache \ devel/py-six,python3 \ - devel/doxygen>=1.9.8 + devel/doxygen>=1.10.0 LIB_DEPENDS = telephony/linphone/bctoolbox \ telephony/linphone/mediastreamer2 \ Index: telephony/linphone/liblinphone/pkg/PLIST =================================================================== RCS file: /cvs/ports/telephony/linphone/liblinphone/pkg/PLIST,v diff -u -p -r1.11 PLIST --- telephony/linphone/liblinphone/pkg/PLIST 2 Nov 2023 16:35:46 -0000 1.11 +++ telephony/linphone/liblinphone/pkg/PLIST 13 Jan 2024 20:43:13 -0000 @@ -231,22 +231,24 @@ share/doc/liblinphone/c/classFlexiAPICli share/doc/liblinphone/c/classFlexiAPIClient_1_1Response.html share/doc/liblinphone/c/classUtils_1_1Version.html share/doc/liblinphone/c/classes.html +share/doc/liblinphone/c/clipboard.js share/doc/liblinphone/c/closed.png share/doc/liblinphone/c/deprecated.html -share/doc/liblinphone/c/dir_02bd6bccd30c310b8ba770cf786d6eda.html -share/doc/liblinphone/c/dir_1b817eacf0960b8938dc88052731dab8.html -share/doc/liblinphone/c/dir_4760ceffb8c5b2109ccf98b78f0e9052.html -share/doc/liblinphone/c/dir_6c99257b779cecbb737c4077a737254e.html -share/doc/liblinphone/c/dir_7099c4a97728dfda357eb7c9a6888656.html -share/doc/liblinphone/c/dir_8f3e80ce0302d277914e3d095c894d6f.html -share/doc/liblinphone/c/dir_9eb7f788193ee29d5183c30a21bd89fc.html -share/doc/liblinphone/c/dir_a3befd1875c633ec26dca75a32990735.html -share/doc/liblinphone/c/dir_cb2b419e05faee273524c28dd8f731e2.html -share/doc/liblinphone/c/dir_d40c13de042d9cf5c1fface2035555cf.html +share/doc/liblinphone/c/dir_0d61f8370cad1d412f80b84d143e1257.html +share/doc/liblinphone/c/dir_11dba57c549c10039d7d897b286e7638.html +share/doc/liblinphone/c/dir_2b3583e6e17721c54496bd04e57a0c15.html +share/doc/liblinphone/c/dir_2fb4beeab2547f18097dfc65af84aa95.html +share/doc/liblinphone/c/dir_407482fef87d1b9f3a34af46a705aba8.html +share/doc/liblinphone/c/dir_657f8b8da628ef83cf69101b6817150a.html +share/doc/liblinphone/c/dir_704935b5921e6f33fda5822c4f70610d.html +share/doc/liblinphone/c/dir_8a5da52ed126447d359e70c05721a8aa.html +share/doc/liblinphone/c/dir_bfebe34154a0dfd9fc7b447fc9ed74e9.html +share/doc/liblinphone/c/dir_d436eb0fd9de10b54a828ce6435f7e81.html share/doc/liblinphone/c/doc.svg share/doc/liblinphone/c/docd.svg share/doc/liblinphone/c/doxygen.css share/doc/liblinphone/c/doxygen.svg +share/doc/liblinphone/c/doxygen_crawl.html share/doc/liblinphone/c/dynsections.js share/doc/liblinphone/c/folderclosed.svg share/doc/liblinphone/c/folderclosedd.svg @@ -589,14 +591,16 @@ share/doc/liblinphone/cpp/classlinphone_ share/doc/liblinphone/cpp/classlinphone_1_1XmlRpcSession-members.html share/doc/liblinphone/cpp/classlinphone_1_1XmlRpcSession.html share/doc/liblinphone/cpp/classlinphone_1_1XmlRpcSession.png +share/doc/liblinphone/cpp/clipboard.js share/doc/liblinphone/cpp/closed.png share/doc/liblinphone/cpp/deprecated.html -share/doc/liblinphone/cpp/dir_3d4f0ec628d6cf3a4ae0168a442d744b.html -share/doc/liblinphone/cpp/dir_d44c64559bbebec7f509842c48db8b23.html +share/doc/liblinphone/cpp/dir_cb1164c73628cd7ee2f858ea986189bf.html +share/doc/liblinphone/cpp/dir_d436eb0fd9de10b54a828ce6435f7e81.html share/doc/liblinphone/cpp/doc.svg share/doc/liblinphone/cpp/docd.svg share/doc/liblinphone/cpp/doxygen.css share/doc/liblinphone/cpp/doxygen.svg +share/doc/liblinphone/cpp/doxygen_crawl.html share/doc/liblinphone/cpp/dynsections.js share/doc/liblinphone/cpp/folderclosed.svg share/doc/liblinphone/cpp/folderclosedd.svg