Fixed compile error on GNU Hurd. Issue reported by Mark Hindly.

This commit is contained in:
Jesse 2022-03-30 00:00:45 -03:00
parent dfb227ce77
commit 14d8d25269
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,8 @@
sysvinit (3.03) unreleased; urgency=low
* Fixed formatting in init.8 man page.
Patch provided by Mark Hindley.
* Fixed compile error on GNU Hurd due to missing MAX_PATH definition.
Error reported by Mark Hindly.
sysvinit (3.02) released; urgency=low
* Added q and Q flags to synopsis in shutdown manual page.

View File

@ -10,3 +10,7 @@
#define FALSE 0
#endif
#ifndef PATH_MAX
#define PATH_MAX 2048
#endif