If the compiler does not have __has_include, pretend the answer is always no
@@ -11,6 +11,12 @@
# define volatile
#endif
+#if !defined(__has_include)
+/* If the compiler does not have __has_include, pretend the answer is
+ always no. */
+# define __has_include(x) 0
+#endif
+
@CMAKE_C_COMPILER_ID_CONTENT@
/* Construct the string literal in pieces to prevent the source from
@@ -5,6 +5,12 @@
# error "A C compiler has been selected for C++."
@CMAKE_CXX_COMPILER_ID_CONTENT@