COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r555 r564  
    2222dnl Do compilation tests using the C++ compiler.
    2323AC_LANG([C++])
     24
     25dnl Check the existence of long long type.
     26AC_CHECK_TYPE(long long, [long_long_found=yes], [long_long_found=no])
     27if test x"$long_long_found" = x"yes"; then
     28  AC_DEFINE([HAVE_LONG_LONG], [1], [Define to 1 if you have long long.])
     29fi
    2430
    2531dnl Checks for programs.
     
    120126echo C++ compiles flags............ : $WARNINGCXXFLAGS $CXXFLAGS
    121127echo
     128echo Compiler supports long long... : $long_long_found
     129echo
    122130echo GLPK support.................. : $lx_glpk_found
    123131echo CPLEX support................. : $lx_cplex_found
Note: See TracChangeset for help on using the changeset viewer.