| 6 | |
| 7 | * '''Configure is unable to find the symbol {{{glp_lpx_simplex}}} when checking for the presence of glpk.''' Glpk has changed its naming convention for API routines. This is normally invisible to users of glpk (who always use {{{lpx_simplex}}} in code). The current COIN configuration tests do not understand the trick used by glpk ({{{#defines}}} in the various {{{.h}}} files). The workaround is to use the configuration flag {{{--disable-glpk-libcheck}}}. If you have the ability to regenerate configuration files, add a leading underscore ('_') to the symbol in relevant {{{configure.ac}}} files. For example, |
| 8 | {{{ |
| 9 | AC_COIN_HAS_USER_LIBRARY([Glpk],[GLPK],[glpk.h],[glp_lpx_simplex]) |
| 10 | }}} |
| 11 | becomes |
| 12 | {{{ |
| 13 | AC_COIN_HAS_USER_LIBRARY([Glpk],[GLPK],[glpk.h],[_glp_lpx_simplex]) |
| 14 | }}} |