PATH_MAX fixes

This commit is contained in:
John Cupitt 2008-12-08 14:54:53 +00:00
parent af7c8651db
commit c936389bfc
3 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,7 @@
- updated docs
- interpolators use type introspection
- added vips --list classes, does formats too
- include sys/param.h to get PATH_MAX in more places
11/9/08 started 7.16.3
- oop typo in manpage for im_project()

View File

@ -45,6 +45,9 @@
#include <stdio.h>
#include <stdlib.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif /*HAVE_SYS_PARAM_H*/
#include <string.h>
#include <stdarg.h>
#include <limits.h>

View File

@ -62,6 +62,9 @@
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif /*HAVE_SYS_PARAM_H*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>