forked from coin-or-tools/ThirdParty-Glpk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
40 lines (34 loc) · 1.23 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
* Include file for the configuration of GAMSlinks.
*
* On systems where the code is configured with the configure script
* (i.e., compilation is always done with HAVE_CONFIG_H defined), this
* header file includes the automatically generated header file, and
* undefines macros that might configure with other Config.h files.
*
* On systems that are compiled in other ways (e.g., with the
* Developer Studio), a header files is included to define those
* macros that depend on the operating system and the compiler. The
* macros that define the configuration of the particular user setting
* (e.g., presence of other COIN packages or third party code) are set
* here. The project maintainer needs to remember to update this file
* and choose reasonable defines. A user can modify the default
* setting by editing this file here.
*
*/
#ifndef __GLPK_CONFIG_H__
#define __GLPK_CONFIG_H__
#ifdef HAVE_CONFIG_H
#include "config_glpk.h"
/* undefine macros that could conflict with those in other config.h
files */
#undef PACKAGE
#undef PACKAGE_BUGREPORT
#undef PACKAGE_NAME
#undef PACKAGE_STRING
#undef PACKAGE_TARNAME
#undef PACKAGE_VERSION
#undef VERSION
#else /* HAVE_CONFIG_H */
#endif /* HAVE_CONFIG_H */
#endif /*GLPK_CONFIG_H_*/