Hi Eric,

Rainer Tammer's logs say:

  checking whether futimens works... no
  configure:30237: $? = 2
  configure: program exited with status 2

Exit code 2 from this test program comes from the line

  if (futimens (AT_FDCWD, NULL)) return 2;

What is this code trying to do? POSIX [1] says that

  "If utimensat() is passed the special value AT_FDCWD in the fd parameter,
   the current working directory shall be used."

It does *not* say that AT_FDCWD is a valid argument to futimens().

Bruno

[1] http://www.opengroup.org/onlinepubs/9699919799/functions/futimens.html

Reply via email to