Could you please add the following to sscmake.patch:
+++metis\GKlib\gk_arch.h
#ifdef __MSC__
#if _MSC_VER < 1800
/* MSC(prior to 2013) does not have rint() function */
#define rint(x) ((int)((x)+0.5))
/* MSC(prior to 2013) does not have INFINITY defined */
#ifndef INFINITY
#define INFINITY FLT_MAX
#endif
#endif
#endif
Could you please add the following to sscmake.patch:
+++metis\GKlib\gk_arch.h