tzset.m4 492 B

12345678910111213141516171819
  1. # serial 16
  2. # Copyright (C) 2003, 2007, 2009-2023 Free Software Foundation, Inc.
  3. # This file is free software; the Free Software Foundation
  4. # gives unlimited permission to copy and/or distribute it,
  5. # with or without modifications, as long as this notice is preserved.
  6. # Written by Paul Eggert and Jim Meyering.
  7. AC_DEFUN([gl_FUNC_TZSET],
  8. [
  9. AC_REQUIRE([gl_TIME_H_DEFAULTS])
  10. AC_REQUIRE([AC_CANONICAL_HOST])
  11. REPLACE_TZSET=0
  12. case "$host_os" in
  13. mingw*) REPLACE_TZSET=1 ;;
  14. esac
  15. ])