update to got 0.129
- fix missing status code of staged files in log message template during commit
- remove empty dangling directories within refs/ when removing references
- do not add unversioned files to version control if a file addition is merged
- handle removal of UID_MAX and GID_MAX
- fix a problem where 'got revert' errors out in work trees with a path-prefix
- plug a memory leak caused by duplicate ignore patterns
Stop using non-standard UID_MAX and GID_MAX because a variety of code
uses inclusive comparisons such that the UINT_MAX value aliases on top
of -1 and causes issues. First instance of this reported by Acts1631.
joint work with millert
Stop using non-standard UID_MAX and GID_MAX because a variety of code
uses inclusive comparisons such that the UINT_MAX value aliases on top
of -1 and causes issues. First instance of this reported by Acts1631.
joint work with millert
Stop using non-standard UID_MAX and GID_MAX because a variety of code
uses inclusive comparisons such that the UINT_MAX value aliases on top
of -1 and causes issues. First instance of this reported by Acts1631.
joint work with millert
update to resiprocate-1.14.0, unbreaks build with newer asio
I had to disable building tests due to some errors around sdp and
auto_ptr. Didn't investigate further as wanted to unbreak it quickly.
sysutils/pftop: handle removal of UID_MAX und GID_MAX
The UID_MAX and GID_MAX macros are not portable, their use is prone
to errors, and they will be removed from the OpenBSD headers shortly.
Mirror a corresponding change to pfctl(8).
*/*: handle removal of UID_MAX und GID_MAX
The UID_MAX and GID_MAX macros are not portable, their use is prone
to errors, and they will be removed from the OpenBSD headers shortly.
Correct related mistakes in range handling: UINT_MAX is not a valid
user or group ID.