00001 /* 00002 * Include file for the configuration of LaGO. 00003 * 00004 * On systems where the code is configured with the configure script 00005 * (i.e., compilation is always done with HAVE_CONFIG_H defined), this 00006 * header file includes the automatically generated header file, and 00007 * undefines macros that might configure with other Config.h files. 00008 * 00009 * On systems that are compiled in other ways (e.g., with the 00010 * Developer Studio), a header files is included to define those 00011 * macros that depend on the operating system and the compiler. The 00012 * macros that define the configuration of the particular user setting 00013 * (e.g., presence of other COIN packages or third party code) are set 00014 * here. The project maintainer needs to remember to update this file 00015 * and choose reasonable defines. A user can modify the default 00016 * setting by editing this file here. 00017 * 00018 */ 00019 00020 #ifndef __LAGOCONFIG_H__ 00021 #define __LAGOCONFIG_H__ 00022 00023 #ifdef HAVE_CONFIG_H 00024 #include "config_lago.h" 00025 00026 inline const char* LAGOVERSION() { return VERSION; } 00027 00028 /* undefine macros that could conflict with those in other config.h 00029 files */ 00030 #undef PACKAGE 00031 #undef PACKAGE_BUGREPORT 00032 #undef PACKAGE_NAME 00033 #undef PACKAGE_STRING 00034 #undef PACKAGE_TARNAME 00035 #undef PACKAGE_VERSION 00036 #undef VERSION 00037 00038 #else /* HAVE_CONFIG_H */ 00039 00040 /* include the COIN-wide system specific configure header */ 00041 #include "configall_system.h" 00042 00043 const char* LAGOVERSION="0.0"; 00044 00045 #endif /* HAVE_CONFIG_H */ 00046 00047 #endif /*__LAGOCONFIG_H__*/