--- elfutils-0.166.orig/src/ar.c +++ elfutils-0.166/src/ar.c @@ -44,6 +44,11 @@ #include "arlib.h" +#ifdef HAVE_FUTIMES +# define FUTIMES(fd, fname, tvp) futimes (fd, tvp) +#else +# define FUTIMES(fd, fname, tvp) utimes (fname, tvp) +#endif /* Name and version of program. */ static void print_version (FILE *stream, struct argp_state *state);