00001 /* $Id: CoinUtilsConfig.h 1215 2009-11-05 11:03:04Z forrest $ */ 00002 /* 00003 * Include file for the configuration of CoinUtils. 00004 * 00005 * On systems where the code is configured with the configure script 00006 * (i.e., compilation is always done with HAVE_CONFIG_H defined), this 00007 * header file includes the automatically generated header file, and 00008 * undefines macros that might configure with other Config.h files. 00009 * 00010 * On systems that are compiled in other ways (e.g., with the 00011 * Developer Studio), a header files is included to define those 00012 * macros that depend on the operating system and the compiler. The 00013 * macros that define the configuration of the particular user setting 00014 * (e.g., presence of other COIN packages or third party code) are set 00015 * here. The project maintainer needs to remember to update this file 00016 * and choose reasonable defines. A user can modify the default 00017 * setting by editing this file here. 00018 * 00019 */ 00020 00021 #ifndef __COINUTILSCONFIG_H__ 00022 #define __COINUTILSCONFIG_H__ 00023 00024 #ifdef HAVE_CONFIG_H 00025 #include "config_coinutils.h" 00026 00027 /* undefine macros that could conflict with those in other config.h 00028 files */ 00029 #undef PACKAGE 00030 #undef PACKAGE_BUGREPORT 00031 #undef PACKAGE_NAME 00032 #undef PACKAGE_STRING 00033 #undef PACKAGE_TARNAME 00034 #undef PACKAGE_VERSION 00035 #undef VERSION 00036 00037 #else /* HAVE_CONFIG_H */ 00038 00039 /* include the COIN-wide system specific configure header */ 00040 #include "configall_system.h" 00041 00042 /***************************************************************************/ 00043 /* HERE DEFINE THE CONFIGURATION SPECIFIC MACROS */ 00044 /* These are only in effect in a setting that doesn't use configure */ 00045 /***************************************************************************/ 00046 00047 /* Define to the debug sanity check level (0 is no test) */ 00048 #define COIN_COINUTILS_CHECKLEVEL 0 00049 00050 /* Define to the debug verbosity level (0 is no output) */ 00051 #define COIN_COINUTILS_VERBOSITY 0 00052 00053 /* Define to 1 if bzlib is available */ 00054 /* #define COIN_HAS_BZLIB */ 00055 00056 /* Define to 1 if the CoinUtils package is used */ 00057 #define COIN_HAS_COINUTILS 1 00058 00059 /* Define to 1 if zlib is available */ 00060 /* #define COIN_HAS_ZLIB */ 00061 00062 #endif /* HAVE_CONFIG_H */ 00063 00064 #endif /*__COINUTILSCONFIG_H__*/