1#ifndef AUTO_CONFIG_H
2#define AUTO_CONFIG_H
3
4#define DEBUG
5
6#define SIZEOF_INT 4
7#define SIZEOF_LONG 8
8
9#if 8 == 8
10#define ARCH_64
11#elif 8 == 4
12#define ARCH_32
13#endif
14
15#define PROJECT_NAME "nvim"
16
17/* #undef HAVE__NSGETENVIRON */
18#define HAVE_FD_CLOEXEC
19#define HAVE_FSEEKO
20#define HAVE_GETPWENT
21#define HAVE_GETPWNAM
22#define HAVE_GETPWUID
23#define HAVE_ICONV
24#define HAVE_LANGINFO_H
25#define HAVE_LOCALE_H
26#define HAVE_NL_LANGINFO_CODESET
27#define HAVE_NL_MSG_CAT_CNTR
28#define HAVE_PWD_H
29#define HAVE_READLINK
30#define HAVE_SETPGID
31#define HAVE_SETSID
32#define HAVE_SIGACTION
33#define HAVE_STRCASECMP
34#define HAVE_STRINGS_H
35#define HAVE_STRNCASECMP
36#define HAVE_SYS_UTSNAME_H
37#define HAVE_SYS_WAIT_H
38#define HAVE_TERMIOS_H
39#define HAVE_WORKING_LIBINTL
40/* #undef HAVE_WSL */
41#define UNIX
42/* #undef USE_FNAME_CASE */
43#define HAVE_SYS_UIO_H
44#ifdef HAVE_SYS_UIO_H
45#define HAVE_READV
46# ifndef HAVE_READV
47# undef HAVE_SYS_UIO_H
48# endif
49#endif
50
51#define FEAT_TUI
52
53#ifndef UNIT_TESTING
54/* #undef LOG_LIST_ACTIONS */
55#endif
56
57#define HAVE_BE64TOH
58/* #undef ORDER_BIG_ENDIAN */
59#define ENDIAN_INCLUDE_FILE <endian.h>
60
61#define HAVE_EXECINFO_BACKTRACE
62#define HAVE_BUILTIN_ADD_OVERFLOW
63
64#endif // AUTO_CONFIG_H
65