Changeset 511:8a144437db7d in lemon-main
- Timestamp:
- 04/27/09 21:02:37 (16 years ago)
- Branch:
- default
- Children:
- 512:32fb28fc9d42, 627:20dac2104519
- Phase:
- public
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
CMakeLists.txt
r510 r511 18 18 19 19 INCLUDE(CheckTypeSize) 20 CHECK_TYPE_SIZE("long long" L ONG_LONG)20 CHECK_TYPE_SIZE("long long" LEMON_LONG_LONG) 21 21 22 22 ENABLE_TESTING() -
configure.ac
r496 r511 28 28 AC_CHECK_TYPE(long long, [long_long_found=yes], [long_long_found=no]) 29 29 if test x"$long_long_found" = x"yes"; then 30 AC_DEFINE([ HAVE_LONG_LONG], [1], [Define to 1 if you have long long.])30 AC_DEFINE([LEMON_HAVE_LONG_LONG], [1], [Define to 1 if you have long long.]) 31 31 fi 32 32 -
lemon/bits/default_map.h
r502 r511 98 98 99 99 100 #if defined HAVE_LONG_LONG100 #if defined LEMON_HAVE_LONG_LONG 101 101 102 102 // long long -
lemon/config.h.cmake
r496 r511 1 #cmakedefine HAVE_LONG_LONG 11 #cmakedefine LEMON_HAVE_LONG_LONG 1 -
lemon/config.h.in
r496 r511 1 1 /* Define to 1 if you have CPLEX. */ 2 #undef HAVE_CPLEX2 #undef LEMON_HAVE_CPLEX 3 3 4 4 /* Define to 1 if you have GLPK. */ 5 #undef HAVE_GLPK5 #undef LEMON_HAVE_GLPK 6 6 7 7 /* Define to 1 if you have long long */ 8 #undef HAVE_LONG_LONG8 #undef LEMON_HAVE_LONG_LONG -
m4/lx_check_cplex.m4
r187 r511 62 62 63 63 if test x"$lx_cplex_found" = x"yes"; then 64 AC_DEFINE([ HAVE_CPLEX], [1], [Define to 1 if you have CPLEX.])64 AC_DEFINE([LEMON_HAVE_CPLEX], [1], [Define to 1 if you have CPLEX.]) 65 65 AC_MSG_RESULT([yes]) 66 66 else -
m4/lx_check_glpk.m4
r187 r511 60 60 61 61 if test x"$lx_glpk_found" = x"yes"; then 62 AC_DEFINE([ HAVE_GLPK], [1], [Define to 1 if you have GLPK.])62 AC_DEFINE([LEMON_HAVE_GLPK], [1], [Define to 1 if you have GLPK.]) 63 63 AC_MSG_RESULT([yes]) 64 64 else -
m4/lx_check_soplex.m4
r187 r511 56 56 57 57 if test x"$lx_soplex_found" = x"yes"; then 58 AC_DEFINE([ HAVE_SOPLEX], [1], [Define to 1 if you have SOPLEX.])58 AC_DEFINE([LEMON_HAVE_SOPLEX], [1], [Define to 1 if you have SOPLEX.]) 59 59 AC_MSG_RESULT([yes]) 60 60 else
Note: See TracChangeset
for help on using the changeset viewer.