Last change
on this file since 3340 was
1321,
checked in by stefan, 12 years ago
|
create config.h and config_glpk.h for glpk; check for additional libraries, especially for odbc and mysql drivers (for Osi ticket 72); store additional dependencies in glpk_addlibs.txt
|
File size:
1.2 KB
|
Line | |
---|
1 | /* |
---|
2 | * Include file for the configuration of GAMSlinks. |
---|
3 | * |
---|
4 | * On systems where the code is configured with the configure script |
---|
5 | * (i.e., compilation is always done with HAVE_CONFIG_H defined), this |
---|
6 | * header file includes the automatically generated header file, and |
---|
7 | * undefines macros that might configure with other Config.h files. |
---|
8 | * |
---|
9 | * On systems that are compiled in other ways (e.g., with the |
---|
10 | * Developer Studio), a header files is included to define those |
---|
11 | * macros that depend on the operating system and the compiler. The |
---|
12 | * macros that define the configuration of the particular user setting |
---|
13 | * (e.g., presence of other COIN packages or third party code) are set |
---|
14 | * here. The project maintainer needs to remember to update this file |
---|
15 | * and choose reasonable defines. A user can modify the default |
---|
16 | * setting by editing this file here. |
---|
17 | * |
---|
18 | */ |
---|
19 | |
---|
20 | #ifndef __GLPK_CONFIG_H__ |
---|
21 | #define __GLPK_CONFIG_H__ |
---|
22 | |
---|
23 | #ifdef HAVE_CONFIG_H |
---|
24 | #include "config_glpk.h" |
---|
25 | |
---|
26 | /* undefine macros that could conflict with those in other config.h |
---|
27 | files */ |
---|
28 | #undef PACKAGE |
---|
29 | #undef PACKAGE_BUGREPORT |
---|
30 | #undef PACKAGE_NAME |
---|
31 | #undef PACKAGE_STRING |
---|
32 | #undef PACKAGE_TARNAME |
---|
33 | #undef PACKAGE_VERSION |
---|
34 | #undef VERSION |
---|
35 | |
---|
36 | #else /* HAVE_CONFIG_H */ |
---|
37 | |
---|
38 | #endif /* HAVE_CONFIG_H */ |
---|
39 | |
---|
40 | #endif /*GLPK_CONFIG_H_*/ |
---|
Note: See
TracBrowser
for help on using the repository browser.