modified: SpatialOmicsCoord.py
[GalaxyCodeBases.git] / c_cpp / etc / mbuffer / config.h.in
blob53c8aab64e9dda4c1ee63e519eb112dfb1971a2b
1 /*
2 * Copyright (C) 2000-2009, Thomas Maier-Komor
4 * This is the source code of mbuffer.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef CONFIG_H
21 #define CONFIG_H
23 /* package */
24 #undef PACKAGE
26 /* version of mbuffer */
27 #undef PACKAGE_VERSION
29 /* Define if you want support for debugging messages. */
30 #undef DEBUG
32 /* Undefine if you want asserts enabled. */
33 #undef NDEBUG
35 /* md5hashing is enabled by default,
36 default is libmhash fallback is libmd5 */
37 #undef HAVE_LIBMHASH
38 #undef HAVE_LIBMD5
39 #undef HAVE_LIBCRYPTO
41 /* Define if you have a working `mmap' system call. */
42 #undef HAVE_MMAP
44 /* Define as the return type of signal handlers (int or void). */
45 #undef RETSIGTYPE
47 /* Needed for thread safe compilation */
48 #undef _REENTRANT
50 /* Define if you have the hstrerror function. */
51 #undef HAVE_HSTRERROR
53 /* Define if you have the getaddrinfo function. */
54 #undef HAVE_GETADDRINFO
56 /* Define to 1 if your `struct stat' has `st_blksize'. Deprecated, use
57 `HAVE_STRUCT_STAT_ST_BLKSIZE' instead. */
58 #undef HAVE_ST_BLKSIZE
60 /* Define if `st_blksize' is member of `struct stat'. */
61 #undef HAVE_STRUCT_STAT_ST_BLKSIZE
63 /* Define if you have libsendfile. */
64 #undef HAVE_SENDFILE
65 #undef HAVE_SENDFILE_H
67 /* seteuid ? */
68 #undef HAVE_SETEUID
70 /* atoll availble? */
71 #undef HAVE_ATOLL
73 /* alloca in alloca.h */
74 #undef HAVE_ALLOCA_H
76 /* largefile support */
77 #undef _LARGE_FILE
78 #undef _LARGEFILE_SOURCE
79 #undef _LARGEFILE64_SOURCE
80 #undef _FILE_OFFSET_BITS
82 #ifndef lint
83 #undef restrict
84 #undef inline
85 #endif
87 #endif