summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Figuiere <hub@figuiere.net>2008-04-04 17:04:45 -0400
committerHubert Figuiere <hub@figuiere.net>2008-04-04 17:04:45 -0400
commitfcda0a58b192fec9d3941bc66f52c3c30a309952 (patch)
treec3dca2a25d8303a6370985509999d0ec57185725
parent9285ae76fb22a5e8cde6744cadbb65d53d3dda9a (diff)
* exempi/xmp.h: no stdbool.h on Sun compilers
(Closes #14612)
-rw-r--r--ChangeLog5
-rw-r--r--NEWS2
-rw-r--r--exempi/xmp.h3
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f9be6c..37e7d2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-04 Hubert Figuiere <hub@figuiere.net>
+
+ * exempi/xmp.h: no stdbool.h on Sun compilers
+ (Closes #14612)
+
=== 2.0.0 ===
2008-04-01 Hubert Figuiere <hub@figuiere.net>
diff --git a/NEWS b/NEWS
index 3fb7187..eac781c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
2.0.1
--
+- Bug #14612: no stdbool.h for Sun compilers.
2.0.0
diff --git a/exempi/xmp.h b/exempi/xmp.h
index fb7b38a..5ba5b6e 100644
--- a/exempi/xmp.h
+++ b/exempi/xmp.h
@@ -40,7 +40,10 @@
#define __EXEMPI_XMP_H_
#include <stdlib.h>
+/* stdbool choke on Sun (bug# 14612) */
+#if !defined(__sun)
#include <stdbool.h>
+#endif
#include <stdint.h>
#include <time.h>