Removed check of unused header files.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2012-01-02 10:41:37 +03:00 committed by Slava Zanko
parent e2b67a33ba
commit 1b4df2bdd2
2 changed files with 4 additions and 3 deletions

View File

@ -144,9 +144,8 @@ esac
AC_PROG_INSTALL AC_PROG_INSTALL
AC_CHECK_HEADERS([unistd.h string.h memory.h limits.h malloc.h \ AC_CHECK_HEADERS([unistd.h string.h memory.h limits.h malloc.h \
utime.h fcntl.h sys/statfs.h sys/vfs.h sys/time.h \ utime.h fcntl.h sys/statfs.h sys/vfs.h sys/time.h \
sys/timeb.h sys/select.h sys/ioctl.h stropts.h arpa/inet.h \ sys/select.h sys/ioctl.h stropts.h arpa/inet.h \
security/pam_misc.h sys/socket.h sys/sysmacros.h sys/types.h \ sys/socket.h sys/sysmacros.h sys/types.h sys/mkdev.h])
sys/mkdev.h wchar.h wctype.h])
AC_HEADER_TIME AC_HEADER_TIME
AC_HEADER_DIRENT AC_HEADER_DIRENT

View File

@ -10,7 +10,9 @@
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <dirent.h> #include <dirent.h>
#ifdef HAVE_UTIME_H
#include <utime.h> #include <utime.h>
#endif
#include <stdio.h> #include <stdio.h>
#include <fcntl.h> #include <fcntl.h>
#include <unistd.h> #include <unistd.h>