+2020-08-23 Paul Eggert <eggert@cs.ucla.edu>
+
+ sys_types: let Autoconf 2.70 do pid_t
+ * m4/pid_t.m4 (AC_TYPE_PID_T): Redefine this Autoconf macro
+ only for Autoconf versions 2.69 and earlier, since 2.70
+ will be fixed.
+
2020-08-23 Bruno Haible <bruno@clisp.org>
tests: Don't assume that pid_t fits in an 'int'.
-# pid_t.m4 serial 1
+# pid_t.m4 serial 2
dnl Copyright (C) 2020 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
+# The following implementation works around a problem in autoconf <= 2.69.
+m4_version_prereq([2.70], [] ,[
+
dnl Define pid_t if the headers don't define it.
AC_DEFUN([AC_TYPE_PID_T],
[
],
[AC_INCLUDES_DEFAULT])
])
+
+])# m4_version_prereq 2.70