1 |
diff -ruN dot-forward-0.71-01/Makefile dot-forward-0.71-02/Makefile |
2 |
--- dot-forward-0.71-01/Makefile Tue May 19 06:15:50 1998 |
3 |
+++ dot-forward-0.71-02/Makefile Mon Feb 5 18:47:49 2001 |
4 |
@@ -39,6 +39,14 @@ |
5 |
compile auto_qmail.c |
6 |
./compile auto_qmail.c |
7 |
|
8 |
+root_auto_qmail.c: \ |
9 |
+auto-str conf-qmail |
10 |
+ ./auto-str root_auto_qmail `pwd`/root`head -1 conf-qmail` > root_auto_qmail.c |
11 |
+ |
12 |
+root_auto_qmail.o: \ |
13 |
+compile root_auto_qmail.c |
14 |
+ ./compile root_auto_qmail.c |
15 |
+ |
16 |
byte_chr.o: \ |
17 |
compile byte_chr.c byte.h |
18 |
./compile byte_chr.c |
19 |
@@ -177,13 +185,13 @@ |
20 |
rm -f trywaitp.o trywaitp |
21 |
|
22 |
hier.o: \ |
23 |
-compile hier.c auto_qmail.h |
24 |
+compile hier.c root_auto_qmail.h |
25 |
./compile hier.c |
26 |
|
27 |
install: \ |
28 |
-load install.o hier.o auto_qmail.o strerr.a substdio.a error.a open.a \ |
29 |
+load install.o hier.o root_auto_qmail.o strerr.a substdio.a error.a open.a \ |
30 |
str.a |
31 |
- ./load install hier.o auto_qmail.o strerr.a substdio.a \ |
32 |
+ ./load install hier.o root_auto_qmail.o strerr.a substdio.a \ |
33 |
error.a open.a str.a |
34 |
|
35 |
install.o: \ |
36 |
@@ -192,9 +200,9 @@ |
37 |
./compile install.c |
38 |
|
39 |
instcheck: \ |
40 |
-load instcheck.o hier.o auto_qmail.o strerr.a substdio.a error.a \ |
41 |
+load instcheck.o hier.o root_auto_qmail.o strerr.a substdio.a error.a \ |
42 |
str.a |
43 |
- ./load instcheck hier.o auto_qmail.o strerr.a substdio.a \ |
44 |
+ ./load instcheck hier.o root_auto_qmail.o strerr.a substdio.a \ |
45 |
error.a str.a |
46 |
|
47 |
instcheck.o: \ |
48 |
diff -ruN dot-forward-0.71-01/hier.c dot-forward-0.71-02/hier.c |
49 |
--- dot-forward-0.71-01/hier.c Tue May 19 06:15:50 1998 |
50 |
+++ dot-forward-0.71-02/hier.c Mon Feb 5 18:44:49 2001 |
51 |
@@ -1,16 +1,16 @@ |
52 |
-#include "auto_qmail.h" |
53 |
+#include "root_auto_qmail.h" |
54 |
|
55 |
void hier() |
56 |
{ |
57 |
- h(auto_qmail,-1,-1,0755); |
58 |
+ h(root_auto_qmail,-1,-1,0755); |
59 |
|
60 |
- d(auto_qmail,"bin",-1,-1,0755); |
61 |
- d(auto_qmail,"man",-1,-1,0755); |
62 |
- d(auto_qmail,"man/man1",-1,-1,0755); |
63 |
- d(auto_qmail,"man/cat1",-1,-1,0755); |
64 |
+ d(root_auto_qmail,"bin",-1,-1,0755); |
65 |
+ d(root_auto_qmail,"man",-1,-1,0755); |
66 |
+ d(root_auto_qmail,"man/man1",-1,-1,0755); |
67 |
+ d(root_auto_qmail,"man/cat1",-1,-1,0755); |
68 |
|
69 |
- c(auto_qmail,"bin","dot-forward",-1,-1,0755); |
70 |
+ c(root_auto_qmail,"bin","dot-forward",-1,-1,0755); |
71 |
|
72 |
- c(auto_qmail,"man/man1","dot-forward.1",-1,-1,0644); |
73 |
- c(auto_qmail,"man/cat1","dot-forward.0",-1,-1,0644); |
74 |
+ c(root_auto_qmail,"man/man1","dot-forward.1",-1,-1,0644); |
75 |
+ c(root_auto_qmail,"man/cat1","dot-forward.0",-1,-1,0644); |
76 |
} |
77 |
diff -ruN dot-forward-0.71-01/root_auto_qmail.h dot-forward-0.71-02/root_auto_qmail.h |
78 |
--- dot-forward-0.71-01/root_auto_qmail.h Wed Dec 31 19:00:00 1969 |
79 |
+++ dot-forward-0.71-02/root_auto_qmail.h Mon Feb 5 18:44:34 2001 |
80 |
@@ -0,0 +1,6 @@ |
81 |
+#ifndef ROOT_AUTO_QMAIL_H |
82 |
+#define ROOT_AUTO_QMAIL_H |
83 |
+ |
84 |
+extern char root_auto_qmail[]; |
85 |
+ |
86 |
+#endif |