--- embedaddon/sudo/compat/utimes.c 2012/02/21 16:23:02 1.1.1.1 +++ embedaddon/sudo/compat/utimes.c 2013/07/22 10:46:11 1.1.1.2 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2004-2005, 2007, 2010-2011 + * Copyright (c) 2004-2005, 2007, 2010-2011, 2013 * Todd C. Miller * * Permission to use, copy, modify, and distribute this software for any @@ -17,6 +17,8 @@ #include +#if !defined(HAVE_UTIMES) || (!defined(HAVE_FUTIMES) && !defined(HAVE_FUTIMESAT)) + #include #include #include @@ -67,3 +69,5 @@ futimes(int fd, const struct timeval *times) return futime(fd, NULL); } #endif /* HAVE_FUTIME */ + +#endif /* !HAVE_UTIMES || (!HAVE_FUTIMES && !HAVE_FUTIMESAT) */