+2018-08-05 Bruno Haible <bruno@clisp.org>
+
+ 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 <bruno@clisp.org>
monetary: Generate header file when module 'posixcheck' is in use.
-# 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,
fi
AC_SUBST([HAVE_UTIME_H])
- UTIME_H=''
- if test $ac_cv_header_utime_h != yes; then
- dnl Provide a substitute <utime.h> 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 <utime.h> 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"])