ICU-5469 Fix last change for AIX.
X-SVN-Rev: 20588
This commit is contained in:
parent
dcbe7b34fc
commit
72605c7ddb
@ -47,6 +47,14 @@
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Make sure things like readlink and such functions work.
|
||||
Poorly upgraded Solaris machines can't have this defined.
|
||||
Cleanly installed Solaris can use this #define.
|
||||
*/
|
||||
#if !defined(_XOPEN_SOURCE_EXTENDED) && __STDC_VERSION__ >= 199901L
|
||||
#define _XOPEN_SOURCE_EXTENDED 1
|
||||
#endif
|
||||
|
||||
/* include ICU headers */
|
||||
#include "unicode/utypes.h"
|
||||
#include "unicode/putil.h"
|
||||
@ -59,14 +67,6 @@
|
||||
#include "locmap.h"
|
||||
#include "ucln_cmn.h"
|
||||
|
||||
/* Make sure things like readlink and such functions work.
|
||||
Poorly upgraded Solaris machines can't have this defined.
|
||||
Cleanly installed Solaris can use this #define.
|
||||
*/
|
||||
#if !defined(_XOPEN_SOURCE_EXTENDED) && !defined(U_SOLARIS)
|
||||
#define _XOPEN_SOURCE_EXTENDED 1
|
||||
#endif
|
||||
|
||||
/* Include standard headers. */
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
Loading…
Reference in New Issue
Block a user