Workaround for PATH_MAX usage on the Hurd. Taken from https://salsa.debian.org/debian/screen/-/blob/master/debian/patches/61-default-PATH_MAX-if-undefined-for-hurd.patch Description: Set PATH_MAX to 4096 if undefined Fixes FTBFS since 4.4.0 on GNU/Hurd. Updated to add one more occurrence for 4.5.0. Author: Axel Beckert Bug: https://savannah.gnu.org/bugs/?50089 Last-Updated: 2017-01-18 --- a/tty.sh +++ b/tty.sh @@ -1478,6 +1478,13 @@ return 0; } +/* + * Define PATH_MAX to 4096 if it's not defined, like on GNU/Hurd + */ + +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif int CheckTtyname (char *tty) { --- a/screen.h +++ b/screen.h @@ -109,6 +109,13 @@ # define DEFAULT_BUFFERFILE "/tmp/screen-exchange" #endif +/* + * Define PATH_MAX to 4096 if it's not defined, like on GNU/Hurd + */ + +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif #if defined(hpux) && !(defined(VSUSP) && defined(VDSUSP) && defined(VWERASE) && defined(VLNEXT)) # define HPUX_LTCHARS_HACK able class='tabs'> aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/ccache.scm
AgeCommit message (Expand)Author
2021-03-24gnu: ccache: Update to 4.2....* gnu/packages/ccache.scm (ccache): Update to 4.2. [build-system]: Switch to cmake-build-system. [inputs]: Add zstd:lib. [arguments]: Move substitution before change of directory and add phase to set HOME variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Greg Hogan
2020-10-03gnu: ccache: Update to 3.7.12....* gnu/packages/ccache.scm (ccache): Update to 3.7.12. Tobias Geerinckx-Rice
2020-07-23gnu: ccache: Update to 3.7.11....* gnu/packages/ccache.scm (ccache): Update to 3.7.11. Tobias Geerinckx-Rice
2020-06-29gnu: ccache: Update to 3.7.10....* gnu/packages/ccache.scm (ccache): Update to 3.7.10. Tobias Geerinckx-Rice
2020-05-30gnu: ccache: Update to 3.7.9....* gnu/packages/ccache.scm (ccache): Update to 3.7.9. Tobias Geerinckx-Rice
2020-03-07gnu: ccache: Fix indentation...* gnu/packages/ccache.scm (ccache): Fix indentation Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vincent Legoll
2020-03-07gnu: ccache: Update to 3.7.7....gnu/packages/ccache.scm (ccache): Update to 3.7.7, update homepage to ccache.dev, get source code from github, remove fortran 77 from description. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Vincent Legoll
2019-08-22gnu: ccache: Update to 3.6....* gnu/packages/ccache.scm (ccache): Update to 3.6. Tobias Geerinckx-Rice