diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 11:24:48 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-04-20 11:24:48 +0000 |
commit | 99bdd83ce90548467e0e534fe626a3b04bb645b7 (patch) | |
tree | d555a6a4f909d0c2164f68ff0866af1a0e84a075 /dmake/win95 | |
parent | a4a01e46c7eb3f9d61b56f530646117d556c0e20 (diff) |
INTEGRATION: CWS dmake43p01 (1.1.1.1.132); FILE MERGED
2005/04/17 16:47:03 vq 1.1.1.1.132.1: Issue number: 47135
Submitted by: shay@openoffice.org
Define _POSIX_NAME_MAX and _POSIX_PATH_MAX using the compiler defaults.
Diffstat (limited to 'dmake/win95')
-rw-r--r-- | dmake/win95/borland/sysintf.h | 6 | ||||
-rw-r--r-- | dmake/win95/microsft/sysintf.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/dmake/win95/borland/sysintf.h b/dmake/win95/borland/sysintf.h index bae67b65e967..cc2df9ec5e6a 100644 --- a/dmake/win95/borland/sysintf.h +++ b/dmake/win95/borland/sysintf.h @@ -1,4 +1,4 @@ -/* RCS $Id: sysintf.h,v 1.1.1.1 2000-09-22 15:33:36 hr Exp $ +/* RCS $Id: sysintf.h,v 1.2 2006-04-20 12:23:38 hr Exp $ -- -- SYNOPSIS -- Interfaces for sysintf.c @@ -48,9 +48,9 @@ extern char * getcwd(); #ifdef _POSIX_NAME_MAX #undef _POSIX_NAME_MAX #endif -#define _POSIX_NAME_MAX 12 +#define _POSIX_NAME_MAX _MAX_FNAME #ifdef _POSIX_PATH_MAX #undef _POSIX_PATH_MAX #endif -#define _POSIX_PATH_MAX 64 +#define _POSIX_PATH_MAX _MAX_PATH diff --git a/dmake/win95/microsft/sysintf.h b/dmake/win95/microsft/sysintf.h index 426be8c6059d..e8ce758319fd 100644 --- a/dmake/win95/microsft/sysintf.h +++ b/dmake/win95/microsft/sysintf.h @@ -1,4 +1,4 @@ -/* RCS $Id: sysintf.h,v 1.1.1.1 2000-09-22 15:33:37 hr Exp $ +/* RCS $Id: sysintf.h,v 1.2 2006-04-20 12:24:48 hr Exp $ -- -- SYNOPSIS -- Interfaces for sysintf.c @@ -50,7 +50,7 @@ extern char * getcwd(); #ifdef _POSIX_NAME_MAX #undef _POSIX_NAME_MAX #endif -#define _POSIX_NAME_MAX 12 +#define _POSIX_NAME_MAX _MAX_FNAME #ifdef _POSIX_PATH_MAX #undef _POSIX_PATH_MAX |