bes Updated for version 3.21.1
The Backend Server (BES) is the lower two tiers of the Hyrax data server
ncconfig.h
1#ifndef _NCCONFIG_H_
2#define _NCCONFIG_H_
3
4/* Define if you're on an HP-UX system. */
5/* #undef _HPUX_SOURCE */
6
7/* Define if type char is unsigned and you are not using gcc. */
8#ifndef __CHAR_UNSIGNED__
9/* #undef __CHAR_UNSIGNED__ */
10#endif
11
12/* Define if your struct stat has st_blksize. */
13/* #undef HAVE_ST_BLKSIZE */
14
15/* Define to `long' if <sys/types.h> doesn't define. */
16/* #undef off_t */
17
18/* Define to `unsigned' if <sys/types.h> doesn't define. */
19/* #undef size_t */
20
21/* Define if you have the ANSI C header files. */
22#define STDC_HEADERS 1
23
24/* Define if your processor stores words with the most significant
25 byte first (like Motorola and SPARC, unlike Intel and VAX). */
26/* #undef WORDS_BIGENDIAN */
27
28/* Define if you don't have the <stdlib.h>. */
29/* #undef NO_STDLIB_H */
30
31/* Define if you don't have the <sys/types.h>. */
32/* #undef NO_SYS_TYPES_H */
33
34/* Define if you have the ftruncate function */
35/* #undef HAVE_FTRUNCATE */
36
37/* Define if you have alloca, as a function or macro. */
38/* #undef HAVE_ALLOCA */
39
40/* Define if you have <alloca.h> and it should be used (not on Ultrix). */
41/* #undef HAVE_ALLOCA_H */
42
43/* Define if you don't have the strerror function */
44/* #undef NO_STRERROR */
45
46/* The number of bytes in a size_t */
47#define SIZEOF_SIZE_T 4
48
49/* The number of bytes in a off_t */
50#define SIZEOF_OFF_T 4
51
52/* Define to `int' if system doesn't define. */
53#define ssize_t int
54
55/* Define to `int' if system doesn't define. */
56/* #undef ptrdiff_t */
57
58/* Define to `unsigned char' if system doesn't define. */
59#define uchar unsigned char
60
61/* Define if the system does not use IEEE floating point representation */
62/* #undef NO_IEEE_FLOAT */
63
64/* The number of bytes in a double. */
65#define SIZEOF_DOUBLE 8
66
67/* The number of bytes in a float. */
68#define SIZEOF_FLOAT 4
69
70/* The number of bytes in a int. */
71#define SIZEOF_INT 4
72
73/* The number of bytes in a long. */
74#define SIZEOF_LONG 4
75
76/* The number of bytes in a short. */
77/* #undef SIZEOF_SHORT */
78
79#endif /* !_NCCONFIG_H_ */