COIN-OR::LEMON - Graph Library

Changeset 515:7992dcb0d0e6 in lemon for configure.ac


Ignore:
Timestamp:
02/20/09 19:06:10 (15 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Phase:
public
Message:

Add long long checking to build systems (#230)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.ac

    r503 r515  
    2424dnl Do compilation tests using the C++ compiler.
    2525AC_LANG([C++])
     26
     27dnl Check the existence of long long type.
     28AC_CHECK_TYPE(long long, [long_long_found=yes], [long_long_found=no])
     29if test x"$long_long_found" = x"yes"; then
     30  AC_DEFINE([HAVE_LONG_LONG], [1], [Define to 1 if you have long long.])
     31fi
    2632
    2733dnl Checks for programs.
     
    117123echo C++ compiles flags............ : $CXXFLAGS
    118124echo
     125echo Compiler supports long long... : $long_long_found
     126echo
    119127#echo GLPK support.................. : $lx_glpk_found
    120128#echo CPLEX support................. : $lx_cplex_found
Note: See TracChangeset for help on using the changeset viewer.