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
parent
605726b340
commit
190e59886f
|
@ -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.
|
||||
|
||||
|
|
|
@ -42,6 +42,10 @@
|
|||
#include "logfile.h"
|
||||
#include "dir.h"
|
||||
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 4096
|
||||
#endif
|
||||
|
||||
/**
|
||||
* ntfs_volume_alloc -
|
||||
*
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue