forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commita060d5b
committed
Hello!
Here is a new patch for libpq, to make it work on Win32 again (sincethe latest modifications broke it a little).Please also add the file "libpq.rc" to the interfaces/libpq directory.This will allow version-stamping of the generated DLL file, so thatautomatic install programs (and interested users) can determinethe version of the file. The file is currently set as "prerelease".Before the release, somebody should change the line "FILEFLAGSVS_FF_PRERELEASE" to "FILEFLAGS 0". That information should probablygo into toos\RELEASE_CHANGES.The patch is against the cvs as of ~ 1998-08-26 14:30 CEST.//Magnus1 parentd15c37c commita060d5b
File tree
5 files changed
+47
-17
lines changed- src
- bin/psql
- include
- libpq
- interfaces/libpq
5 files changed
+47
-17
lines changedLines changed: 13 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 |
| - | |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| |||
89 | 89 |
| |
90 | 90 |
| |
91 | 91 |
| |
92 |
| - | |
| 92 | + | |
| 93 | + | |
93 | 94 |
| |
94 | 95 |
| |
95 | 96 |
| |
| |||
2310 | 2311 |
| |
2311 | 2312 |
| |
2312 | 2313 |
| |
2313 |
| - | |
| 2314 | + | |
2314 | 2315 |
| |
2315 | 2316 |
| |
2316 | 2317 |
| |
| |||
2380 | 2381 |
| |
2381 | 2382 |
| |
2382 | 2383 |
| |
2383 |
| - | |
2384 |
| - | |
| 2384 | + | |
| 2385 | + | |
| 2386 | + | |
| 2387 | + | |
2385 | 2388 |
| |
2386 | 2389 |
| |
2387 | 2390 |
| |
| |||
2500 | 2503 |
| |
2501 | 2504 |
| |
2502 | 2505 |
| |
2503 |
| - | |
| 2506 | + | |
2504 | 2507 |
| |
2505 | 2508 |
| |
2506 | 2509 |
| |
| |||
2548 | 2551 |
| |
2549 | 2552 |
| |
2550 | 2553 |
| |
2551 |
| - | |
2552 |
| - | |
| 2554 | + | |
| 2555 | + | |
| 2556 | + | |
| 2557 | + | |
2553 | 2558 |
| |
2554 | 2559 |
| |
2555 | 2560 |
| |
|
Lines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7 | 7 |
| |
8 | 8 |
| |
9 | 9 |
| |
10 |
| - | |
| 10 | + | |
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| |||
133 | 133 |
| |
134 | 134 |
| |
135 | 135 |
| |
| 136 | + | |
136 | 137 |
| |
| 138 | + | |
137 | 139 |
| |
138 | 140 |
| |
139 | 141 |
| |
|
Lines changed: 7 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| |||
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
| 18 | + | |
| 19 | + | |
| 20 | + | |
18 | 21 |
| |
19 | 22 |
| |
20 | 23 |
| |
| 24 | + | |
21 | 25 |
| |
22 | 26 |
| |
23 | 27 |
| |
24 |
| - | |
25 | 28 |
| |
26 | 29 |
| |
27 | 30 |
| |
28 | 31 |
| |
29 | 32 |
| |
30 | 33 |
| |
| 34 | + | |
31 | 35 |
| |
| 36 | + | |
32 | 37 |
| |
33 | 38 |
| |
34 | 39 |
| |
|
Lines changed: 7 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
| 24 | + | |
| 25 | + | |
| 26 | + | |
24 | 27 |
| |
25 | 28 |
| |
26 | 29 |
| |
| 30 | + | |
27 | 31 |
| |
28 | 32 |
| |
29 | 33 |
| |
| |||
141 | 145 |
| |
142 | 146 |
| |
143 | 147 |
| |
| 148 | + | |
144 | 149 |
| |
| 150 | + | |
145 | 151 |
| |
146 | 152 |
| |
147 | 153 |
| |
|
Lines changed: 17 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
| 14 | + | |
14 | 15 |
| |
15 | 16 |
| |
16 | 17 |
| |
| |||
28 | 29 |
| |
29 | 30 |
| |
30 | 31 |
| |
31 |
| - | |
32 |
| - | |
| 32 | + | |
33 | 33 |
| |
34 |
| - | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
35 | 40 |
| |
36 | 41 |
| |
37 | 42 |
| |
| |||
53 | 58 |
| |
54 | 59 |
| |
55 | 60 |
| |
| 61 | + | |
| 62 | + | |
56 | 63 |
| |
57 | 64 |
| |
58 | 65 |
| |
| |||
61 | 68 |
| |
62 | 69 |
| |
63 | 70 |
| |
64 |
| - | |
| 71 | + | |
| 72 | + | |
65 | 73 |
| |
66 | 74 |
| |
67 | 75 |
| |
68 | 76 |
| |
69 | 77 |
| |
70 | 78 |
| |
71 | 79 |
| |
72 |
| - | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
73 | 85 |
| |
74 | 86 |
| |
75 | 87 |
| |
|
0 commit comments
Comments
(0)