diff options
author | cypherpunks <cypherpunks@torproject.org> | 2017-08-03 15:06:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-04 12:22:53 -0400 |
commit | 0265ced02b7a652c5941cb2c14ee1e0de0b1d90e (patch) | |
tree | d02941d0571ecaa9bbaa32be52e235a8768e86ab /changes | |
parent | 32b4fd5be9574a1f17947416889be9067db483b7 (diff) | |
download | tor-0265ced02b7a652c5941cb2c14ee1e0de0b1d90e.tar.gz tor-0265ced02b7a652c5941cb2c14ee1e0de0b1d90e.zip |
Remove usage of the PATH_MAX variable
GNU Hurd does not define the PATH_MAX variable. Using the variable on
this platform results in compilation errors.
Closes #23098.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug23098 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug23098 b/changes/bug23098 new file mode 100644 index 0000000000..2075f13ba7 --- /dev/null +++ b/changes/bug23098 @@ -0,0 +1,4 @@ + o Minor bugfixes (portability): + - Stop using the PATH_MAX variable. The variable is not defined in + GNU Hurd which prevents Tor from being built. Fixes bug 23098; + bugfix on 0.3.1.1-alpha. |