diff options
author | NIIBE Yutaka <[email protected]> | 2021-12-22 01:36:26 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2021-12-22 01:36:26 +0000 |
commit | 6b4441a7de9d7090bb3b1570a12e1e8bce0554cb (patch) | |
tree | a0e1df1e93cea48e5c949d7a02799d639ce6600a /acinclude.m4 | |
parent | po: Update Japanese Translation. (diff) | |
download | gnupg-6b4441a7de9d7090bb3b1570a12e1e8bce0554cb.tar.gz gnupg-6b4441a7de9d7090bb3b1570a12e1e8bce0554cb.zip |
build: Update for newer autoconf.
* configure.ac (AC_PREREQ): Use >= 2.69.
(AC_CONFIG_HEADERS): Use it, instead of AC_CONFIG_HEADER.
(AC_HEADER_STDC, AC_HEADER_TIME): Remove obsolete macros.
(sys/time.h): Add the check of the header.
(time_t): Don't use TIME_WITH_SYS_TIME.
* acinclude.m4 (AC_HEADER_TIME): Don't require.
Don't use TIME_WITH_SYS_TIME.
* dirmngr/dns.c: Don't use TIME_WITH_SYS_TIME.
--
Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index cc5870ed8..98a87f673 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -164,18 +164,12 @@ AC_DEFUN([GNUPG_GPG_DISABLE_ALGO], # AC_DEFUN([GNUPG_TIME_T_UNSIGNED], [ AC_CACHE_CHECK(whether time_t is unsigned, gnupg_cv_time_t_unsigned, - [AC_REQUIRE([AC_HEADER_TIME])dnl - AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY( + [AC_COMPILE_IFELSE([AC_LANG_BOOL_COMPILE_TRY( [AC_INCLUDES_DEFAULT([]) -#if TIME_WITH_SYS_TIME +#if HAVE_SYS_TIME_H # include <sys/time.h> -# include <time.h> #else -# if HAVE_SYS_TIME_H -# include <sys/time.h> -# else -# include <time.h> -# endif +# include <time.h> #endif ], [((time_t)-1) < 0])], |