gentoo-ebuilds/app-text/doxygen/files/doxygen-1.15.0-link_with_pthread.patch
Alfred Wingate 467d2011bc
app-text/doxygen: add 1.15.0
Closes: https://bugs.gentoo.org/966393
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44741
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-26 03:06:18 +00:00

22 lines
1.1 KiB
Diff

diff --git a/addon/doxywizard/.CMakeLists.txt.swp b/addon/doxywizard/.CMakeLists.txt.swp
deleted file mode 100644
index fc379d2..0000000
Binary files a/addon/doxywizard/.CMakeLists.txt.swp and /dev/null differ
diff --git a/addon/doxywizard/CMakeLists.txt b/addon/doxywizard/CMakeLists.txt
index bb0e0eb..b6135bd 100644
--- a/addon/doxywizard/CMakeLists.txt
+++ b/addon/doxywizard/CMakeLists.txt
@@ -132,10 +132,10 @@ apply_editbin(doxywizard windows)
endif()
if(Qt5Core_FOUND)
- target_link_libraries(doxywizard Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml doxygen_version)
+ target_link_libraries(doxywizard Qt5::Core Qt5::Gui Qt5::Widgets Qt5::Xml doxygen_version pthread)
elseif(Qt6Core_FOUND)
- target_link_libraries(doxywizard Qt6::Core Qt6::Gui Qt6::Widgets Qt6::Xml doxygen_version)
+ target_link_libraries(doxywizard Qt6::Core Qt6::Gui Qt6::Widgets Qt6::Xml doxygen_version pthread)
else()
- target_link_libraries(doxywizard ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY} doxygen_version)
+ target_link_libraries(doxywizard ${QT_LIBRARIES} ${QT_QTMAIN_LIBRARY} doxygen_version pthread)
endif()