[Bug 553] configure fails to acknowledge availability of utimes()

bugzilla-daemon at mindrot.org bugzilla-daemon at mindrot.org
Sat May 3 10:11:41 EST 2003


http://bugzilla.mindrot.org/show_bug.cgi?id=553

dtucker at zip.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED



------- Additional Comments From dtucker at zip.com.au  2003-05-03 10:11 -------
The test (trimmed) fragments from configure:

3.6.1p1 (autoconf 2.53):
char utimes ();
char (*f) ();

int
main ()
{
#if defined (__stub_utimes) || defined (__stub___utimes)
choke me
#else
f = utimes;
#endif
  return 0;
}

3.6.1p2 (autoconf 2.57):
char utimes ();
#if defined (__stub_utimes) || defined (__stub___utimes)
choke me
#else
char (*f) () = utimes;
#endif

int
main ()
{
return f != utimes;
  return 0;
}

I'll upgrade autoconf on my HP (11.00) and see if I can reproduce the problem.

On a slightly related note, do we need to check for utimes() twice?  There's a 
specific check for it, then it's also in the main AC_CHECK_FUNCS list.



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.




More information about the openssh-unix-dev mailing list