<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">No need to define bool any more - both C and C++ have it.

--- gnuplot-6.0.3/src/syscfg.h	2025-05-12 01:44:55.000000000 +0100
+++ gnuplot-6.0.3/src/syscfg.h	2025-06-04 16:33:54.987873994 +0100
@@ -375,27 +375,6 @@
 # endif
 #endif
 
-#if HAVE_STDBOOL_H
-# include &lt;stdbool.h&gt;
-#else
-# if ! HAVE__BOOL
-#  ifdef __cplusplus
-typedef bool _Bool;
-#  else
-typedef unsigned char _Bool;
-#  endif
-# endif
-# define bool _Bool
-# define false 0
-# define true 1
-# define __bool_true_false_are_defined 1
-#endif
-
-/* May or may not fix a problem reported for Sun Studio compilers */
-#if defined(__SUNPRO_CC) &amp;&amp; !defined __cplusplus &amp;&amp; !defined(bool)
-#define bool unsigned char
-#endif
-
 #undef TRUE
 #define TRUE true
 #undef FALSE
</pre></body></html>