tags 733605 upstream thanks Hi,
two of the three patches published by Andre Hentschel are now committed upstream: http://wiki.winehq.org/Hurd The patch for PATH_MAX does not yet seem to be accepted. Is it possible that the patch below can be applied, together with the upstream changes, in Debian until the PATH_MAX issue is resolved upstream? --- a/dlls/ntdll/directory.c +++ b/dlls/ntdll/directory.c @@ -3204,6 +3204,9 @@ RtlFreeHeap( GetProcessHeap(), 0, info ); } +#ifndef PATH_MAX +#define PATH_MAX 4096 +#endif static NTSTATUS read_changes_apc( void *user, PIO_STATUS_BLOCK iosb, NTSTATUS status, void **apc ) { struct read_changes_info *info = user; It looks like the committed patches are not present in the recent stable release, 1.6.2 from January 10, only in 1.7.10+ Thanks! -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

