aboutsummaryrefslogtreecommitdiffstats
path: root/mail/cucipop/files/patch-aa
blob: 1c4f87c6ea5344bce317d48631a2a2628bd96e37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
--- authenticate.c.orig Tue Aug 25 17:35:12 1998
+++ authenticate.c  Tue Aug 25 17:35:28 1998
@@ -44,7 +44,7 @@
 #define VIRTUALUSER    "vpop"
 
 #ifndef MAILSPOOLDIR
-#define MAILSPOOLDIR   "/var/spool/mail/"       /* watch the trailing / */
+#define MAILSPOOLDIR   "/var/mail/"         /* watch the trailing / */
 #endif
 #ifndef MAILSPOOLHASH
 #define MAILSPOOLHASH  0      /* 2 would deliver to /var/spool/mail/b/a/bar */
--- xcreat.c.orig   Tue Aug 25 17:35:46 1998
+++ xcreat.c    Tue Aug 25 17:36:03 1998
@@ -22,7 +22,7 @@
 /*#define NOuname            /* uncomment if uname is not available */
 /*#define NOstrpbrk            /* uncomment if strpbrk is not available */
 /*#define strchr(s,c) index(s,c)     /* uncomment if strchr is not available */
-#define const                /* can be undefined for ANSI compilers */
+/*#define const                  /* can be undefined for ANSI compilers */
 
 #include <unistd.h>            /* open() close() link() unlink()
                       getpid() */
--- config.h.orig   Wed May 13 05:09:14 1998
+++ config.h    Tue Aug 25 18:12:48 1998
@@ -3,7 +3,7 @@
 #define USEdot_lock    /**/
 /*#define USEfcntl_lock /**/       /* to test which combinations make sense */
 /*#define USElockf /**/          /* run the lockingtest program part of */
-/*#define USEflock /**/        /* the procmail installation process */
+#define USEflock   /**/        /* the procmail installation process */
 
 /*#define SHADOW_PASSWD /**/         /* shadow password library support */
 
@@ -84,6 +84,6 @@
 #define MAXBULLETINS   64
 #define MAXSTATEAGE    8388608                    /* > 3 months */
 #define MEMORY_CACHE   (64*1024)
-#define CUCIPOP_LIB    "/var/lib/cucipop"
+#define CUCIPOP_LIB    "/var/spool/cucipop"
 #define STATE_DB   "state.db"
 #define BULLETINS_PATH CUCIPOP_LIB"/bulletins"
--- Makefile.orig   Tue May 12 16:09:14 1998
+++ Makefile    Thu Oct 15 21:27:10 1998
@@ -1,30 +1,30 @@
 #$Id: Makefile,v 1.18 1998/05/12 21:09:14 srb Exp $
 
-BASENAME= /usr
+BASENAME= $(PREFIX)
 
-GCC_WARNINGS = -O2 -pedantic -Wreturn-type -Wunused -Wformat \
- -Wpointer-arith -Wconversion -Waggregate-return \
+#CC_WARNINGS = -O2 -pedantic -Wreturn-type -Wunused -Wformat \
+# -Wpointer-arith -Wconversion -Waggregate-return \
  #-Wimplicit -Wshadow #-Wuninitialized
 
 #
 # Omit USE_DB if you don't have the -ldb2 library (Berkeley DB, v2.x)
 # WARNING: bulletins are not remembered to have been deleted without USE_DB
 
-CFLAGS = -O -DUSE_DB #$(GCC_WARNINGS)
-LDFLAGS = -lcrypt -ldb2
+#CFLAGS    = -O -DUSE_DB #$(GCC_WARNINGS)
+LDFLAGS += -lcrypt -lmd
 
 # If you change this, edit config.h as well
-CUCIPOPLIB=/var/lib/cucipop
+CUCIPOPLIB=/var/spool/cucipop
 CUCIPOPBULLETINS=$(CUCIPOPLIB)/bulletins
 
 O=o
 
-BINDIR=$(BASENAME)/sbin
+BINDIR=$(BASENAME)/libexec
 MANDIR=$(BASENAME)/man/man8
 
-INSTALL=install -o root -m
-BINPERM=02755 -s -g mail
-REGPERM=0644
+INSTALL=install -c -o bin -m
+BINPERM=02555 -s -g mail
+REGPERM=0444
 
 #
 # When compiling without APOP support, the md5 library can be omitted.
@@ -32,11 +32,11 @@
 MD5_OBJ=md5/md5c.$(O)
 
 OBJS=cucipop.$(O) authenticate.$(O) atotime.$(O) locking.$(O) xcreat.$(O) \
-   dbops.$(O) hsort.$(O) simplecrypt.$(O) $(MD5_OBJ)
+   dbops.$(O) hsort.$(O) simplecrypt.$(O)
 
-BINS=cucipop makevpopdb
+BINS=cucipop# makevpopdb
 
-MANS=cucipop.8 makevpopdb.8
+MANS=cucipop.8
 
 all: $(BINS)
 
@@ -70,8 +70,8 @@
 install: $(BINS) $(MANS)
    $(INSTALL) $(BINPERM) $(BINS) $(BINDIR)
    $(INSTALL) $(REGPERM) $(MANS) $(MANDIR)
-   mkdir $(CUCIPOPLIB) 2>/dev/null; exit 0
-   mkdir $(CUCIPOPBULLETINS) 2>/dev/null; exit 0
+   mkdir -p $(CUCIPOPLIB) 2>/dev/null; exit 0
+   mkdir -p $(CUCIPOPBULLETINS) 2>/dev/null; exit 0
    @for a in $(BINS); do ls -l $(BINDIR)/$$a; done
    @for a in $(MANS); do ls -l $(MANDIR)/$$a; done