137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* include/llvm/Config/config.h.cmake corresponding to config.h.in. */
237b74a387bb3993387029859c2d9d051c41c724eStephen Hines//===- Config.h.in --------------------------------------------------------===//
337b74a387bb3993387029859c2d9d051c41c724eStephen Hines//
437b74a387bb3993387029859c2d9d051c41c724eStephen Hines//                     The MCLinker Project
537b74a387bb3993387029859c2d9d051c41c724eStephen Hines//
637b74a387bb3993387029859c2d9d051c41c724eStephen Hines// This file is distributed under the University of Illinois Open Source
737b74a387bb3993387029859c2d9d051c41c724eStephen Hines// License. See LICENSE.TXT for details.
837b74a387bb3993387029859c2d9d051c41c724eStephen Hines//
937b74a387bb3993387029859c2d9d051c41c724eStephen Hines//===----------------------------------------------------------------------===//
1037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#ifndef MCLD_CONFIG_CONFIG_H
1137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_CONFIG_CONFIG_H
1237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
1337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_REGION_CHUNK_SIZE 32
1437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_NUM_OF_INPUTS 32
1537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_SECTIONS_PER_INPUT 16
1637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_SYMBOLS_PER_INPUT 128
1737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_RELOCATIONS_PER_INPUT 1024
1837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
1937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define MCLD_SEGMENTS_PER_OUTPUT 8
2037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
2137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine MCLD_VERSION "${MCLD_VERSION}"
2237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
2337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Target triple LLVM will generate code for by default */
2437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine MCLD_DEFAULT_TARGET_TRIPLE "${MCLD_DEFAULT_TARGET_TRIPLE}"
2537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
2637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine MCLD_ON_UNIX "${MCLD_ON_UNIX}"
2737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
2837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine MCLD_ON_WIN32 "${MCLD_ON_WIN32}"
2937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
3037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
3137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `arc4random' function. */
3237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARC4RANDOM
3337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
3437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `argz_append' function. */
3537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_APPEND ${HAVE_ARGZ_APPEND}
3637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
3737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `argz_create_sep' function. */
3837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_CREATE_SEP ${HAVE_ARGZ_CREATE_SEP}
3937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
4037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <argz.h> header file. */
4137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_H ${HAVE_ARGZ_H}
4237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
4337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `argz_insert' function. */
4437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_INSERT ${HAVE_ARGZ_INSERT}
4537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
4637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `argz_next' function. */
4737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_NEXT ${HAVE_ARGZ_NEXT}
4837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
4937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `argz_stringify' function. */
5037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ARGZ_STRINGIFY ${HAVE_ARGZ_STRINGIFY}
5137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
5237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <assert.h> header file. */
5337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ASSERT_H ${HAVE_ASSERT_H}
5437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
5537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `backtrace' function. */
5637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_BACKTRACE ${HAVE_BACKTRACE}
5737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
5837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `bcopy' function. */
5937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_BCOPY
6037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
6137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `ceilf' function. */
6237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_CEILF ${HAVE_CEILF}
6337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
6437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the neat program is available */
6537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_CIRCO ${HAVE_CIRCO}
6637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
6737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `closedir' function. */
6837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_CLOSEDIR ${HAVE_CLOSEDIR}
6937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
7037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <CrashReporterClient.h> header file. */
7137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_CRASHREPORTERCLIENT_H
7237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
7337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* can use __crashreporter_info__ */
7437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_CRASHREPORTER_INFO
7537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
7637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <ctype.h> header file. */
7737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_CTYPE_H ${HAVE_CTYPE_H}
7837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
7937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the declaration of `strerror_s', and to 0 if you
8037b74a387bb3993387029859c2d9d051c41c724eStephen Hines   don't. */
8137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine01 HAVE_DECL_STRERROR_S
8237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
8337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR'.
8437b74a387bb3993387029859c2d9d051c41c724eStephen Hines   */
8537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DIRENT_H ${HAVE_DIRENT_H}
8637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
8737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you have the GNU dld library. */
8837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_DLD
8937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
9037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <dld.h> header file. */
9137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DLD_H ${HAVE_DLD_H}
9237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
9337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `dlerror' function. */
9437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DLERROR ${HAVE_DLERROR}
9537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
9637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <dlfcn.h> header file. */
9737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
9837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
9937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if dlopen() is available on this platform. */
10037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DLOPEN ${HAVE_DLOPEN}
10137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
10237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <dl.h> header file. */
10337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DL_H ${HAVE_DL_H}
10437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
10537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the dot program is available */
10637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DOT ${HAVE_DOT}
10737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
10837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the dotty program is available */
10937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_DOTTY ${HAVE_DOTTY}
11037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
11137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you have the _dyld_func_lookup function. */
11237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_DYLD
11337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
11437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <errno.h> header file. */
11537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ERRNO_H ${HAVE_ERRNO_H}
11637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
11737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if the system has the type `error_t'. */
11837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ERROR_T ${HAVE_ERROR_T}
11937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
12037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <execinfo.h> header file. */
12137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_EXECINFO_H ${HAVE_EXECINFO_H}
12237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
12337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <fcntl.h> header file. */
12437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FCNTL_H ${HAVE_FCNTL_H}
12537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
12637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the neat program is available */
12737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FDP ${HAVE_FDP}
12837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
12937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <fenv.h> header file. */
13037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FENV_H ${HAVE_FENV_H}
13137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
13237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if libffi is available on this platform. */
13337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FFI_CALL ${HAVE_FFI_CALL}
13437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
13537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <ffi/ffi.h> header file. */
13637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FFI_FFI_H ${HAVE_FFI_FFI_H}
13737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
13837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <ffi.h> header file. */
13937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FFI_H ${HAVE_FFI_H}
14037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
14137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the finite function is found in <ieeefp.h> */
14237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FINITE_IN_IEEEFP_H ${HAVE_FINITE_IN_IEEEFP_H}
14337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
14437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `floorf' function. */
14537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FLOORF ${HAVE_FLOORF}
14637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
14737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `log' function. */
14837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LOG ${HAVE_LOG}
14937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
15037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `log2' function. */
15137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LOG2 ${HAVE_LOG2}
15237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
15337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `log10' function. */
15437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LOG10 ${HAVE_LOG10}
15537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
15637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `exp' function. */
15737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_EXP ${HAVE_LOG}
15837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
15937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `exp2' function. */
16037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_EXP2 ${HAVE_LOG2}
16137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
16237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `exp10' function. */
16337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_EXP10 ${HAVE_LOG10}
16437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
16537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `fmodf' function. */
16637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_FMODF ${HAVE_FMODF}
16737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
16837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `getcwd' function. */
16937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GETCWD ${HAVE_GETCWD}
17037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
17137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `getpagesize' function. */
17237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GETPAGESIZE ${HAVE_GETPAGESIZE}
17337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
17437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `getrlimit' function. */
17537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GETRLIMIT ${HAVE_GETRLIMIT}
17637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
17737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `getrusage' function. */
17837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GETRUSAGE ${HAVE_GETRUSAGE}
17937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
18037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `gettimeofday' function. */
18137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GETTIMEOFDAY ${HAVE_GETTIMEOFDAY}
18237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
18337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the Graphviz program is available */
18437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GRAPHVIZ ${HAVE_GRAPHVIZ}
18537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
18637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the gv program is available */
18737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_GV ${HAVE_GV}
18837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
18937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `index' function. */
19037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_INDEX ${HAVE_INDEX}
19137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
19237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if the system has the type `int64_t'. */
19337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_INT64_T ${HAVE_INT64_T}
19437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
19537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <inttypes.h> header file. */
19637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_INTTYPES_H ${HAVE_INTTYPES_H}
19737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
19837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `isatty' function. */
19937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ISATTY 1
20037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
20137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the isinf function is found in <cmath> */
20237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ISINF_IN_CMATH ${HAVE_ISINF_IN_CMATH}
20337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
20437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the isinf function is found in <math.h> */
20537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ISINF_IN_MATH_H ${HAVE_ISINF_IN_MATH_H}
20637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
20737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the isnan function is found in <cmath> */
20837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ISNAN_IN_CMATH ${HAVE_ISNAN_IN_CMATH}
20937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
21037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the isnan function is found in <math.h> */
21137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ISNAN_IN_MATH_H ${HAVE_ISNAN_IN_MATH_H}
21237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
21337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you have the libdl library or equivalent. */
21437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LIBDL ${HAVE_LIBDL}
21537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
21637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `imagehlp' library (-limagehlp). */
21737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LIBIMAGEHLP ${HAVE_LIBIMAGEHLP}
21837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
21937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `m' library (-lm). */
22037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_LIBM
22137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
22237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `psapi' library (-lpsapi). */
22337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LIBPSAPI ${HAVE_LIBPSAPI}
22437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
22537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `pthread' library (-lpthread). */
22637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LIBPTHREAD ${HAVE_LIBPTHREAD}
22737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
22837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `udis86' library (-ludis86). */
22937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_LIBUDIS86
23037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
23137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <limits.h> header file. */
23237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LIMITS_H ${HAVE_LIMITS_H}
23337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
23437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you can use -Wl,-export-dynamic. */
23537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#define HAVE_LINK_EXPORT_DYNAMIC 1
23637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
23737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <link.h> header file. */
23837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LINK_H ${HAVE_LINK_H}
23937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
24037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you can use -Wl,-R. to pass -R. to the linker, in order to add
24137b74a387bb3993387029859c2d9d051c41c724eStephen Hines   the current directory to the dynamic linker search path. */
24237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_LINK_R
24337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
24437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `longjmp' function. */
24537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_LONGJMP ${HAVE_LONGJMP}
24637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
24737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <mach/mach.h> header file. */
24837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MACH_MACH_H ${HAVE_MACH_MACH_H}
24937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
25037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <mach-o/dyld.h> header file. */
25137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MACH_O_DYLD_H ${HAVE_MACH_O_DYLD_H}
25237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
25337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if mallinfo() is available on this platform. */
25437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MALLINFO ${HAVE_MALLINFO}
25537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
25637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <malloc.h> header file. */
25737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MALLOC_H ${HAVE_MALLOC_H}
25837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
25937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <malloc/malloc.h> header file. */
26037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MALLOC_MALLOC_H ${HAVE_MALLOC_MALLOC_H}
26137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
26237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `malloc_zone_statistics' function. */
26337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MALLOC_ZONE_STATISTICS ${HAVE_MALLOC_ZONE_STATISTICS}
26437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
26537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `memcpy' function. */
26637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MEMCPY ${HAVE_MEMCPY}
26737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
26837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `memmove' function. */
26937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MEMMOVE ${HAVE_MEMMOVE}
27037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
27137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <memory.h> header file. */
27237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MEMORY_H ${HAVE_MEMORY_H}
27337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
27437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `mkdtemp' function. */
27537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MKDTEMP ${HAVE_MKDTEMP}
27637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
27737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `mkstemp' function. */
27837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MKSTEMP ${HAVE_MKSTEMP}
27937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
28037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `mktemp' function. */
28137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_MKTEMP ${HAVE_MKTEMP}
28237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
28337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have a working `mmap' system call. */
28437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_MMAP
28537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
28637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if mmap() uses MAP_ANONYMOUS to map anonymous pages, or undefine if
28737b74a387bb3993387029859c2d9d051c41c724eStephen Hines   it uses MAP_ANON */
28837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_MMAP_ANONYMOUS
28937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
29037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if mmap() can map files into memory */
29137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_MMAP_FILE
29237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
29337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
29437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_NDIR_H ${HAVE_NDIR_H}
29537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
29637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `nearbyintf' function. */
29737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_NEARBYINTF ${HAVE_NEARBYINTF}
29837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
29937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the neat program is available */
30037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_NEATO ${HAVE_NEATO}
30137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
30237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `opendir' function. */
30337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_OPENDIR ${HAVE_OPENDIR}
30437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
30537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `posix_spawn' function. */
30637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_POSIX_SPAWN ${HAVE_POSIX_SPAWN}
30737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
30837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `powf' function. */
30937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_POWF ${HAVE_POWF}
31037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
31137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `pread' function. */
31237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_PREAD ${HAVE_PREAD}
31337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
31437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if libtool can extract symbol lists from object files. */
31537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_PRELOADED_SYMBOLS
31637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
31737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to have the %a format string */
31837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_PRINTF_A
31937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
32037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have pthread_getspecific */
32137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_PTHREAD_GETSPECIFIC ${HAVE_PTHREAD_GETSPECIFIC}
32237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
32337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <pthread.h> header file. */
32437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_PTHREAD_H ${HAVE_PTHREAD_H}
32537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
32637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have pthread_mutex_lock */
32737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_PTHREAD_MUTEX_LOCK ${HAVE_PTHREAD_MUTEX_LOCK}
32837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
32937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have pthread_rwlock_init */
33037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_PTHREAD_RWLOCK_INIT ${HAVE_PTHREAD_RWLOCK_INIT}
33137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
33237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if srand48/lrand48/drand48 exist in <stdlib.h> */
33337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_RAND48 ${HAVE_RAND48}
33437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
33537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `readdir' function. */
33637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_READDIR ${HAVE_READDIR}
33737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
33837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `realpath' function. */
33937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_REALPATH
34037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
34137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `rindex' function. */
34237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_RINDEX ${HAVE_RINDEX}
34337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
34437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `rintf' function. */
34537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_RINTF
34637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
34737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `round' function. */
34837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_ROUND ${HAVE_ROUND}
34937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
35037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `roundf' function. */
35137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_ROUNDF
35237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
35337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `sbrk' function. */
35437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SBRK ${HAVE_SBRK}
35537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
35637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `setenv' function. */
35737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SETENV ${HAVE_SETENV}
35837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
35937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `setjmp' function. */
36037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SETJMP ${HAVE_SETJMP}
36137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
36237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <setjmp.h> header file. */
36337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SETJMP_H ${HAVE_SETJMP_H}
36437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
36537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `setrlimit' function. */
36637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SETRLIMIT ${HAVE_SETRLIMIT}
36737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
36837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if you have the shl_load function. */
36937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_SHL_LOAD
37037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
37137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `siglongjmp' function. */
37237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SIGLONGJMP ${HAVE_SIGLONGJMP}
37337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
37437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <signal.h> header file. */
37537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SIGNAL_H ${HAVE_SIGNAL_H}
37637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
37737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `sigsetjmp' function. */
37837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SIGSETJMP ${HAVE_SIGSETJMP}
37937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
38037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <stdint.h> header file. */
38137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STDINT_H ${HAVE_STDINT_H}
38237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
38337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <stdio.h> header file. */
38437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STDIO_H ${HAVE_STDIO_H}
38537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
38637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <stdlib.h> header file. */
38737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STDLIB_H ${HAVE_STDLIB_H}
38837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
38937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the std::isinf function is found in <cmath> */
39037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_STD_ISINF_IN_CMATH
39137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
39237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Set to 1 if the std::isnan function is found in <cmath> */
39337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_STD_ISNAN_IN_CMATH
39437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
39537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strchr' function. */
39637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRCHR ${HAVE_STRCHR}
39737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
39837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strcmp' function. */
39937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRCMP ${HAVE_STRCMP}
40037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
40137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strdup' function. */
40237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRDUP ${HAVE_STRDUP}
40337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
40437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strerror' function. */
40537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRERROR ${HAVE_STRERROR}
40637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
40737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strerror_r' function. */
40837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRERROR_R ${HAVE_STRERROR_R}
40937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
41037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <strings.h> header file. */
41137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRINGS_H ${HAVE_STRINGS_H}
41237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
41337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <string.h> header file. */
41437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRING_H ${HAVE_STRING_H}
41537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
41637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strrchr' function. */
41737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRRCHR ${HAVE_STRRCHR}
41837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
41937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strtof' function. */
42037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRTOF ${HAVE_STRTOF}
42137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
42237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strtoll' function. */
42337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRTOLL ${HAVE_STRTOLL}
42437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
42537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `strtoq' function. */
42637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_STRTOQ ${HAVE_STRTOQ}
42737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
42837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `sysconf' function. */
42937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE_SYSCONF
43037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
43137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR'.
43237b74a387bb3993387029859c2d9d051c41c724eStephen Hines   */
43337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_DIR_H ${HAVE_SYS_DIR_H}
43437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
43537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/dl.h> header file. */
43637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_DL_H ${HAVE_SYS_DL_H}
43737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
43837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/ioctl.h> header file. */
43937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_IOCTL_H ${HAVE_SYS_IOCTL_H}
44037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
44137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/mman.h> header file. */
44237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_MMAN_H ${}
44337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
44437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR'.
44537b74a387bb3993387029859c2d9d051c41c724eStephen Hines   */
44637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_NDIR_H ${HAVE_SYS_NDIR_H}
44737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
44837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/param.h> header file. */
44937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_PARAM_H ${HAVE_SYS_PARAM_H}
45037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
45137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/resource.h> header file. */
45237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_RESOURCE_H ${HAVE_SYS_RESOURCE_H}
45337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
45437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/stat.h> header file. */
45537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_STAT_H ${HAVE_SYS_STAT_H}
45637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
45737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/time.h> header file. */
45837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_TIME_H ${HAVE_SYS_TIME_H}
45937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
46037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/types.h> header file. */
46137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_TYPES_H ${HAVE_SYS_TYPES_H}
46237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
46337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <sys/uio.h> header file. */
46437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_UIO_H ${HAVE_SYS_UIO_H}
46537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
46637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
46737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_SYS_WAIT_H ${HAVE_SYS_WAIT_H}
46837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
46937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <termios.h> header file. */
47037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_TERMIOS_H ${HAVE_TERMIOS_H}
47137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
47237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the neat program is available */
47337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_TWOPI ${HAVE_TWOPI}
47437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
47537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if the system has the type `uint64_t'. */
47637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_UINT64_T ${HAVE_UINT64_T}
47737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
47837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <unistd.h> header file. */
47937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_UNISTD_H ${HAVE_UNISTD_H}
48037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
48137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <utime.h> header file. */
48237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_UTIME_H ${HAVE_UTIME_H}
48337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
48437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if the system has the type `u_int64_t'. */
48537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_U_INT64_T ${HAVE_U_INT64_T}
48637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
48737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <valgrind/valgrind.h> header file. */
48837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_VALGRIND_VALGRIND_H ${HAVE_VALGRIND_VALGRIND_H}
48937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
49037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the <windows.h> header file. */
49137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_WINDOWS_H ${HAVE_WINDOWS_H}
49237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
49337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `writev' function. */
49437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_WRITEV ${HAVE_WRITEV}
49537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
49637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if the xdot.py program is available */
49737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE_XDOT_PY ${HAVE_XDOT_PY}
49837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
49937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's _alloca */
50037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE__ALLOCA ${HAVE__ALLOCA}
50137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
50237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __alloca */
50337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___ALLOCA ${HAVE___ALLOCA}
50437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
50537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __ashldi3 */
50637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___ASHLDI3 ${HAVE___ASHLDI3}
50737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
50837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __ashrdi3 */
50937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___ASHRDI3 ${HAVE___ASHRDI3}
51037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
51137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __chkstk */
51237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___CHKSTK ${HAVE___CHKSTK}
51337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
51437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __cmpdi2 */
51537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___CMPDI2 ${HAVE___CMPDI2}
51637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
51737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __divdi3 */
51837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___DIVDI3 ${HAVE___DIVDI3}
51937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
52037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `__dso_handle' function. */
52137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef HAVE___DSO_HANDLE
52237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
52337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __fixdfdi */
52437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___FIXDFDI ${HAVE___FIXDFDI}
52537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
52637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __fixsfdi */
52737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___FIXSFDI ${HAVE___FIXSFDI}
52837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
52937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __floatdidf */
53037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___FLOATDIDF ${HAVE___FLOATDIDF}
53137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
53237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __lshrdi3 */
53337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___LSHRDI3 ${HAVE___LSHRDI3}
53437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
53537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __main */
53637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___MAIN ${HAVE___MAIN}
53737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
53837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __moddi3 */
53937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___MODDI3 ${HAVE___MODDI3}
54037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
54137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __udivdi3 */
54237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___UDIVDI3 ${HAVE___UDIVDI3}
54337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
54437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's __umoddi3 */
54537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE___UMODDI3 ${HAVE___UMODDI3}
54637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
54737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Have host's ___chkstk */
54837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE____CHKSTK ${HAVE____CHKSTK}
54937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
55037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if /dev/zero should be used when mapping RWX memory, or undefine if
55137b74a387bb3993387029859c2d9d051c41c724eStephen Hines   its not necessary */
55237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef NEED_DEV_ZERO_FOR_MMAP
55337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
55437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if dlsym() requires a leading underscore in symbol names. */
55537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef NEED_USCORE
55637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
55737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to the address where bug reports for this package should be sent. */
55837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine PACKAGE_BUGREPORT "${PACKAGE_BUGREPORT}"
55937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
56037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to the full name of this package. */
56137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine PACKAGE_NAME "${PACKAGE_NAME}"
56237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
56337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to the full name and version of this package. */
56437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine PACKAGE_STRING "${PACKAGE_STRING}"
56537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
56637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to the one symbol short name of this package. */
56737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef PACKAGE_TARNAME
56837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
56937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to the version of this package. */
57037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine PACKAGE_VERSION "${PACKAGE_VERSION}"
57137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
57237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define as the return type of signal handlers (`int' or `void'). */
57337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine RETSIGTYPE ${RETSIGTYPE}
57437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
57537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if the `S_IS*' macros in <sys/stat.h> do not work properly. */
57637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef STAT_MACROS_BROKEN
57737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
57837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the ANSI C header files. */
57937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef STDC_HEADERS
58037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
58137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
58237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef TIME_WITH_SYS_TIME
58337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
58437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if your <sys/time.h> declares `struct tm'. */
58537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef TM_IN_SYS_TIME
58637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
58737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define if use udis86 library */
58837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef USE_UDIS86
58937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
59037b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Type of 1st arg on ELM Callback */
59137b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine WIN32_ELMCB_PCSTR ${WIN32_ELMCB_PCSTR}
59237b74a387bb3993387029859c2d9d051c41c724eStephen Hines
59337b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to empty if `const' does not conform to ANSI C. */
59437b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef const
59537b74a387bb3993387029859c2d9d051c41c724eStephen Hines
59637b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to a type to use for `error_t' if it is not otherwise available. */
59737b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine error_t ${error_t}
59837b74a387bb3993387029859c2d9d051c41c724eStephen Hines
59937b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to `int' if <sys/types.h> does not define. */
60037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef pid_t
60137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
60237b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to `unsigned int' if <sys/types.h> does not define. */
60337b74a387bb3993387029859c2d9d051c41c724eStephen Hines#undef size_t
60437b74a387bb3993387029859c2d9d051c41c724eStephen Hines
60537b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to a function replacing strtoll */
60637b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine strtoll ${strtoll}
60737b74a387bb3993387029859c2d9d051c41c724eStephen Hines
60837b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to a function implementing strtoull */
60937b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine strtoull ${strtoull}
61037b74a387bb3993387029859c2d9d051c41c724eStephen Hines
61137b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to a function implementing stricmp */
61237b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine stricmp ${stricmp}
61337b74a387bb3993387029859c2d9d051c41c724eStephen Hines
61437b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to a function implementing strdup */
61537b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine strdup ${strdup}
61637b74a387bb3993387029859c2d9d051c41c724eStephen Hines
61737b74a387bb3993387029859c2d9d051c41c724eStephen Hines/* Define to 1 if you have the `_chsize_s' function. */
61837b74a387bb3993387029859c2d9d051c41c724eStephen Hines#cmakedefine HAVE__CHSIZE_S ${HAVE__CHSIZE_S}
61937b74a387bb3993387029859c2d9d051c41c724eStephen Hines
62037b74a387bb3993387029859c2d9d051c41c724eStephen Hines#endif
62137b74a387bb3993387029859c2d9d051c41c724eStephen Hines
622