AC_DEFUN(COMPARE_PARAMETER_ORDER,[ AC_MSG_CHECKING(compare parameter order) AC_TRY_COMPILE([ #include ], [ using namespace std; string test; test.compare(0, 1, ""); ], [ AC_MSG_RESULT([pos, size, string]) ],[ AC_DEFINE(COMPARE_ARGS_SWAPPED, 1, [Define if you have compare args swapped]) AC_MSG_RESULT([string, pos, size]) ]) ])