forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitf230e27
committed
Add support for Tcl 9
Tcl 9 changed several API functions to take Tcl_Size, which isptrdiff_t, instead of int, for 64-bit enablement. We have to change afew local variables to be compatible with that. We also provide afallback typedef of Tcl_Size for older Tcl versions.The affected variables are used for quantities that will not approachvalues beyond the range of int, so this doesn't change anyfunctionality.Reviewed-by: Tristan Partin <tristan@partin.io>Discussion:https://www.postgresql.org/message-id/flat/bce0fe54-75b4-438e-b42b-8e84bc7c0e9c%40eisentraut.org1 parent13242b6 commitf230e27
1 file changed
+10
-6
lines changedLines changed: 10 additions & 6 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
56 | 56 |
| |
57 | 57 |
| |
58 | 58 |
| |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
59 | 63 |
| |
60 | 64 |
| |
61 | 65 |
| |
| |||
983 | 987 |
| |
984 | 988 |
| |
985 | 989 |
| |
986 |
| - | |
| 990 | + | |
987 | 991 |
| |
988 | 992 |
| |
989 | 993 |
| |
| |||
1059 | 1063 |
| |
1060 | 1064 |
| |
1061 | 1065 |
| |
1062 |
| - | |
| 1066 | + | |
1063 | 1067 |
| |
1064 | 1068 |
| |
1065 | 1069 |
| |
| |||
2008 | 2012 |
| |
2009 | 2013 |
| |
2010 | 2014 |
| |
2011 |
| - | |
| 2015 | + | |
2012 | 2016 |
| |
2013 | 2017 |
| |
2014 | 2018 |
| |
| |||
2202 | 2206 |
| |
2203 | 2207 |
| |
2204 | 2208 |
| |
2205 |
| - | |
| 2209 | + | |
2206 | 2210 |
| |
2207 | 2211 |
| |
2208 | 2212 |
| |
| |||
2542 | 2546 |
| |
2543 | 2547 |
| |
2544 | 2548 |
| |
2545 |
| - | |
| 2549 | + | |
2546 | 2550 |
| |
2547 | 2551 |
| |
2548 | 2552 |
| |
| |||
2679 | 2683 |
| |
2680 | 2684 |
| |
2681 | 2685 |
| |
2682 |
| - | |
| 2686 | + | |
2683 | 2687 |
| |
2684 | 2688 |
| |
2685 | 2689 |
| |
|
0 commit comments
Comments
(0)