Rewrite the hed_expr API
[hed.git] / config.h
blob5cb8ae533088d75a7713f1c747ee4e81ceac5c7d
1 /* The configuration header file */
2 /* $Id$ */
4 #ifndef HED__CONFIG_H
5 #define HED__CONFIG_H
7 /*
8 * 'Mercy!' cried Gandalf. 'If the giving of information is to be the cure of
9 * your inquisitiveness, I shall spend all the rest of my days in answering
10 * you. What more do you want to know?'
12 * 'The names of all the stars, and of all living things, and the whole history
13 * of Middle-earth and Over-heaven and of the Sundering Seas,' laughed Pippin.
16 #include <libhed/config.h>
18 /* Comment this out to remove color configuration */
19 #define CONFIG_CUSTOM_COLORS 1
21 /* Below, several macros are defined. Modify them according to your system. */
23 /* Comment out if your system does not have getopt_long(). */
24 #define HAVE_GETOPT_LONG
26 /* Comment out if your system does not have memrchr(). */
27 #define HAVE_MEMRCHR
29 /* The biggest integer type available on the system. */
30 #define BINT_TYPE long long
32 #ifdef HED_CONFIG_LFS
33 # define _FILE_OFFSET_BITS 64
34 #else
35 # define _FILE_OFFSET_BITS 32
36 #endif
38 #endif