Define PATH_MAX if not defined in ntfsprogs/ntfsmount.c and

libntfs/volume.c.  Needed to compile on DOS with djgpp.  (Christophe)
edge.strict_endians
antona 2005-08-26 11:44:11 +00:00
parent 605726b340
commit 190e59886f
3 changed files with 10 additions and 0 deletions

View File

@ -38,6 +38,8 @@ xx/xx/2005 - 1.12.0-WIP
it to be present. (Christophe)
- ntfscluster: fix incorrect volume usage calculation. (Szaka)
- ntfscluster, utils.c::mft_next_record(): fix gigaleak. (Szaka)
- Define PATH_MAX if not defined in ntfsprogs/ntfsmount.c and
libntfs/volume.c. Needed to compile on DOS with djgpp. (Christophe)
08/08/2005 - 1.11.2 - ntfsdecrypt now works and lots of fixes and improvements.

View File

@ -42,6 +42,10 @@
#include "logfile.h"
#include "dir.h"
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
/**
* ntfs_volume_alloc -
*

View File

@ -48,6 +48,10 @@
#include "index.h"
#include "utils.h"
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
typedef struct {
fuse_fill_dir_t filler;
void *buf;