From: Bruno Haible Date: Sun, 5 Aug 2018 22:18:17 +0000 (+0200) Subject: utime-h: Generate header file when module 'posixcheck' is in use. X-Git-Tag: v1.0~5495 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=c9d2b6f28e7814f34a36801dd186d18776a4ff75;p=gnulib.git utime-h: Generate header file when module 'posixcheck' is in use. * m4/utime_h.m4 (gl_UTIME_H): If module 'posixcheck' is in use, set UTIME_H to non-empty. --- diff --git a/ChangeLog b/ChangeLog index 75022d0ac0..c7d0999d4d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-08-05 Bruno Haible + + utime-h: Generate header file when module 'posixcheck' is in use. + * m4/utime_h.m4 (gl_UTIME_H): If module 'posixcheck' is in use, set + UTIME_H to non-empty. + 2018-08-05 Bruno Haible monetary: Generate header file when module 'posixcheck' is in use. diff --git a/m4/utime_h.m4 b/m4/utime_h.m4 index 89e301ba27..ab459fe8f1 100644 --- a/m4/utime_h.m4 +++ b/m4/utime_h.m4 @@ -1,4 +1,4 @@ -# utime_h.m4 serial 1 +# utime_h.m4 serial 2 dnl Copyright (C) 2017-2018 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -20,17 +20,20 @@ AC_DEFUN([gl_UTIME_H], fi AC_SUBST([HAVE_UTIME_H]) - UTIME_H='' - if test $ac_cv_header_utime_h != yes; then - dnl Provide a substitute file. - UTIME_H=utime.h - else - case "$host_os" in - mingw*) dnl Need special handling of 'struct utimbuf'. - UTIME_H=utime.h - ;; - esac - fi + m4_ifdef([gl_POSIXCHECK], + [UTIME_H=utime.h], + [UTIME_H='' + if test $ac_cv_header_utime_h != yes; then + dnl Provide a substitute file. + UTIME_H=utime.h + else + case "$host_os" in + mingw*) dnl Need special handling of 'struct utimbuf'. + UTIME_H=utime.h + ;; + esac + fi + ]) AC_SUBST([UTIME_H]) AM_CONDITIONAL([GL_GENERATE_UTIME_H], [test -n "$UTIME_H"])