111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/** @file
211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    Manually generated Python Configuration file for EDK II.
311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    Copyright (c) 2015, Daryl McDaniel. All rights reserved.<BR>
511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    Copyright (c) 2011 - 2012, Intel Corporation. All rights reserved.<BR>
611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    This program and the accompanying materials are licensed and made available under
711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    the terms and conditions of the BSD License that accompanies this distribution.
811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    The full text of the license may be found at
911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    http://opensource.org/licenses/bsd-license.
1011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
1111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
1211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert    WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
1311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert**/
1411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#ifndef Py_PYCONFIG_H
1511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define Py_PYCONFIG_H
1611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
1711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#include  <Uefi.h>
1811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
1911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define PLATFORM    "uefi"
2011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
2111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if building universal (internal helper macro) */
2211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef AC_APPLE_UNIVERSAL_BUILD
2311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
2411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define for AIX if your compiler is a genuine IBM xlC/xlC_r and you want
2511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   support for AIX C++ shared extension modules. */
2611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef AIX_GENUINE_CPLUSPLUS
2711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
2811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have AtheOS threads. */
2911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef ATHEOS_THREADS
3011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
3111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have BeOS threads. */
3211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef BEOS_THREADS
3311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
3411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the Mach cthreads package */
3511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef C_THREADS
3611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
3711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if C doubles are 64-bit IEEE 754 binary format, stored in ARM
3811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   mixed-endian order (byte order 45670123) */
3911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754
4011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
4111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the most
4211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   significant byte first */
4311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef DOUBLE_IS_BIG_ENDIAN_IEEE754
4411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
4511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if C doubles are 64-bit IEEE 754 binary format, stored with the
4611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   least significant byte first */
4711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define DOUBLE_IS_LITTLE_ENDIAN_IEEE754
4811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
4911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if --enable-ipv6 is specified */
5011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef ENABLE_IPV6
5111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
5211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if flock needs to be linked with bsd library. */
5311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef FLOCK_NEEDS_LIBBSD
5411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
5511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if getpgrp() must be called as getpgrp(0). */
5611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef GETPGRP_HAVE_ARG
5711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
5811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if gettimeofday() does not have second (timezone) argument This is
5911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   the case on Motorola V4 (R40V4.2) */
6011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef GETTIMEOFDAY_NO_TZ
6111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
6211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'acosh' function. */
6311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ACOSH
6411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
6511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* struct addrinfo (netdb.h) */
6611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ADDRINFO
6711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
6811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'alarm' function. */
6911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ALARM
7011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
7111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <alloca.h> header file. */
7211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ALLOCA_H
7311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
7411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if your time.h defines altzone. */
7511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ALTZONE
7611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
7711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'asinh' function. */
7811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ASINH
7911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
8011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <asm/types.h> header file. */
8111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ASM_TYPES_H
8211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
8311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'atanh' function. */
8411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ATANH
8511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
8611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3))) */
8711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ATTRIBUTE_FORMAT_PARSETUPLE
8811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
8911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'bind_textdomain_codeset' function. */
9011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BIND_TEXTDOMAIN_CODESET
9111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
9211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <bluetooth/bluetooth.h> header file. */
9311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BLUETOOTH_BLUETOOTH_H
9411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
9511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <bluetooth.h> header file. */
9611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BLUETOOTH_H
9711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
9811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if nice() returns success/failure instead of the new priority. */
9911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BROKEN_NICE
10011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
10111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if the system reports an invalid PIPE_BUF value. */
10211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BROKEN_PIPE_BUF
10311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
10411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if poll() sets errno on invalid file descriptors. */
10511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BROKEN_POLL
10611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
10711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if the Posix semaphores do not work on your system */
10811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_BROKEN_POSIX_SEMAPHORES  1
10911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
11011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if pthread_sigmask() does not work on your system. */
11111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_BROKEN_PTHREAD_SIGMASK   1
11211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
11311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* define to 1 if your sem_getvalue is broken. */
11411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_BROKEN_SEM_GETVALUE      1
11511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
11611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if 'unsetenv' does not return an int. */
11711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_BROKEN_UNSETENV
11811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
11911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have the type _Bool. */
12011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_C99_BOOL                 1
12111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
12211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'chflags' function. */
12311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CHFLAGS
12411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
12511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'chown' function. */
12611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CHOWN
12711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
12811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'chroot' function. */
12911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CHROOT
13011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
13111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'clock' function. */
13211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_CLOCK                    1
13311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
13411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'confstr' function. */
13511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CONFSTR
13611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
13711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <conio.h> header file. */
13811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CONIO_H
13911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
14011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'copysign' function. */
14111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_COPYSIGN
14211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
14311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'ctermid' function. */
14411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CTERMID
14511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
14611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'ctermid_r' function. */
14711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CTERMID_R
14811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
14911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <curses.h> header file. */
15011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CURSES_H
15111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
15211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'is_term_resized' function. */
15311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CURSES_IS_TERM_RESIZED
15411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
15511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'resizeterm' function. */
15611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CURSES_RESIZETERM
15711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
15811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'resize_term' function. */
15911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_CURSES_RESIZE_TERM
16011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
16111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the declaration of 'isfinite', and to 0 if you
16211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   don't. */
16311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DECL_ISFINITE    0
16411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
16511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the declaration of 'isinf', and to 0 if you don't.
16611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   */
16711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DECL_ISINF       1
16811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
16911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the declaration of 'isnan', and to 0 if you don't.
17011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   */
17111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DECL_ISNAN       1
17211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
17311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the declaration of 'tzname', and to 0 if you don't.
17411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   */
17511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DECL_TZNAME      0
17611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
17711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the device macros. */
17811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DEVICE_MACROS
17911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
18011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the /dev/ptc device file. */
18111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DEV_PTC
18211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
18311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the /dev/ptmx device file. */
18411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DEV_PTMX
18511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
18611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <direct.h> header file. */
18711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DIRECT_H
18811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
18911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <dirent.h> header file, and it defines 'DIR'.
19011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert   */
19111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DIRENT_H   1
19211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
19311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <dlfcn.h> header file. */
19411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DLFCN_H
19511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
19611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'dlopen' function. */
19711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DLOPEN
19811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
19911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'dup2' function. */
20011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_DUP2       1
20111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
20211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Defined when any dynamic module loading is enabled. */
20311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_DYNAMIC_LOADING
20411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
20511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'epoll' functions. */
20611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_EPOLL
20711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
20811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'erf' function. */
20911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ERF
21011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
21111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'erfc' function. */
21211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_ERFC
21311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
21411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <errno.h> header file. */
21511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_ERRNO_H    1
21611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
21711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'execv' function. */
21811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_EXECV
21911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
22011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'expm1' function. */
22111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_EXPM1
22211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
22311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'fchdir' function. */
22411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FCHDIR
22511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
22611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fchmod' function. */
22711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FCHMOD
22811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
22911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fchown' function. */
23011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FCHOWN
23111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
23211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <fcntl.h> header file. */
23311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_FCNTL_H    1
23411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
23511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'fdatasync' function. */
23611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FDATASYNC
23711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
23811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'finite' function. */
23911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_FINITE     1
24011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
24111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'flock' function. */
24211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FLOCK
24311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
24411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fork' function. */
24511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FORK
24611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
24711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'forkpty' function. */
24811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FORKPTY
24911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
25011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fpathconf' function. */
25111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FPATHCONF
25211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
25311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fseek64' function. */
25411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FSEEK64
25511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
25611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fseeko' function. */
25711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_FSEEKO     1
25811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
25911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'fstatvfs' function. */
26011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FSTATVFS
26111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
26211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'fsync' function. */
26311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FSYNC
26411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
26511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'ftell64' function. */
26611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FTELL64
26711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
26811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'ftello' function. */
26911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_FTELLO     1
27011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
27111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'ftime' function. */
27211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FTIME
27311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
27411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'ftruncate' function. */
27511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_FTRUNCATE
27611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
27711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'gai_strerror' function. */
27811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GAI_STRERROR
27911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
28011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'gamma' function. */
28111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GAMMA
28211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
28311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if we can use gcc inline assembler to get and set x87 control word
28411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert*/
28511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#if defined(__GNUC__)
28611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert  #define HAVE_GCC_ASM_FOR_X87  1
28711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#else
28811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert  #undef HAVE_GCC_ASM_FOR_X87
28911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#endif
29011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
29111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the getaddrinfo function. */
29211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert//#undef HAVE_GETADDRINFO
29311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_GETADDRINFO  1
29411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
29511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getcwd' function. */
29611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_GETCWD   1
29711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
29811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have flockfile(), getc_unlocked(), and funlockfile() */
29911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETC_UNLOCKED
30011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
30111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getentropy' function. */
30211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETENTROPY
30311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
30411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getgroups' function. */
30511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETGROUPS
30611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
30711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'gethostbyname' function. */
30811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert//#undef HAVE_GETHOSTBYNAME
30911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_GETHOSTBYNAME  1
31011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
31111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have some version of gethostbyname_r() */
31211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETHOSTBYNAME_R
31311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
31411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have the 3-arg version of gethostbyname_r(). */
31511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETHOSTBYNAME_R_3_ARG
31611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
31711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have the 5-arg version of gethostbyname_r(). */
31811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETHOSTBYNAME_R_5_ARG
31911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
32011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define this if you have the 6-arg version of gethostbyname_r(). */
32111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETHOSTBYNAME_R_6_ARG
32211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
32311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getitimer' function. */
32411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETITIMER
32511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
32611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getloadavg' function. */
32711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETLOADAVG
32811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
32911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getlogin' function. */
33011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETLOGIN
33111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
33211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getnameinfo' function. */
33311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert//#undef HAVE_GETNAMEINFO
33411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_GETNAMEINFO 1
33511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
33611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'getpagesize' function. */
33711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPAGESIZE
33811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
33911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpeername' function. */
34011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_GETPEERNAME  1
34111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
34211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpgid' function. */
34311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPGID
34411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
34511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpgrp' function. */
34611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPGRP
34711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
34811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpid' function. */
34911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPID
35011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
35111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpriority' function. */
35211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPRIORITY
35311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
35411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getpwent' function. */
35511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETPWENT
35611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
35711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getresgid' function. */
35811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETRESGID
35911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
36011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getresuid' function. */
36111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETRESUID
36211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
36311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getsid' function. */
36411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETSID
36511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
36611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getspent' function. */
36711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETSPENT
36811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
36911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getspnam' function. */
37011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETSPNAM
37111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
37211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'gettimeofday' function. */
37311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETTIMEOFDAY
37411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
37511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'getwd' function. */
37611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GETWD
37711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
37811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <grp.h> header file. */
37911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_GRP_H
38011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
38111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'hstrerror' function. */
38211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_HSTRERROR
38311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
38411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'hypot' function. */
38511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_HYPOT
38611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
38711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <ieeefp.h> header file. */
38811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_IEEEFP_H
38911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
39011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'inet_aton' function. */
39111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_INET_ATON    1
39211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
39311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'inet_pton' function. */
39411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_INET_PTON    1
39511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
39611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'initgroups' function. */
39711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_INITGROUPS
39811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
39911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if your compiler provides int32_t. */
40011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_INT32_T
40111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
40211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if your compiler provides int64_t. */
40311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_INT64_T
40411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
40511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <inttypes.h> header file. */
40611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#define HAVE_INTTYPES_H   1
40711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
40811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <io.h> header file. */
40911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_IO_H
41011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
41111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'kill' function. */
41211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_KILL
41311cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
41411cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the 'killpg' function. */
41511cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_KILLPG
41611cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
41711cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define if you have the 'kqueue' functions. */
41811cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_KQUEUE
41911cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
42011cd02dfb91661c65134cac258cf5924270e9d2Dan Albert/* Define to 1 if you have the <langinfo.h> header file. */
42111cd02dfb91661c65134cac258cf5924270e9d2Dan Albert#undef HAVE_LANGINFO_H   /* non-functional in EFI. */
42211cd02dfb91661c65134cac258cf5924270e9d2Dan Albert
423/* Defined to enable large file support when an off_t is bigger than a long
424   and long long is available and at least as big as an off_t. You may need to
425   add some flags for configuration and compilation to enable this mode. (For
426   Solaris and Linux, the necessary defines are already defined.) */
427#undef HAVE_LARGEFILE_SUPPORT
428
429/* Define to 1 if you have the 'lchflags' function. */
430#undef HAVE_LCHFLAGS
431
432/* Define to 1 if you have the 'lchmod' function. */
433#undef HAVE_LCHMOD
434
435/* Define to 1 if you have the 'lchown' function. */
436#undef HAVE_LCHOWN
437
438/* Define to 1 if you have the 'lgamma' function. */
439#undef HAVE_LGAMMA
440
441/* Define to 1 if you have the 'dl' library (-ldl). */
442#undef HAVE_LIBDL
443
444/* Define to 1 if you have the 'dld' library (-ldld). */
445#undef HAVE_LIBDLD
446
447/* Define to 1 if you have the 'ieee' library (-lieee). */
448#undef HAVE_LIBIEEE
449
450/* Define to 1 if you have the <libintl.h> header file. */
451#undef HAVE_LIBINTL_H
452
453/* Define if you have the readline library (-lreadline). */
454#undef HAVE_LIBREADLINE
455
456/* Define to 1 if you have the 'resolv' library (-lresolv). */
457#undef HAVE_LIBRESOLV
458
459/* Define to 1 if you have the <libutil.h> header file. */
460#undef HAVE_LIBUTIL_H
461
462/* Define if you have the 'link' function. */
463#undef HAVE_LINK
464
465/* Define to 1 if you have the <linux/netlink.h> header file. */
466#undef HAVE_LINUX_NETLINK_H
467
468/* Define to 1 if you have the <linux/tipc.h> header file. */
469#undef HAVE_LINUX_TIPC_H
470
471/* Define to 1 if you have the 'log1p' function. */
472#undef HAVE_LOG1P
473
474/* Define this if you have the type long double. */
475#undef HAVE_LONG_DOUBLE
476
477/* Define this if you have the type long long. */
478#define HAVE_LONG_LONG  1
479
480/* Define to 1 if you have the 'lstat' function. */
481#define HAVE_LSTAT      1
482
483/* Define this if you have the makedev macro. */
484#undef HAVE_MAKEDEV
485
486/* Define to 1 if you have the 'memmove' function. */
487#define HAVE_MEMMOVE    1
488
489/* Define to 1 if you have the <memory.h> header file. */
490#undef HAVE_MEMORY_H
491
492/* Define to 1 if you have the 'mkfifo' function. */
493#undef HAVE_MKFIFO
494
495/* Define to 1 if you have the 'mknod' function. */
496#undef HAVE_MKNOD
497
498/* Define to 1 if you have the 'mktime' function. */
499#define HAVE_MKTIME     1
500
501/* Define to 1 if you have the 'mmap' function. */
502#undef HAVE_MMAP
503
504/* Define to 1 if you have the 'mremap' function. */
505#undef HAVE_MREMAP
506
507/* Define to 1 if you have the <ncurses.h> header file. */
508#undef HAVE_NCURSES_H
509
510/* Define to 1 if you have the <ndir.h> header file, and it defines 'DIR'. */
511#undef HAVE_NDIR_H
512
513/* Define to 1 if you have the <netpacket/packet.h> header file. */
514#undef HAVE_NETPACKET_PACKET_H
515
516/* Define to 1 if you have the 'nice' function. */
517#undef HAVE_NICE
518
519/* Define to 1 if you have the 'openpty' function. */
520#undef HAVE_OPENPTY
521
522/* Define if compiling using MacOS X 10.5 SDK or later. */
523#undef HAVE_OSX105_SDK
524
525/* Define to 1 if you have the 'pathconf' function. */
526#undef HAVE_PATHCONF
527
528/* Define to 1 if you have the 'pause' function. */
529#undef HAVE_PAUSE
530
531/* Define to 1 if you have the 'plock' function. */
532#undef HAVE_PLOCK
533
534/* Define to 1 if you have the 'poll' function. */
535#define HAVE_POLL         1
536
537/* Define to 1 if you have the <poll.h> header file. */
538#undef HAVE_POLL_H
539
540/* Define to 1 if you have the <process.h> header file. */
541#undef HAVE_PROCESS_H
542
543/* Define if your compiler supports function prototype */
544#define HAVE_PROTOTYPES   1
545
546/* Define if you have GNU PTH threads. */
547#undef HAVE_PTH
548
549/* Define to 1 if you have the 'pthread_atfork' function. */
550#undef HAVE_PTHREAD_ATFORK
551
552/* Defined for Solaris 2.6 bug in pthread header. */
553#undef HAVE_PTHREAD_DESTRUCTOR
554
555/* Define to 1 if you have the <pthread.h> header file. */
556#undef HAVE_PTHREAD_H
557
558/* Define to 1 if you have the 'pthread_init' function. */
559#undef HAVE_PTHREAD_INIT
560
561/* Define to 1 if you have the 'pthread_sigmask' function. */
562#undef HAVE_PTHREAD_SIGMASK
563
564/* Define to 1 if you have the <pty.h> header file. */
565#undef HAVE_PTY_H
566
567/* Define to 1 if you have the 'putenv' function. */
568#undef HAVE_PUTENV
569
570/* Define if the libcrypto has RAND_egd */
571#undef HAVE_RAND_EGD
572
573/* Define to 1 if you have the 'readlink' function. */
574#undef HAVE_READLINK
575
576/* Define to 1 if you have the 'realpath' function. */
577#define HAVE_REALPATH   1
578
579/* Define if you have readline 2.1 */
580#undef HAVE_RL_CALLBACK
581
582/* Define if you can turn off readline's signal handling. */
583#undef HAVE_RL_CATCH_SIGNAL
584
585/* Define if you have readline 2.2 */
586#undef HAVE_RL_COMPLETION_APPEND_CHARACTER
587
588/* Define if you have readline 4.0 */
589#undef HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK
590
591/* Define if you have readline 4.2 */
592#undef HAVE_RL_COMPLETION_MATCHES
593
594/* Define if you have rl_completion_suppress_append */
595#undef HAVE_RL_COMPLETION_SUPPRESS_APPEND
596
597/* Define if you have readline 4.0 */
598#undef HAVE_RL_PRE_INPUT_HOOK
599
600/* Define to 1 if you have the 'round' function. */
601#undef HAVE_ROUND
602
603/* Define to 1 if you have the 'select' function. */
604#define HAVE_SELECT       1
605
606/* Define to 1 if you have the 'sem_getvalue' function. */
607#undef HAVE_SEM_GETVALUE
608
609/* Define to 1 if you have the 'sem_open' function. */
610#undef HAVE_SEM_OPEN
611
612/* Define to 1 if you have the 'sem_timedwait' function. */
613#undef HAVE_SEM_TIMEDWAIT
614
615/* Define to 1 if you have the 'sem_unlink' function. */
616#undef HAVE_SEM_UNLINK
617
618/* Define to 1 if you have the 'setegid' function. */
619#undef HAVE_SETEGID
620
621/* Define to 1 if you have the 'seteuid' function. */
622#undef HAVE_SETEUID
623
624/* Define to 1 if you have the 'setgid' function. */
625#undef HAVE_SETGID
626
627/* Define if you have the 'setgroups' function. */
628#undef HAVE_SETGROUPS
629
630/* Define to 1 if you have the 'setitimer' function. */
631#undef HAVE_SETITIMER
632
633/* Define to 1 if you have the 'setlocale' function. */
634#define HAVE_SETLOCALE    1
635
636/* Define to 1 if you have the 'setpgid' function. */
637#undef HAVE_SETPGID
638
639/* Define to 1 if you have the 'setpgrp' function. */
640#undef HAVE_SETPGRP
641
642/* Define to 1 if you have the 'setregid' function. */
643#undef HAVE_SETREGID
644
645/* Define to 1 if you have the 'setresgid' function. */
646#undef HAVE_SETRESGID
647
648/* Define to 1 if you have the 'setresuid' function. */
649#undef HAVE_SETRESUID
650
651/* Define to 1 if you have the 'setreuid' function. */
652#undef HAVE_SETREUID
653
654/* Define to 1 if you have the 'setsid' function. */
655#undef HAVE_SETSID
656
657/* Define to 1 if you have the 'setuid' function. */
658#undef HAVE_SETUID
659
660/* Define to 1 if you have the 'setvbuf' function. */
661#define HAVE_SETVBUF    1
662
663/* Define to 1 if you have the <shadow.h> header file. */
664#undef HAVE_SHADOW_H
665
666/* Define to 1 if you have the 'sigaction' function. */
667#undef HAVE_SIGACTION
668
669/* Define to 1 if you have the 'siginterrupt' function. */
670#undef HAVE_SIGINTERRUPT
671
672/* Define to 1 if you have the <signal.h> header file. */
673#define HAVE_SIGNAL_H   1
674
675/* Define to 1 if you have the 'sigrelse' function. */
676#undef HAVE_SIGRELSE
677
678/* Define to 1 if you have the 'snprintf' function. */
679#define HAVE_SNPRINTF   1
680
681/* Define if sockaddr has sa_len member */
682#undef HAVE_SOCKADDR_SA_LEN
683
684/* struct sockaddr_storage (sys/socket.h) */
685#undef HAVE_SOCKADDR_STORAGE
686
687/* Define if you have the 'socketpair' function. */
688#undef HAVE_SOCKETPAIR
689
690/* Define to 1 if you have the <spawn.h> header file. */
691#undef HAVE_SPAWN_H
692
693/* Define if your compiler provides ssize_t */
694#define HAVE_SSIZE_T    1
695
696/* Define to 1 if you have the 'statvfs' function. */
697#undef HAVE_STATVFS
698
699/* Define if you have struct stat.st_mtim.tv_nsec */
700#undef HAVE_STAT_TV_NSEC
701
702/* Define if you have struct stat.st_mtimensec */
703#undef HAVE_STAT_TV_NSEC2
704
705/* Define if your compiler supports variable length function prototypes (e.g.
706   void fprintf(FILE *, char *, ...);) *and* <stdarg.h> */
707#define HAVE_STDARG_PROTOTYPES          1
708
709/* Define to 1 if you have the <stdint.h> header file. */
710#define HAVE_STDINT_H   1
711
712/* Define to 1 if you have the <stdlib.h> header file. */
713#define HAVE_STDLIB_H   1
714
715/* Define to 1 if you have the 'strdup' function. */
716#define HAVE_STRDUP     1
717
718/* Define to 1 if you have the 'strftime' function. */
719#define HAVE_STRFTIME   1
720
721/* Define to 1 if you have the <strings.h> header file. */
722#undef HAVE_STRINGS_H
723
724/* Define to 1 if you have the <string.h> header file. */
725#define HAVE_STRING_H   1
726
727/* Define to 1 if you have the <stropts.h> header file. */
728#undef HAVE_STROPTS_H
729
730/* Define to 1 if 'st_birthtime' is a member of 'struct stat'. */
731#define HAVE_STRUCT_STAT_ST_BIRTHTIME   1
732
733/* Define to 1 if 'st_blksize' is a member of 'struct stat'. */
734#define HAVE_STRUCT_STAT_ST_BLKSIZE     1
735
736/* Define to 1 if 'st_blocks' is a member of 'struct stat'. */
737#undef HAVE_STRUCT_STAT_ST_BLOCKS
738
739/* Define to 1 if 'st_flags' is a member of 'struct stat'. */
740#undef HAVE_STRUCT_STAT_ST_FLAGS
741
742/* Define to 1 if 'st_gen' is a member of 'struct stat'. */
743#undef HAVE_STRUCT_STAT_ST_GEN
744
745/* Define to 1 if 'st_rdev' is a member of 'struct stat'. */
746#undef HAVE_STRUCT_STAT_ST_RDEV
747
748/* Define to 1 if 'st_dev' is a member of 'struct stat'. */
749#undef HAVE_STRUCT_STAT_ST_DEV
750
751/* Define to 1 if 'st_ino' is a member of 'struct stat'. */
752#undef HAVE_STRUCT_STAT_ST_INO
753
754/* Define to 1 if 'tm_zone' is a member of 'struct tm'. */
755#undef HAVE_STRUCT_TM_TM_ZONE
756
757/* Define to 1 if your 'struct stat' has 'st_blocks'. Deprecated, use
758   'HAVE_STRUCT_STAT_ST_BLOCKS' instead. */
759#undef HAVE_ST_BLOCKS
760
761/* Define if you have the 'symlink' function. */
762#undef HAVE_SYMLINK
763
764/* Define to 1 if you have the 'sysconf' function. */
765#undef HAVE_SYSCONF
766
767/* Define to 1 if you have the <sysexits.h> header file. */
768#undef HAVE_SYSEXITS_H
769
770/* Define to 1 if you have the <sys/audioio.h> header file. */
771#undef HAVE_SYS_AUDIOIO_H
772
773/* Define to 1 if you have the <sys/bsdtty.h> header file. */
774#undef HAVE_SYS_BSDTTY_H
775
776/* Define to 1 if you have the <sys/dir.h> header file, and it defines 'DIR'.
777   */
778#undef HAVE_SYS_DIR_H
779
780/* Define to 1 if you have the <sys/epoll.h> header file. */
781#undef HAVE_SYS_EPOLL_H
782
783/* Define to 1 if you have the <sys/event.h> header file. */
784#undef HAVE_SYS_EVENT_H
785
786/* Define to 1 if you have the <sys/file.h> header file. */
787#undef HAVE_SYS_FILE_H
788
789/* Define to 1 if you have the <sys/loadavg.h> header file. */
790#undef HAVE_SYS_LOADAVG_H
791
792/* Define to 1 if you have the <sys/lock.h> header file. */
793#undef HAVE_SYS_LOCK_H
794
795/* Define to 1 if you have the <sys/mkdev.h> header file. */
796#undef HAVE_SYS_MKDEV_H
797
798/* Define to 1 if you have the <sys/modem.h> header file. */
799#undef HAVE_SYS_MODEM_H
800
801/* Define to 1 if you have the <sys/ndir.h> header file, and it defines 'DIR'.
802   */
803#undef HAVE_SYS_NDIR_H
804
805/* Define to 1 if you have the <sys/param.h> header file. */
806#define HAVE_SYS_PARAM_H    1
807
808/* Define to 1 if you have the <sys/poll.h> header file. */
809#define HAVE_SYS_POLL_H                 1
810
811/* Define to 1 if you have the <sys/resource.h> header file. */
812#define HAVE_SYS_RESOURCE_H   1
813
814/* Define to 1 if you have the <sys/select.h> header file. */
815#define HAVE_SYS_SELECT_H               1
816
817/* Define to 1 if you have the <sys/socket.h> header file. */
818#define HAVE_SYS_SOCKET_H               1
819
820/* Define to 1 if you have the <sys/statvfs.h> header file. */
821#undef HAVE_SYS_STATVFS_H
822
823/* Define to 1 if you have the <sys/stat.h> header file. */
824#define HAVE_SYS_STAT_H   1
825
826/* Define to 1 if you have the <sys/termio.h> header file. */
827#undef HAVE_SYS_TERMIO_H
828
829/* Define to 1 if you have the <sys/times.h> header file. */
830#undef HAVE_SYS_TIMES_H
831
832/* Define to 1 if you have the <sys/time.h> header file. */
833#define HAVE_SYS_TIME_H     1
834
835/* Define to 1 if you have the <sys/types.h> header file. */
836#define HAVE_SYS_TYPES_H    1
837
838/* Define to 1 if you have the <sys/un.h> header file. */
839#undef HAVE_SYS_UN_H
840
841/* Define to 1 if you have the <sys/utsname.h> header file. */
842#undef HAVE_SYS_UTSNAME_H
843
844/* Define to 1 if you have the <sys/wait.h> header file. */
845#undef HAVE_SYS_WAIT_H
846
847/* Define to 1 if you have the system() command. */
848#define HAVE_SYSTEM       1
849
850/* Define to 1 if you have the 'tcgetpgrp' function. */
851#undef HAVE_TCGETPGRP
852
853/* Define to 1 if you have the 'tcsetpgrp' function. */
854#undef HAVE_TCSETPGRP
855
856/* Define to 1 if you have the 'tempnam' function. */
857#define HAVE_TEMPNAM      1
858
859/* Define to 1 if you have the <termios.h> header file. */
860#undef HAVE_TERMIOS_H
861
862/* Define to 1 if you have the <term.h> header file. */
863#undef HAVE_TERM_H
864
865/* Define to 1 if you have the 'tgamma' function. */
866#undef HAVE_TGAMMA
867
868/* Define to 1 if you have the <thread.h> header file. */
869#undef HAVE_THREAD_H
870
871/* Define to 1 if you have the 'timegm' function. */
872#undef HAVE_TIMEGM
873
874/* Define to 1 if you have the 'times' function. */
875#undef HAVE_TIMES
876
877/* Define to 1 if you have the 'tmpfile' function. */
878#define HAVE_TMPFILE    1
879
880/* Define to 1 if you have the 'tmpnam' function. */
881#define HAVE_TMPNAM     1
882
883/* Define to 1 if you have the 'tmpnam_r' function. */
884#undef HAVE_TMPNAM_R
885
886/* Define to 1 if your 'struct tm' has 'tm_zone'. Deprecated, use
887   'HAVE_STRUCT_TM_TM_ZONE' instead. */
888#undef HAVE_TM_ZONE
889
890/* Define to 1 if you have the 'truncate' function. */
891#undef HAVE_TRUNCATE
892
893/* Define to 1 if you don't have 'tm_zone' but do have the external array
894   'tzname'. */
895#undef HAVE_TZNAME
896
897/* Define this if you have tcl and TCL_UTF_MAX==6 */
898#undef HAVE_UCS4_TCL
899
900/* Define if your compiler provides uint32_t. */
901#undef HAVE_UINT32_T
902
903/* Define if your compiler provides uint64_t. */
904#undef HAVE_UINT64_T
905
906/* Define to 1 if the system has the type 'uintptr_t'. */
907#define HAVE_UINTPTR_T    1
908
909/* Define to 1 if you have the 'uname' function. */
910#undef HAVE_UNAME
911
912/* Define to 1 if you have the <unistd.h> header file. */
913#define HAVE_UNISTD_H                   1
914
915/* Define to 1 if you have the 'unsetenv' function. */
916#undef HAVE_UNSETENV
917
918/* Define if you have a useable wchar_t type defined in wchar.h; useable means
919   wchar_t must be an unsigned type with at least 16 bits. (see
920   Include/unicodeobject.h). */
921#define HAVE_USABLE_WCHAR_T             1
922
923/* Define to 1 if you have the <util.h> header file. */
924#undef HAVE_UTIL_H
925
926/* Define to 1 if you have the 'utimes' function. */
927#undef HAVE_UTIMES
928
929/* Define to 1 if you have the <utime.h> header file. */
930#define HAVE_UTIME_H    1
931
932/* Define to 1 if you have the 'wait3' function. */
933#undef HAVE_WAIT3
934
935/* Define to 1 if you have the 'wait4' function. */
936#undef HAVE_WAIT4
937
938/* Define to 1 if you have the 'waitpid' function. */
939#undef HAVE_WAITPID
940
941/* Define if the compiler provides a wchar.h header file. */
942#define HAVE_WCHAR_H    1
943
944/* Define to 1 if you have the 'wcscoll' function. */
945#define HAVE_WCSCOLL    1
946
947/* Define if tzset() actually switches the local timezone in a meaningful way.
948   */
949#undef HAVE_WORKING_TZSET
950
951/* Define if the zlib library has inflateCopy */
952#undef HAVE_ZLIB_COPY
953
954/* Define to 1 if you have the '_getpty' function. */
955#undef HAVE__GETPTY
956
957/* Define if you are using Mach cthreads directly under /include */
958#undef HURD_C_THREADS
959
960/* Define if you are using Mach cthreads under mach / */
961#undef MACH_C_THREADS
962
963/* Define to 1 if 'major', 'minor', and 'makedev' are declared in <mkdev.h>.
964   */
965#undef MAJOR_IN_MKDEV
966
967/* Define to 1 if 'major', 'minor', and 'makedev' are declared in
968   <sysmacros.h>. */
969#undef MAJOR_IN_SYSMACROS
970
971/* Define if mvwdelch in curses.h is an expression. */
972#undef MVWDELCH_IS_EXPRESSION
973
974/* Define to the address where bug reports for this package should be sent. */
975#define PACKAGE_BUGREPORT   "edk2-devel@lists.01.org"
976
977/* Define to the full name of this package. */
978#define PACKAGE_NAME    "EDK II Python 2.7.10 Package"
979
980/* Define to the full name and version of this package. */
981#define PACKAGE_STRING  "EDK II Python 2.7.10 Package V0.1"
982
983/* Define to the one symbol short name of this package. */
984#define PACKAGE_TARNAME   "EADK_Python"
985
986/* Define to the home page for this package. */
987#define PACKAGE_URL   "http://edk2.tianocore.org/"
988
989/* Define to the version of this package. */
990#define PACKAGE_VERSION  "V0.1"
991
992/* Define if POSIX semaphores aren't enabled on your system */
993#define POSIX_SEMAPHORES_NOT_ENABLED    1
994
995/* Defined if PTHREAD_SCOPE_SYSTEM supported. */
996#undef PTHREAD_SYSTEM_SCHED_SUPPORTED
997
998/* Define as the preferred size in bits of long digits */
999#undef PYLONG_BITS_IN_DIGIT
1000
1001/* Define to printf format modifier for long long type */
1002#define PY_FORMAT_LONG_LONG   "ll"
1003
1004/* Define to printf format modifier for Py_ssize_t */
1005#define PY_FORMAT_SIZE_T    "z"
1006
1007/* Define as the integral type used for Unicode representation. */
1008#define PY_UNICODE_TYPE     wchar_t
1009
1010/* Define if you want to build an interpreter with many run-time checks. */
1011#undef Py_DEBUG
1012
1013/* Defined if Python is built as a shared library. */
1014#undef Py_ENABLE_SHARED
1015
1016/* Define as the size of the unicode type. */
1017#define Py_UNICODE_SIZE   2
1018
1019/* Define if you want to have a Unicode type. */
1020#define Py_USING_UNICODE
1021
1022/* assume C89 semantics that RETSIGTYPE is always void */
1023#undef RETSIGTYPE
1024
1025/* Define if setpgrp() must be called as setpgrp(0, 0). */
1026#undef SETPGRP_HAVE_ARG
1027
1028/* Define this to be extension of shared libraries (including the dot!). */
1029#undef SHLIB_EXT
1030
1031/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
1032#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
1033
1034/* The size of 'double', as computed by sizeof. */
1035#define SIZEOF_DOUBLE     8
1036
1037/* The size of 'float', as computed by sizeof. */
1038#define SIZEOF_FLOAT      4
1039
1040/* The size of 'fpos_t', as computed by sizeof. */
1041#define SIZEOF_FPOS_T     8
1042
1043/* The size of 'int', as computed by sizeof. */
1044#define SIZEOF_INT        4
1045
1046/* The size of 'long', as computed by sizeof. */
1047#if defined(_MSC_VER)           /* Handle Microsoft VC++ compiler specifics. */
1048#define SIZEOF_LONG       4
1049#else
1050#define SIZEOF_LONG       8
1051#endif
1052
1053/* The size of 'long double', as computed by sizeof. */
1054#undef SIZEOF_LONG_DOUBLE
1055
1056/* The size of 'long long', as computed by sizeof. */
1057#define SIZEOF_LONG_LONG  8
1058
1059/* The size of 'off_t', as computed by sizeof. */
1060#define SIZEOF_OFF_T      8
1061
1062/* The size of 'pid_t', as computed by sizeof. */
1063#define SIZEOF_PID_T      4
1064
1065/* The size of 'pthread_t', as computed by sizeof. */
1066#undef SIZEOF_PTHREAD_T
1067
1068/* The size of 'short', as computed by sizeof. */
1069#define SIZEOF_SHORT      2
1070
1071/* The size of 'size_t', as computed by sizeof. */
1072#define SIZEOF_SIZE_T     8
1073
1074/* The size of 'time_t', as computed by sizeof. */
1075#define SIZEOF_TIME_T     4
1076
1077/* The size of 'uintptr_t', as computed by sizeof. */
1078#define SIZEOF_UINTPTR_T  8
1079
1080/* The size of 'void *', as computed by sizeof. */
1081#define SIZEOF_VOID_P     8
1082
1083/* The size of 'wchar_t', as computed by sizeof. */
1084#define SIZEOF_WCHAR_T    2
1085
1086/* The size of '_Bool', as computed by sizeof. */
1087#define SIZEOF__BOOL      1
1088
1089/* Define to 1 if you have the ANSI C header files. */
1090#define STDC_HEADERS    1
1091
1092/* Define if you can safely include both <sys/select.h> and <sys/time.h>
1093   (which you can't on SCO ODT 3.0). */
1094#undef SYS_SELECT_WITH_SYS_TIME
1095
1096/* Define if tanh(-0.) is -0., or if platform doesn't have signed zeros */
1097#undef TANH_PRESERVES_ZERO_SIGN
1098
1099/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
1100#undef TIME_WITH_SYS_TIME
1101
1102/* Define to 1 if your <sys/time.h> declares 'struct tm'. */
1103#undef TM_IN_SYS_TIME
1104
1105/* Enable extensions on AIX 3, Interix.  */
1106#ifndef _ALL_SOURCE
1107# undef _ALL_SOURCE
1108#endif
1109/* Enable GNU extensions on systems that have them.  */
1110#ifndef _GNU_SOURCE
1111# undef _GNU_SOURCE
1112#endif
1113/* Enable threading extensions on Solaris.  */
1114#ifndef _POSIX_PTHREAD_SEMANTICS
1115# undef _POSIX_PTHREAD_SEMANTICS
1116#endif
1117/* Enable extensions on HP NonStop.  */
1118#ifndef _TANDEM_SOURCE
1119# undef _TANDEM_SOURCE
1120#endif
1121/* Enable general extensions on Solaris.  */
1122#ifndef __EXTENSIONS__
1123# undef __EXTENSIONS__
1124#endif
1125
1126
1127/* Define if you want to use MacPython modules on MacOSX in unix-Python. */
1128#undef USE_TOOLBOX_OBJECT_GLUE
1129
1130/* Define if a va_list is an array of some kind */
1131#undef VA_LIST_IS_ARRAY
1132
1133/* Define if you want SIGFPE handled (see Include/pyfpe.h). */
1134#undef WANT_SIGFPE_HANDLER
1135
1136/* Define if you want wctype.h functions to be used instead of the one
1137   supplied by Python itself. (see Include/unicodectype.h). */
1138#define WANT_WCTYPE_FUNCTIONS   1
1139
1140/* Define if WINDOW in curses.h offers a field _flags. */
1141#undef WINDOW_HAS_FLAGS
1142
1143/* Define if you want documentation strings in extension modules */
1144#undef WITH_DOC_STRINGS
1145
1146/* Define if you want to use the new-style (Openstep, Rhapsody, MacOS) dynamic
1147   linker (dyld) instead of the old-style (NextStep) dynamic linker (rld).
1148   Dyld is necessary to support frameworks. */
1149#undef WITH_DYLD
1150
1151/* Define to 1 if libintl is needed for locale functions. */
1152#undef WITH_LIBINTL
1153
1154/* Define if you want to produce an OpenStep/Rhapsody framework (shared
1155   library plus accessory files). */
1156#undef WITH_NEXT_FRAMEWORK
1157
1158/* Define if you want to compile in Python-specific mallocs */
1159#undef WITH_PYMALLOC
1160
1161/* Define if you want to compile in rudimentary thread support */
1162#undef WITH_THREAD
1163
1164/* Define to profile with the Pentium timestamp counter */
1165#undef WITH_TSC
1166
1167/* Define if you want pymalloc to be disabled when running under valgrind */
1168#undef WITH_VALGRIND
1169
1170/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
1171   significant byte first (like Motorola and SPARC, unlike Intel). */
1172#if defined AC_APPLE_UNIVERSAL_BUILD
1173# if defined __BIG_ENDIAN__
1174#  define WORDS_BIGENDIAN 1
1175# endif
1176#else
1177# ifndef WORDS_BIGENDIAN
1178#  undef WORDS_BIGENDIAN
1179# endif
1180#endif
1181
1182/* Define if arithmetic is subject to x87-style double rounding issue */
1183#undef X87_DOUBLE_ROUNDING
1184
1185/* Define on OpenBSD to activate all library features */
1186#undef _BSD_SOURCE
1187
1188/* Define on Irix to enable u_int */
1189#undef _BSD_TYPES
1190
1191/* Define on Darwin to activate all library features */
1192#undef _DARWIN_C_SOURCE
1193
1194/* This must be set to 64 on some systems to enable large file support. */
1195#undef _FILE_OFFSET_BITS
1196
1197/* Define on Linux to activate all library features */
1198#undef _GNU_SOURCE
1199
1200/* This must be defined on some systems to enable large file support. */
1201#undef _LARGEFILE_SOURCE
1202
1203/* This must be defined on AIX systems to enable large file support. */
1204#undef _LARGE_FILES
1205
1206/* Define to 1 if on MINIX. */
1207#undef _MINIX
1208
1209/* Define on NetBSD to activate all library features */
1210  #define _NETBSD_SOURCE  1
1211
1212/* Define _OSF_SOURCE to get the makedev macro. */
1213#undef _OSF_SOURCE
1214
1215/* Define to 2 if the system does not provide POSIX.1 features except with
1216   this defined. */
1217#undef _POSIX_1_SOURCE
1218
1219/* Define to activate features from IEEE Stds 1003.1-2001 */
1220#undef _POSIX_C_SOURCE
1221
1222/* Define to 1 if you need to in order for 'stat' and other things to work. */
1223#undef _POSIX_SOURCE
1224
1225/* Define if you have POSIX threads, and your system does not define that. */
1226#undef _POSIX_THREADS
1227
1228/* Define to force use of thread-safe errno, h_errno, and other functions */
1229#undef _REENTRANT
1230
1231/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
1232   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
1233   #define below would cause a syntax error. */
1234#undef _UINT32_T
1235
1236/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
1237   <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
1238   #define below would cause a syntax error. */
1239#undef _UINT64_T
1240
1241/* Define to the level of X/Open that your system supports */
1242#undef _XOPEN_SOURCE
1243
1244/* Define to activate Unix95-and-earlier features */
1245#undef _XOPEN_SOURCE_EXTENDED
1246
1247/* Define on FreeBSD to activate all library features */
1248#undef __BSD_VISIBLE
1249
1250/* Define to 1 if type 'char' is unsigned and you are not using gcc.  */
1251#ifndef __CHAR_UNSIGNED__
1252# undef __CHAR_UNSIGNED__
1253#endif
1254
1255/* Defined on Solaris to see additional function prototypes. */
1256#undef __EXTENSIONS__
1257
1258/* Define to 'long' if <time.h> doesn't define. */
1259//#undef clock_t
1260
1261/* Define to empty if 'const' does not conform to ANSI C. */
1262//#undef const
1263
1264/* Define to 'int' if <sys/types.h> doesn't define. */
1265//#undef gid_t
1266
1267/* Define to the type of a signed integer type of width exactly 32 bits if
1268   such a type exists and the standard includes do not define it. */
1269//#undef int32_t
1270
1271/* Define to the type of a signed integer type of width exactly 64 bits if
1272   such a type exists and the standard includes do not define it. */
1273//#undef int64_t
1274
1275/* Define to 'int' if <sys/types.h> does not define. */
1276//#undef mode_t
1277
1278/* Define to 'long int' if <sys/types.h> does not define. */
1279//#undef off_t
1280
1281/* Define to 'int' if <sys/types.h> does not define. */
1282//#undef pid_t
1283
1284/* Define to empty if the keyword does not work. */
1285//#undef signed
1286
1287/* Define to 'unsigned int' if <sys/types.h> does not define. */
1288//#undef size_t
1289
1290/* Define to 'int' if <sys/socket.h> does not define. */
1291//#undef socklen_t
1292
1293/* Define to 'int' if <sys/types.h> doesn't define. */
1294//#undef uid_t
1295
1296/* Define to the type of an unsigned integer type of width exactly 32 bits if
1297   such a type exists and the standard includes do not define it. */
1298//#undef uint32_t
1299
1300/* Define to the type of an unsigned integer type of width exactly 64 bits if
1301   such a type exists and the standard includes do not define it. */
1302//#undef uint64_t
1303
1304/* Define to empty if the keyword does not work. */
1305//#undef volatile
1306
1307#endif /*Py_PYCONFIG_H*/
1308
1309