summaryrefslogtreecommitdiff
path: root/sci-astronomy/siril/files/siril-1.2-openmp.patch
blob: eba90448f422de9a17907fda5b7fd9cc88015879 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
From: Mario Haustein <mario.haustein@hrz.tu-chemnitz.de>
Date: Fri, 24 Mar 2023 18:24:26 +0100
Subject: [PATCH] Add ifdef around openmp function
Bug: https://bugs.gentoo.org/902833
Upstream: https://gitlab.com/free-astro/siril/-/merge_requests/482

--- a/src/algos/quantize.c
+++ b/src/algos/quantize.c
@@ -1396,8 +1396,10 @@ row of the image.
 #pragma omp parallel num_threads(threads) if (threads>1)
 #endif
 	{
+#ifdef _OPENMP
 		if (threads > 1 && omp_get_num_threads() != threads)
 			siril_debug_print("actual number of threads: %d of %d requested (level %d)\n", omp_get_num_threads(), threads, omp_get_level());
+#endif
 		float *rowpix, v1;
 		double mean, stdev;
 		float *differences;