Removed tm_ files.
Showing
4 changed files
with
0 additions
and
36 deletions
m4/tm_gmtoff.m4
deleted
100644 → 0
1 | AC_DEFUN(sr_STRUCT_TM_GMTOFF, | ||
2 | [AC_REQUIRE([AC_STRUCT_TM])dnl | ||
3 | AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, | ||
4 | [AC_TRY_COMPILE([#include <sys/types.h> | ||
5 | #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], | ||
6 | ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)]) | ||
7 | if test "$ac_cv_struct_tm_gmtoff" = yes; then | ||
8 | AC_DEFINE(HAVE_TM_GMTOFF) | ||
9 | fi | ||
10 | ]) | ||
11 |
m4/tm_isdst.m4
deleted
100644 → 0
1 | AC_DEFUN(sr_STRUCT_TM_ISDST, | ||
2 | [AC_REQUIRE([AC_STRUCT_TM])dnl | ||
3 | AC_CACHE_CHECK([for tm_isdst in struct tm], ac_cv_struct_tm_isdst, | ||
4 | [AC_TRY_COMPILE([#include <sys/types.h> | ||
5 | #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_isdst;], | ||
6 | ac_cv_struct_tm_isdst=yes, ac_cv_struct_tm_isdst=no)]) | ||
7 | if test "$ac_cv_struct_tm_isdst" = yes; then | ||
8 | AC_DEFINE(HAVE_TM_ISDST) | ||
9 | fi | ||
10 | ]) | ||
11 |
m4/tm_zone.m4
deleted
100644 → 0
1 | AC_DEFUN(sr_STRUCT_TM_ZONE, | ||
2 | [AC_REQUIRE([AC_STRUCT_TM])dnl | ||
3 | AC_CACHE_CHECK([for tm_zone in struct tm], ac_cv_struct_tm_zone, | ||
4 | [AC_TRY_COMPILE([#include <sys/types.h> | ||
5 | #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_zone;], | ||
6 | ac_cv_struct_tm_zone=yes, ac_cv_struct_tm_zone=no)]) | ||
7 | if test "$ac_cv_struct_tm_zone" = yes; then | ||
8 | AC_DEFINE(HAVE_TM_ZONE) | ||
9 | fi | ||
10 | ]) | ||
11 |
-
Please register or sign in to post a comment