]> git.marmaro.de Git - mmh/commitdiff
Completely remove the use of TIME_WITH_SYS_TIME.
authormarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 07:10:44 +0000 (09:10 +0200)
committermarkus schnalke <meillo@marmaro.de>
Tue, 27 Mar 2012 07:10:44 +0000 (09:10 +0200)
Removed the autoconf test but never removed the code, and this caused
some problems on systems that needed some prototypes in <time.h>.

Pulled in from nmh. Thanks to Ken Hornstein.

sbr/dtimep.lex
sbr/fmt_compile.c
sbr/fmt_scan.c
sbr/lock_file.c
uip/mhbuild.c
uip/mhcachesbr.c
uip/pick.c
uip/send.c

index b5fac4fd15ed3034590a7e75576e0f5035788138..133a9ab18eff82de60cd5a3a52c4547696a52c83 100644 (file)
@@ -10,7 +10,6 @@
 %{
 #include <h/nmh.h>
 #include <h/tws.h>
-#include <time.h>
 
   /* Since we're looking at a string at a time, don't worry about
    *  wrapping to the next buffer.
@@ -144,16 +143,10 @@ static int day_map[] = {
 #define SKIPTOSP()  { while ( !isspace(*cp++) ) ; --cp; }
 
 #ifdef ADJUST_NUMERIC_ONLY_TZ_OFFSETS_WRT_DST
-# ifdef TIME_WITH_SYS_TIME
+# ifdef HAVE_SYS_TIME_H
 #  include <sys/time.h>
-#  include <time.h>
-# else
-#  ifdef HAVE_SYS_TIME_H
-#   include <sys/time.h>
-#  else
-#   include <time.h>
-#  endif
 # endif
+#include <time.h>
 
 static void
 zonehack (struct tws *tw)
index 797c192ad05fedfba1be8365d7b8da236d1b0ca0..c49a6eab7f13ae0c4127e67ee0ea2fb710173bca 100644 (file)
 #include <h/fmt_scan.h>
 #include <h/fmt_compile.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 /*
 ** hash table for deciding if a component is "interesting"
index f26b02bbb2eb226f3db5ac548447c736eb88baa7..f72717756e280267f1b439b4873b63d658ab3856 100644 (file)
 #include <h/tws.h>
 #include <h/fmt_compile.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
+
 #ifdef MULTIBYTE_SUPPORT
 #  include <wctype.h>
 #  include <wchar.h>
index 5d0be8407aa7c761f9292a988ff1abc2fb88a612..d15c93957de69944609479ebdb1e06790d050066 100644 (file)
 #include <h/signals.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 #include <errno.h>
 
index 06a353acf9b7d64157763d401877ee952b146d7c..739aa462a1643d801f1f75038536faacdf1b0435 100644 (file)
 #include <h/mhcachesbr.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 static struct swit switches[] = {
 #define CHECKSW  0
index 2d6c596563083f5271cced5264dd44be534f5c7b..201ce514ab294df8f8ffdd9cea3159b540a15c90 100644 (file)
 #include <h/mhcachesbr.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 extern int debugsw;
 
index 73babadf4e530e960491dc8af757a0dbf6566172..896c37b3e73cec27a793218fadefa501687b36d3 100644 (file)
 #include <h/tws.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 static struct swit switches[] = {
 #define ANDSW  0
index e39ab800e6a7c8569047cca2ff2a3eb61074dc90..a2e9932956805c47f65574703617c50f037c1d60 100644 (file)
 #include <h/tws.h>
 #include <h/utils.h>
 
-#ifdef TIME_WITH_SYS_TIME
+#ifdef HAVE_SYS_TIME_H
 # include <sys/time.h>
-# include <time.h>
-#else
-# ifdef TM_IN_SYS_TIME
-#  include <sys/time.h>
-# else
-#  include <time.h>
-# endif
 #endif
+#include <time.h>
 
 int debugsw = 0;  /* global */
 int forwsw  = 1;