libport: Use configure guards for include files that may not be present.
This commit is contained in:
parent
fc82d8c221
commit
1279cf3597
|
@ -24,8 +24,12 @@
|
|||
#ifndef HAVE_FUTIMES
|
||||
|
||||
#include <sys/types.h>
|
||||
#ifdef HAVE_SYS_TIME_H
|
||||
# include <sys/time.h>
|
||||
#endif
|
||||
#ifdef HAVE_UTIME_H
|
||||
# include <utime.h>
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue