diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-09-18 19:00:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-09-18 19:00:32 +0000 |
commit | 9e6d7fe216efcc7c3a50c1a29270faa6b2ecb881 (patch) | |
tree | 107c658c4b47b8539df7645c65e277631dbf4e6b /configure1.in | |
parent | a21dc12d8ef83d19fd49582a14f2d9769cb5c8bc (diff) | |
download | emacs-9e6d7fe216efcc7c3a50c1a29270faa6b2ecb881.tar.gz |
Add HAVE_STRUCT_UTIMBUF.
Diffstat (limited to 'configure1.in')
-rwxr-xr-x | configure1.in | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/configure1.in b/configure1.in index f101ac7e8a4..175584fabc8 100755 --- a/configure1.in +++ b/configure1.in @@ -1180,7 +1180,7 @@ dnl checks for UNIX variants that set `DEFS' AC_AIX dnl checks for header files -AC_HAVE_HEADERS(sys/timeb.h sys/time.h unistd.h) +AC_HAVE_HEADERS(sys/timeb.h sys/time.h unistd.h utime.h) AC_STDC_HEADERS AC_TIME_WITH_SYS_TIME dnl In Autoconf 1.8 use AC_SYS_SIGLIST_DECLARED instead of this. @@ -1191,6 +1191,21 @@ AC_COMPILE_CHECK(sys_siglist declaration in signal.h or unistd.h, #include <unistd.h> #endif], [char *msg = *(sys_siglist + 1);], AC_DEFINE(SYS_SIGLIST_DECLARED)) +dnl Some systems have utime.h but don't declare the struct anyplace. +AC_COMPILE_CHECK(struct utimbuf, [#ifdef TIME_WITH_SYS_TIME +#include <sys/time.h> +#include <time.h> +#else +#ifdef HAVE_SYS_TIME_H +#include <sys/time.h> +#else +#include <time.h> +#endif +#endif +#ifdef HAVE_UTIME_H +#include <utime.h> +#endif], [static struct utimbuf x; x.actime = x.modtime;], + AC_DEFINE(HAVE_STRUCT_UTIMBUF)) dnl checks for typedefs AC_RETSIGTYPE |