Replace uses of obsolete autoconf macros in Jim's modules.
[gnulib.git] / m4 / stat-time.m4
index b860be8..cdef9d1 100644 (file)
@@ -26,8 +26,8 @@ AC_DEFUN([gl_STAT_TIME],
   AC_CHECK_MEMBERS([struct stat.st_atim.tv_nsec],
     [AC_CACHE_CHECK([whether struct stat.st_atim is of type struct timespec],
        [ac_cv_typeof_struct_stat_st_atim_is_struct_timespec],
-       [AC_TRY_COMPILE(
-         [
+       [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
+         [[
            #include <sys/types.h>
            #include <sys/stat.h>
            #if HAVE_SYS_TIME_H
@@ -36,10 +36,10 @@ AC_DEFUN([gl_STAT_TIME],
            #include <time.h>
            struct timespec ts;
            struct stat st;
-         ],
-         [
+         ]],
+         [[
            st.st_atim = ts;
-         ],
+         ]])],
          [ac_cv_typeof_struct_stat_st_atim_is_struct_timespec=yes],
          [ac_cv_typeof_struct_stat_st_atim_is_struct_timespec=no])])
      if test $ac_cv_typeof_struct_stat_st_atim_is_struct_timespec = yes; then