]> git.marmaro.de Git - mmh/commitdiff
Remove h/nmh.h
authormarkus schnalke <meillo@marmaro.de>
Fri, 10 Apr 2015 09:21:12 +0000 (11:21 +0200)
committermarkus schnalke <meillo@marmaro.de>
Fri, 10 Apr 2015 09:21:12 +0000 (11:21 +0200)
Move its contents to h/mh.h.

Remove the NLENGTH macro on the way, be cause it is not used.

configure.ac
h/Makefile.in
h/mf.h
h/mh.h
h/nmh.h [deleted file]
sbr/dtime.c
sbr/dtimep.lex
sbr/mf.c
sbr/mts.c
uip/dropsbr.c

index 2633228c2f4726027a91d289a944972d644b4182..fda0e5a45b4e10dacf76130dee68430aba99223c 100644 (file)
@@ -7,7 +7,7 @@ AC_PREREQ(2.61)
 dnl (I was able to configure with autoconf-2.59 --meillo 2012-03-22)
 
 AC_INIT(mmh, m4_normalize(m4_include([VERSION])))
-AC_CONFIG_SRCDIR(h/nmh.h)
+AC_CONFIG_SRCDIR(h/mh.h)
 AC_CONFIG_HEADER(config.h)
 
 AC_CANONICAL_TARGET
index 78db70b280aa2b1d2aa43f1dbea67f6a8454c0e4..31987b59fd2290a293eb40d7c4d85a360935278e 100644 (file)
@@ -10,7 +10,7 @@ VPATH  = @srcdir@
 # header files included in distribution
 HDRS = addrsbr.h aliasbr.h crawl_folders.h dropsbr.h fmt_compile.h     \
        fmt_scan.h mf.h mh.h mhparse.h mime.h        \
-       nmh.h prototypes.h rcvmail.h         \
+       prototypes.h rcvmail.h         \
        scansbr.h signals.h tws.h utils.h
 
 # auxiliary files
diff --git a/h/mf.h b/h/mf.h
index 75245e057e5dfd79d3cb880b3d3561799ba21633..a39689d53c96b5c513f4cedc09a6c5a42e17574e 100644 (file)
--- a/h/mf.h
+++ b/h/mf.h
@@ -2,8 +2,6 @@
 ** mf.h -- include file for mailbox filters
 */
 
-#include <h/nmh.h>
-
 #ifndef TRUE
 # define TRUE 1
 #endif
diff --git a/h/mh.h b/h/mh.h
index 6b8f4a97a2ec7a21a45ebefc10b31f6953853d6a..17d5c2f8a8f0a0c391568f9158c21c8127c72771 100644 (file)
--- a/h/mh.h
+++ b/h/mh.h
@@ -2,7 +2,25 @@
 ** mh.h -- main header file for all of nmh
 */
 
-#include <h/nmh.h>
+#include <config.h>
+
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <sys/stat.h>
+
+#include <dirent.h>
+
+#include <stdlib.h>
+#include <stdarg.h>
+#include <string.h>
+
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+#endif
+
+#include <locale.h>
+#include <limits.h>
 
 /*
 ** Well-used constants
@@ -35,6 +53,30 @@ typedef unsigned char  boolean;  /* not int so we can pack in a structure */
 # define NORETURN
 #endif
 
+/*
+** we should be getting this value from pathconf(_PC_PATH_MAX)
+*/
+#ifndef PATH_MAX
+# ifdef MAXPATHLEN
+#  define PATH_MAX MAXPATHLEN
+# else
+   /* so we will just pick something */
+#  define PATH_MAX 1024
+# endif
+#endif
+
+/*
+** we should be getting this value from sysconf(_SC_OPEN_MAX)
+*/
+#ifndef OPEN_MAX
+# ifdef NOFILE
+#  define OPEN_MAX NOFILE
+# else
+   /* so we will just pick something */
+#  define OPEN_MAX 64
+# endif
+#endif
+
 /*
 ** user context/profile structure
 */
diff --git a/h/nmh.h b/h/nmh.h
deleted file mode 100644 (file)
index 3da6a14..0000000
--- a/h/nmh.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
-** nmh.h -- system configuration header file
-*/
-
-#include <config.h>
-
-#include <unistd.h>
-#include <stdio.h>
-#include <ctype.h>
-#include <sys/stat.h>
-
-#include <dirent.h>
-#define NLENGTH(dirent) strlen((dirent)->d_name)
-
-#include <stdlib.h>
-#include <stdarg.h>
-#include <string.h>
-
-#ifdef HAVE_SYS_PARAM_H
-# include <sys/param.h>
-#endif
-
-#include <locale.h>
-#include <limits.h>
-
-/*
-** we should be getting this value from pathconf(_PC_PATH_MAX)
-*/
-#ifndef PATH_MAX
-# ifdef MAXPATHLEN
-#  define PATH_MAX MAXPATHLEN
-# else
-   /* so we will just pick something */
-#  define PATH_MAX 1024
-# endif
-#endif
-
-/*
-** we should be getting this value from sysconf(_SC_OPEN_MAX)
-*/
-#ifndef OPEN_MAX
-# ifdef NOFILE
-#  define OPEN_MAX NOFILE
-# else
-   /* so we will just pick something */
-#  define OPEN_MAX 64
-# endif
-#endif
index 2f8e5dc2dd99b32e132cb100b874acb8dedc6755..f97f65bea5dd8f54b07ac31fcc404bd39f1aa8bf 100644 (file)
@@ -7,7 +7,6 @@
 */
 
 #include <h/mh.h>   /* for snprintf() */
-#include <h/nmh.h>
 #include <h/tws.h>
 #include <time.h>
 
index 83edbffe7d3ba82795c7c2eb8537a351eeec64ac..60a8d82c581f3e31d4d2e5721b0ecaa8051f062d 100644 (file)
@@ -9,7 +9,7 @@
 %n2500
 %a5000
 %{
-#include <h/nmh.h>
+#include <ctype.h>
 #include <h/tws.h>
 
 /*
index 69afff8aa12e9111b089cb57aadc960b7dc6a344..17809976ad9bc04175f2252eb2276cf93a92c0e2 100644 (file)
--- a/sbr/mf.c
+++ b/sbr/mf.c
@@ -10,6 +10,9 @@
 #include <ctype.h>
 #include <stdio.h>
 #include <h/utils.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
 
 /*
 ** static prototypes
index 95c0a3f9aa38e0d40a217386361af50f7a61bc3a..a65d9de043c9b0173391f5471566baec10f9036d 100644 (file)
--- a/sbr/mts.c
+++ b/sbr/mts.c
@@ -7,7 +7,6 @@
 */
 
 #include <h/mh.h>   /* for snprintf() */
-#include <h/nmh.h>
 #include <h/utils.h>
 #include <ctype.h>
 #include <stdio.h>
index 3c3e105264f2bdf50c7a72fa9b1a3d5e897395f6..5b5cf0ee00b2860a258afc1214ede8789189e000 100644 (file)
@@ -6,7 +6,7 @@
 ** complete copyright information.
 */
 
-#include <h/nmh.h>
+#include <stdlib.h>
 #include <h/utils.h>
 
 #include <h/mh.h>