+2008-10-28 Bruno Haible <bruno@clisp.org>
+
+ * msgmerge.c (match_domain): Remove space between '#' and 'pragma' for
+ OpenMP.
+ Reported by Lamarque Eric <eric.lamarque@free.fr>.
+
2008-10-04 Bruno Haible <bruno@clisp.org>
* plural-distrib.h (struct plural_distribution): New field 'histogram'.
/* Tell the OpenMP capable compiler to distribute this loop across
several threads. The schedule is dynamic, because for some messages
the loop body can be executed very quickly, whereas for others it takes
- a long time. */
+ a long time.
+ Note: The Sun Workshop 6.2 C compiler does not allow a space between
+ '#' and 'pragma'. */
#ifdef _OPENMP
- # pragma omp parallel for schedule(dynamic)
+ #pragma omp parallel for schedule(dynamic)
#endif
for (jj = 0; jj < nn; jj++)
{
if (!quiet && verbosity_level <= 1 && *processed % DOT_FREQUENCY == 0)
fputc ('.', stderr);
#ifdef _OPENMP
- # pragma omp atomic
+ #pragma omp atomic
#endif
(*processed)++;