Removed or protected some unused macros.
authorDavid Levine <levinedl@acm.org>
Wed, 11 Jan 2012 23:06:44 +0000 (17:06 -0600)
committerDavid Levine <levinedl@acm.org>
Wed, 11 Jan 2012 23:06:44 +0000 (17:06 -0600)
sbr/client.c
sbr/fmt_scan.c
sbr/uprf.c
uip/inc.c

index 763b2a4..7ae356a 100644 (file)
@@ -16,9 +16,6 @@
 #include <netdb.h>
 #include <arpa/inet.h>
 
-#define        TRUE         1
-#define        FALSE        0
-
 #define        MAXARGS   1000
 
 /*
index 9784919..2bf1821 100644 (file)
@@ -22,8 +22,6 @@
 #  include <wchar.h>
 #endif
 
-#define        NFMTS MAXARGS
-
 extern char *formataddr ();    /* hook for custom address formatting */
 
 #ifdef LBL
index b3c81ff..5da5e76 100644 (file)
@@ -9,8 +9,10 @@
 
 #include <h/mh.h>
 
-#define TO_LOWER 040
-#define NO_MASK  000
+#ifndef LOCALE
+# define TO_LOWER 040
+# define NO_MASK  000
+#endif
 
 
 int
index 1dcba6a..9310ae1 100644 (file)
--- a/uip/inc.c
+++ b/uip/inc.c
@@ -109,7 +109,9 @@ static struct swit switches[] = {
  * flags for the mail source
  */
 #define INC_FILE  0
-#define INC_POP   1
+#ifdef POP
+# define INC_POP   1
+#endif /* POP */
 
 static int inc_type;
 static struct Maildir_entry {