Hi, I am trying to install mesos on my computer, but when I use the command make I get this output and it stops:
../../src/files/files.cpp:278: 56: error: no matching function for call to 'min(ssize_t&, long int)' ../../src/files/files.cpp:278:56: note: candidates are: /usr/include/c++/4.6/bits/stl_algobase.h:187:5: note: template<class _Tp> const _Tp& std::min(const _Tp&, const _Tp&) /usr/include/c++/4.6/bits/stl_algobase.h:233:5: note: template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare) make[2]: *** [files/libmesos_no_third_party_la-files.lo] Error 1 make[2]: Leaving directory `/home/sotiris/Desktop/spark-0.6.2/mesos/build/src' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/sotiris/Desktop/spark-0.6.2/mesos/build/src' make: *** [all-recursive] Error 1 What I have done so far: 1)I downloaded mesos with this command: git clone git://github.com/apache/mesos.git 2)Then I follow the steps of the readme file which is in the folder.I also use ./bootstrap before creating the directory build.After that,I run the command ../configure and it finishes without errors.However when I run make it stops with the above error.
