2010-01-25 Grégoire Sutre <gregoire.sutre@gmail.com>

* configure.ac: Check for `limits.h'.
	* util/misc.c: Include `<limits.h>' (for PATH_MAX).
This commit is contained in:
Grégoire Sutre 2010-01-25 10:06:55 +01:00
parent 67951a534f
commit ea4a7e35eb
3 changed files with 9 additions and 1 deletions

View file

@ -30,6 +30,9 @@
#include <sys/time.h>
#include <unistd.h>
#include <time.h>
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif
#include <grub/kernel.h>
#include <grub/misc.h>