1 |
slords |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' qmail-1.03/Makefile mezzanine_patched_qmail-1.03/Makefile |
2 |
|
|
--- qmail-1.03/Makefile 1998-06-15 04:53:16.000000000 -0600 |
3 |
|
|
+++ mezzanine_patched_qmail-1.03/Makefile 2007-05-03 10:28:43.000000000 -0600 |
4 |
|
|
@@ -112,16 +112,27 @@ |
5 |
|
|
|
6 |
|
|
auto_uids.c: \ |
7 |
|
|
auto-uid auto-gid conf-users conf-groups |
8 |
|
|
- ( ./auto-uid auto_uida `head -1 conf-users` \ |
9 |
|
|
- &&./auto-uid auto_uidd `head -2 conf-users | tail -1` \ |
10 |
|
|
- &&./auto-uid auto_uidl `head -3 conf-users | tail -1` \ |
11 |
|
|
- &&./auto-uid auto_uido `head -4 conf-users | tail -1` \ |
12 |
|
|
- &&./auto-uid auto_uidp `head -5 conf-users | tail -1` \ |
13 |
|
|
- &&./auto-uid auto_uidq `head -6 conf-users | tail -1` \ |
14 |
|
|
- &&./auto-uid auto_uidr `head -7 conf-users | tail -1` \ |
15 |
|
|
- &&./auto-uid auto_uids `head -8 conf-users | tail -1` \ |
16 |
|
|
- &&./auto-gid auto_gidq `head -1 conf-groups` \ |
17 |
|
|
- &&./auto-gid auto_gidn `head -2 conf-groups | tail -1` \ |
18 |
|
|
+# ( ./auto-uid auto_uida `head -1 conf-users` \ |
19 |
|
|
+# &&./auto-uid auto_uidd `head -2 conf-users | tail -1` \ |
20 |
|
|
+# &&./auto-uid auto_uidl `head -3 conf-users | tail -1` \ |
21 |
|
|
+# &&./auto-uid auto_uido `head -4 conf-users | tail -1` \ |
22 |
|
|
+# &&./auto-uid auto_uidp `head -5 conf-users | tail -1` \ |
23 |
|
|
+# &&./auto-uid auto_uidq `head -6 conf-users | tail -1` \ |
24 |
|
|
+# &&./auto-uid auto_uidr `head -7 conf-users | tail -1` \ |
25 |
|
|
+# &&./auto-uid auto_uids `head -8 conf-users | tail -1` \ |
26 |
|
|
+# &&./auto-gid auto_gidq `head -1 conf-groups` \ |
27 |
|
|
+# &&./auto-gid auto_gidn `head -2 conf-groups | tail -1` \ |
28 |
|
|
+# ) > auto_uids.c.tmp && mv auto_uids.c.tmp auto_uids.c |
29 |
|
|
+ ( echo -e "int auto_uida = 400;\n" \ |
30 |
|
|
+ "int auto_uidd = 401;\n" \ |
31 |
|
|
+ "int auto_uidl = 402;\n" \ |
32 |
|
|
+ "int auto_uido = 0;\n" \ |
33 |
|
|
+ "int auto_uidp = 403;\n" \ |
34 |
|
|
+ "int auto_uidq = 404;\n" \ |
35 |
|
|
+ "int auto_uidr = 405;\n" \ |
36 |
|
|
+ "int auto_uids = 406;\n" \ |
37 |
|
|
+ "int auto_gidq = 401;\n" \ |
38 |
|
|
+ "int auto_gidn = 400;\n" \ |
39 |
|
|
) > auto_uids.c.tmp && mv auto_uids.c.tmp auto_uids.c |
40 |
|
|
|
41 |
|
|
auto_uids.o: \ |