COIN-OR::LEMON - Graph Library

Changeset 540:8a144437db7d in lemon


Ignore:
Timestamp:
04/27/09 21:02:37 (15 years ago)
Author:
Akos Ladanyi <ladanyi@…>
Branch:
default
Children:
541:4b558ee0d4f5, 543:32fb28fc9d42, 674:20dac2104519
Phase:
public
Message:

Prefix macro names with LEMON_ in lemon/config.h (#275)

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • CMakeLists.txt

    r539 r540  
    1818
    1919INCLUDE(CheckTypeSize)
    20 CHECK_TYPE_SIZE("long long" LONG_LONG)
     20CHECK_TYPE_SIZE("long long" LEMON_LONG_LONG)
    2121
    2222ENABLE_TESTING()
  • configure.ac

    r515 r540  
    2828AC_CHECK_TYPE(long long, [long_long_found=yes], [long_long_found=no])
    2929if 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.])
    3131fi
    3232
  • lemon/bits/default_map.h

    r523 r540  
    9898
    9999
    100 #if defined HAVE_LONG_LONG
     100#if defined LEMON_HAVE_LONG_LONG
    101101
    102102  // long long
  • lemon/config.h.cmake

    r515 r540  
    1 #cmakedefine HAVE_LONG_LONG 1
     1#cmakedefine LEMON_HAVE_LONG_LONG 1
  • lemon/config.h.in

    r515 r540  
    11/* Define to 1 if you have CPLEX. */
    2 #undef HAVE_CPLEX
     2#undef LEMON_HAVE_CPLEX
    33
    44/* Define to 1 if you have GLPK. */
    5 #undef HAVE_GLPK
     5#undef LEMON_HAVE_GLPK
    66
    77/* Define to 1 if you have long long */
    8 #undef HAVE_LONG_LONG
     8#undef LEMON_HAVE_LONG_LONG
  • m4/lx_check_cplex.m4

    r187 r540  
    6262
    6363    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.])
    6565      AC_MSG_RESULT([yes])
    6666    else
  • m4/lx_check_glpk.m4

    r187 r540  
    6060
    6161    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.])
    6363      AC_MSG_RESULT([yes])
    6464    else
  • m4/lx_check_soplex.m4

    r187 r540  
    5656
    5757    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.])
    5959      AC_MSG_RESULT([yes])
    6060    else
Note: See TracChangeset for help on using the changeset viewer.