changeset 32182:c40f52d5d4c3

Add _XOPEN_SOURCE >= 500 #define to mkstemp check; mkstemp() requires it.
author diego
date Thu, 16 Sep 2010 14:38:03 +0000
parents 1d9847c0e86d
children 6f84ff0fa2d8
files configure
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/configure	Thu Sep 16 13:30:02 2010 +0000
+++ b/configure	Thu Sep 16 14:38:03 2010 +0000
@@ -3072,6 +3072,7 @@
 
 echocheck "mkstemp"
 cat > $TMPC << EOF
+#define _XOPEN_SOURCE >= 500
 #include <stdlib.h>
 int main(void) { char a;  mkstemp(&a); return 0; }
 EOF