From: Stephen D. <sd...@us...> - 2005-06-10 02:42:28
|
Update of /cvsroot/naviserver/naviserver/include In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10550/include Modified Files: Makefile.global.in config.h.in Log Message: * include/Makefile.global.in: Remove TCL_DEFS which isn't needed now that autoheader is used. * configure.in: Add call to TEA_TIME_HANDLER for time defs. * configure: * include/config.h.in: Rebuild configure and config.h. Index: Makefile.global.in =================================================================== RCS file: /cvsroot/naviserver/naviserver/include/Makefile.global.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** Makefile.global.in 9 Jun 2005 21:07:37 -0000 1.9 --- Makefile.global.in 10 Jun 2005 02:42:19 -0000 1.10 *************** *** 72,76 **** CFLAGS_EXTRA = @SHLIB_CFLAGS@ @TCL_EXTRA_CFLAGS@ DEFS = -DNO_CONST @DEFS@ ! CFLAGS += @CFLAGS_DEFAULT@ @TCL_DEFS@ $(CFLAGS_WARNING) $(CFLAGS_EXTRA) $(CFLAGS_INCLUDE) @CPPFLAGS@ $(DEFS) ifndef NSBUILD --- 72,76 ---- CFLAGS_EXTRA = @SHLIB_CFLAGS@ @TCL_EXTRA_CFLAGS@ DEFS = -DNO_CONST @DEFS@ ! CFLAGS += @CFLAGS_DEFAULT@ $(CFLAGS_WARNING) $(CFLAGS_EXTRA) $(CFLAGS_INCLUDE) @CPPFLAGS@ $(DEFS) ifndef NSBUILD Index: config.h.in =================================================================== RCS file: /cvsroot/naviserver/naviserver/include/config.h.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config.h.in 4 Jun 2005 13:33:15 -0000 1.2 --- config.h.in 10 Jun 2005 02:42:19 -0000 1.3 *************** *** 31,34 **** --- 31,37 ---- #undef HAVE_GETNAMEINFO + /* Define to 1 if you have the `gmtime_r' function. */ + #undef HAVE_GMTIME_R + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H *************** *** 43,46 **** --- 46,52 ---- #undef HAVE_LIMITS_H + /* Define to 1 if you have the `localtime_r' function. */ + #undef HAVE_LOCALTIME_R + /* Define to 1 if you have the <memory.h> header file. */ #undef HAVE_MEMORY_H *************** *** 79,82 **** --- 85,91 ---- #undef HAVE_STRUCT_STAT64 + /* Define to 1 if `tm_zone' is member of `struct tm'. */ + #undef HAVE_STRUCT_TM_TM_ZONE + /* Define to 1 if you have the <sys/param.h> header file. */ #undef HAVE_SYS_PARAM_H *************** *** 85,88 **** --- 94,100 ---- #undef HAVE_SYS_STAT_H + /* Define to 1 if you have the <sys/time.h> header file. */ + #undef HAVE_SYS_TIME_H + /* Define to 1 if you have the <sys/types.h> header file. */ #undef HAVE_SYS_TYPES_H *************** *** 91,97 **** --- 103,126 ---- #undef HAVE_TIMEGM + /* Should we use the global timezone variable? */ + #undef HAVE_TIMEZONE_VAR + + /* Should we use the tm_gmtoff field of struct tm? */ + #undef HAVE_TM_GMTOFF + + /* Should we use the tm_tzadj field of struct tm? */ + #undef HAVE_TM_TZADJ + + /* Define to 1 if your `struct tm' has `tm_zone'. Deprecated, use + `HAVE_STRUCT_TM_TM_ZONE' instead. */ + #undef HAVE_TM_ZONE + /* Is off64_t in <sys/types.h>? */ #undef HAVE_TYPE_OFF64_T + /* Define to 1 if you don't have `tm_zone' but do have the external array + `tzname'. */ + #undef HAVE_TZNAME + /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H *************** *** 181,184 **** --- 210,219 ---- #undef TCL_WIDE_INT_TYPE + /* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ + #undef TIME_WITH_SYS_TIME + + /* Define to 1 if your <sys/time.h> declares `struct tm'. */ + #undef TM_IN_SYS_TIME + /* UNDER_CE version */ #undef UNDER_CE |