forked from aniani/vim
patch 8.1.2397: should not define __USE_XOPEN
Problem: Should not define __USE_XOPEN. _XOPEN_SOURCE is not needed for Android. Solution: Remove __USE_XOPEN and adjust #ifdefs. (Ozaki Kiichi, closes #5322)
This commit is contained in:
@@ -742,6 +742,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2397,
|
||||||
/**/
|
/**/
|
||||||
2396,
|
2396,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -36,7 +36,7 @@
|
|||||||
Error: configure did not run properly. Check auto/config.log.
|
Error: configure did not run properly. Check auto/config.log.
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if defined(__gnu_linux__) || defined(__CYGWIN__)
|
# if (defined(__linux__) && !defined(__ANDROID__)) || defined(__CYGWIN__)
|
||||||
// Needed for strptime(). Needs to be done early, since header files can
|
// Needed for strptime(). Needs to be done early, since header files can
|
||||||
// include other header files and end up including time.h, where these symbols
|
// include other header files and end up including time.h, where these symbols
|
||||||
// matter for Vim.
|
// matter for Vim.
|
||||||
@@ -44,9 +44,6 @@
|
|||||||
# ifndef _XOPEN_SOURCE
|
# ifndef _XOPEN_SOURCE
|
||||||
# define _XOPEN_SOURCE 700
|
# define _XOPEN_SOURCE 700
|
||||||
# endif
|
# endif
|
||||||
# ifndef __USE_XOPEN
|
|
||||||
# define __USE_XOPEN
|
|
||||||
# endif
|
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
// for INT_MAX, LONG_MAX et al.
|
// for INT_MAX, LONG_MAX et al.
|
||||||
|
Reference in New Issue
Block a user