From d22777146446ecaf8b4b9c0afd593d23c5c9766e Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Sat, 18 Dec 2010 05:11:29 +1000 Subject: Use limits.h for PATH_MAX We use PATH_MAX everywhere by including limits.h so there is no point in doing a check for it in a different header when dealing with FreeBSD's libfetch. Also, remove autoconf check for strings.h header as it is not used anywhere. Signed-off-by: Allan McRae Signed-off-by: Dan McGee --- lib/libalpm/error.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lib/libalpm/error.c') diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index d4c296fc..3d056265 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -22,10 +22,8 @@ /* TODO: needed for the libfetch stuff, unfortunately- we should kill it */ #include -/* the following two are needed on BSD for libfetch */ -#if defined(HAVE_SYS_SYSLIMITS_H) -#include /* PATH_MAX */ -#endif +/* the following two are needed for FreeBSD's libfetch */ +#include /* PATH_MAX */ #if defined(HAVE_SYS_PARAM_H) #include /* MAXHOSTNAMELEN */ #endif -- cgit v1.2.3-24-g4f1b