Commit 8411f163 by J"orn Rennecke Committed by Joern Rennecke

basicio.c (PATH_MAX): Define only to _POSIX_PATH_MAX if that is defined.

	* basicio.c (PATH_MAX): Define only to _POSIX_PATH_MAX if that is
	defined.  Otherwise, try MAXPATHLEN.

From-SVN: r23736
parent d25a233e
Fri Nov 20 18:48:34 1998 J"orn Rennecke <amylaar@cygnus.co.uk>
* basicio.c (PATH_MAX): Define only to _POSIX_PATH_MAX if that is
defined. Otherwise, try MAXPATHLEN.
Thu Oct 22 14:37:35 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> Thu Oct 22 14:37:35 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir). * configure.in: Use AC_CONFIG_AUX_DIR($topsrcdir).
......
...@@ -38,7 +38,13 @@ ...@@ -38,7 +38,13 @@
#include "fileio.h" #include "fileio.h"
#ifndef PATH_MAX #ifndef PATH_MAX
#ifdef _POSIX_PATH_MAX
#define PATH_MAX _POSIX_PATH_MAX #define PATH_MAX _POSIX_PATH_MAX
#else
#ifdef MAXPATHLEN
#define PATH_MAX MAXPATHLEN
#endif
#endif
#endif #endif
static static
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment