mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-31 20:19:34 -05:00
Update previous fix: utime() needs <sys/types.h> as well as <utime.h> on Linux
This commit is contained in:
parent
a6d9e7d933
commit
f020796f73
1 changed files with 4 additions and 1 deletions
|
|
@ -23,7 +23,10 @@
|
|||
#include <ac/errno.h>
|
||||
#include <sys/stat.h>
|
||||
#ifdef HAVE_UTIME_H
|
||||
#include <utime.h>
|
||||
# ifdef HAVE_SYS_TYPES_H
|
||||
# include <sys/types.h>
|
||||
# endif
|
||||
# include <utime.h>
|
||||
#endif /* HAVE_UTIME_H */
|
||||
#include "back-bdb.h"
|
||||
#include <lutil.h>
|
||||
|
|
|
|||
Loading…
Reference in a new issue