Files
ports/math/wxmaxima/files/patch-src_Version.h.cin
T
Stefan Eßer 39ecea8364 Fix build
A C pre-processor conditional interpreted decimal numbers with a leading
zero as octal number, which was rejected since it included the digig 8.

Removal of the leading 0 from both condition arguments causes the correct
interpretation of these numbers as decimal values.
2020-09-30 12:24:12 +00:00

12 lines
348 B
Plaintext

--- src/Version.h.cin.orig 2020-04-18 07:14:02 UTC
+++ src/Version.h.cin
@@ -2,7 +2,7 @@
#ifndef GITVERSION
#define GITVERSION "@VERSION@"
#endif
-#if 0@OpenMP_CXX_SPEC_DATE@ > 0201510
+#if @OpenMP_CXX_SPEC_DATE@ > 201510
#define HAVE_OPENMP_TASKS 1
#define OPENMP_SPEC_DATE "@OpenMP_CXX_SPEC_DATE@"
#define HAVE_OMP_HEADER @HAVE_OMP_HEADER@