mirror of https://github.com/MidnightCommander/mc
* global.h: Fallback to sys/utime.h if utime.h is missing.
This commit is contained in:
parent
3a9692b680
commit
a504067e6c
|
@ -1,5 +1,7 @@
|
|||
2002-01-21 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* global.h: Fallback to sys/utime.h if utime.h is missing.
|
||||
|
||||
* global.h: Provide fallbacks for getuid(), getgid(), geteuid()
|
||||
and getegid().
|
||||
* fs.h: Fully trust HAVE_DIRENT_H.
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
|
||||
#ifdef HAVE_UTIME_H
|
||||
# include <utime.h>
|
||||
#elif HAVE_SYS_UTIME_H
|
||||
# include <sys/utime.h>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SYS_WAIT_H
|
||||
|
|
Loading…
Reference in New Issue