Skip to content
Snippets Groups Projects
Commit c0cb4d35 authored by Robert Lunnon's avatar Robert Lunnon Committed by Alexandre Julliard
Browse files

Implement futimes for Solaris using futimesat.

parent ee7f5eb9
No related branches found
No related tags found
No related merge requests found
......@@ -16382,6 +16382,7 @@ fi
 
 
 
 
 
for ac_func in \
......@@ -16405,6 +16406,7 @@ for ac_func in \
fstatvfs \
ftruncate \
futimes \
futimesat \
getnetbyname \
getopt_long \
getpagesize \
......
......@@ -1143,6 +1143,7 @@ AC_CHECK_FUNCS(\
fstatvfs \
ftruncate \
futimes \
futimesat \
getnetbyname \
getopt_long \
getpagesize \
......
......@@ -158,6 +158,9 @@
/* Define to 1 if you have the `futimes' function. */
#undef HAVE_FUTIMES
/* Define to 1 if you have the `futimesat' function. */
#undef HAVE_FUTIMESAT
/* Define to 1 if you have the `gethostbyname' function. */
#undef HAVE_GETHOSTBYNAME
......
......@@ -43,6 +43,8 @@ int futimes(int fd, const struct timeval tv[2])
return utime( buffer, &ut );
}
else return utime( buffer, NULL );
#elif defined(HAVE_FUTIMESAT)
return futimesat( fd, NULL, tv );
#else
errno = ENOSYS;
return -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment