CoinUtilsConfig.h
Go to the documentation of this file.
1 /* $Id: CoinUtilsConfig.h 1215 2009-11-05 11:03:04Z forrest $ */
2 /*
3  * Include file for the configuration of CoinUtils.
4  *
5  * On systems where the code is configured with the configure script
6  * (i.e., compilation is always done with HAVE_CONFIG_H defined), this
7  * header file includes the automatically generated header file, and
8  * undefines macros that might configure with other Config.h files.
9  *
10  * On systems that are compiled in other ways (e.g., with the
11  * Developer Studio), a header files is included to define those
12  * macros that depend on the operating system and the compiler. The
13  * macros that define the configuration of the particular user setting
14  * (e.g., presence of other COIN packages or third party code) are set
15  * here. The project maintainer needs to remember to update this file
16  * and choose reasonable defines. A user can modify the default
17  * setting by editing this file here.
18  *
19  */
20 
21 #ifndef __COINUTILSCONFIG_H__
22 #define __COINUTILSCONFIG_H__
23 
24 #ifdef HAVE_CONFIG_H
25 #include "config_coinutils.h"
26 
27 /* undefine macros that could conflict with those in other config.h
28  files */
29 #undef PACKAGE
30 #undef PACKAGE_BUGREPORT
31 #undef PACKAGE_NAME
32 #undef PACKAGE_STRING
33 #undef PACKAGE_TARNAME
34 #undef PACKAGE_VERSION
35 #undef VERSION
36 
37 #else /* HAVE_CONFIG_H */
38 
39 /* include the COIN-wide system specific configure header */
40 #include "configall_system.h"
41 
42 /***************************************************************************/
43 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */
44 /* These are only in effect in a setting that doesn't use configure */
45 /***************************************************************************/
46 
47 /* Define to the debug sanity check level (0 is no test) */
48 #define COIN_COINUTILS_CHECKLEVEL 0
49 
50 /* Define to the debug verbosity level (0 is no output) */
51 #define COIN_COINUTILS_VERBOSITY 0
52 
53 /* Define to 1 if bzlib is available */
54 /* #define COIN_HAS_BZLIB */
55 
56 /* Define to 1 if the CoinUtils package is used */
57 #define COIN_HAS_COINUTILS 1
58 
59 /* Define to 1 if zlib is available */
60 /* #define COIN_HAS_ZLIB */
61 
62 #endif /* HAVE_CONFIG_H */
63 
64 #endif /*__COINUTILSCONFIG_H__*/