forked from pool/doxygen
Accepting request 425143 from home:mathletic:branches:devel:tools
update to Doxygen 1.8.12 OBS-URL: https://build.opensuse.org/request/show/425143 OBS-URL: https://build.opensuse.org/package/show/devel:tools/doxygen?expand=0&rev=107
This commit is contained in:
@@ -4,19 +4,13 @@ Date: Wed, 07 Oct 2015 14:11:22 +0200
|
||||
|
||||
doxygen ppc64le ignore DOT NUM THREADS to 0 as a bypass to boo#921577
|
||||
|
||||
Signed-off-by: Michel Normand <normand@linux.vnet.ibm.com>
|
||||
---
|
||||
src/dot.cpp | 5 ++++-
|
||||
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||
|
||||
Index: doxygen-1.8.10/src/dot.cpp
|
||||
===================================================================
|
||||
--- doxygen-1.8.10.orig/src/dot.cpp
|
||||
+++ doxygen-1.8.10/src/dot.cpp
|
||||
@@ -1240,9 +1240,12 @@ DotManager::DotManager() : m_dotMaps(100
|
||||
--- doxygen-1.8.12/src/dot.cpp 2016-05-10 21:51:52.000000000 +0200
|
||||
+++ doxygen-1.8.12_new/src/dot.cpp 2016-09-06 19:42:27.244474872 +0200
|
||||
@@ -1192,9 +1192,12 @@
|
||||
m_queue = new DotRunnerQueue;
|
||||
int i;
|
||||
int numThreads = QMIN(32,Config_getInt("DOT_NUM_THREADS"));
|
||||
int numThreads = QMIN(32,Config_getInt(DOT_NUM_THREADS));
|
||||
+ if (numThreads==0) {
|
||||
+ numThreads = 1;
|
||||
+ msg("use single threaded despite DOT_NUM_THREADS=0 (bypass boo#921577)\n");
|
||||
@@ -27,4 +21,3 @@ Index: doxygen-1.8.10/src/dot.cpp
|
||||
for (i=0;i<numThreads;i++)
|
||||
{
|
||||
DotWorkerThread *thread = new DotWorkerThread(m_queue);
|
||||
|
||||
|
Reference in New Issue
Block a user