diff options
author | vimene <vincent.menegaux@gmail.com> | 2023-11-19 23:25:06 +0100 |
---|---|---|
committer | vimene <vincent.menegaux@gmail.com> | 2023-11-19 23:25:06 +0100 |
commit | c5697e42a76142c339806e1c0bc7ed15e3ace548 (patch) | |
tree | a8201bde9a3a1c4e6cf956348e5d3f7fc873221f /src/config.h.in | |
parent | 5b8a65b15a37d9c1c97fb39db93f1b40db628d70 (diff) | |
download | engine-c5697e42a76142c339806e1c0bc7ed15e3ace548.tar.gz |
started switching to autotools
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in new file mode 100644 index 0000000..4e60460 --- /dev/null +++ b/src/config.h.in @@ -0,0 +1,87 @@ +/* src/config.h.in. Generated from configure.ac by autoheader. */ + +/* Enable ncurses */ +#undef ENABLE_NCURSES + +/* Define to 1 if you have the `floor' function. */ +#undef HAVE_FLOOR + +/* Define to 1 if you have the <inttypes.h> header file. */ +#undef HAVE_INTTYPES_H + +/* Define to 1 if you have the `SDL2' library (-lSDL2). */ +#undef HAVE_LIBSDL2 + +/* Define to 1 if you have the `setlocale' function. */ +#undef HAVE_SETLOCALE + +/* Define to 1 if you have the <stdint.h> header file. */ +#undef HAVE_STDINT_H + +/* Define to 1 if you have the <stdio.h> header file. */ +#undef HAVE_STDIO_H + +/* Define to 1 if you have the <stdlib.h> header file. */ +#undef HAVE_STDLIB_H + +/* Define to 1 if you have the <strings.h> header file. */ +#undef HAVE_STRINGS_H + +/* Define to 1 if you have the <string.h> header file. */ +#undef HAVE_STRING_H + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#undef HAVE_SYS_STAT_H + +/* Define to 1 if you have the <sys/types.h> header file. */ +#undef HAVE_SYS_TYPES_H + +/* Define to 1 if you have the <unistd.h> header file. */ +#undef HAVE_UNISTD_H + +/* Name of package */ +#undef PACKAGE + +/* Define to the address where bug reports for this package should be sent. */ +#undef PACKAGE_BUGREPORT + +/* Define to the full name of this package. */ +#undef PACKAGE_NAME + +/* Define to the full name and version of this package. */ +#undef PACKAGE_STRING + +/* Define to the one symbol short name of this package. */ +#undef PACKAGE_TARNAME + +/* Define to the home page for this package. */ +#undef PACKAGE_URL + +/* Define to the version of this package. */ +#undef PACKAGE_VERSION + +/* Define to 1 if all of the C90 standard headers exist (not just the ones + required in a freestanding environment). This macro is provided for + backward compatibility; new code need not use it. */ +#undef STDC_HEADERS + +/* Version number of package */ +#undef VERSION + +/* Linux OS */ +#undef VIMENE_LINUX + +/* OS */ +#undef VIMENE_OS + +/* Windows OS */ +#undef VIMENE_WINDOWS + +/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>, + <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +#undef _UINT32_T + +/* Define to the type of an unsigned integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +#undef uint32_t |