From 4911e67aa86c5e6239dc688e45d41fb9a736190d Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 12 Aug 2001 18:46:20 +0000 Subject: Guard the above pathconf-using definitions with `#if HAVE_PATHCONF' rather than with `#ifdef _POSIX_VERSION'. --- src/pathchk.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pathchk.c b/src/pathchk.c index bba26d5db..e62a3b588 100644 --- a/src/pathchk.c +++ b/src/pathchk.c @@ -58,7 +58,7 @@ extern int errno; #define AUTHORS "David MacKenzie and Jim Meyering" -#ifdef _POSIX_VERSION +#if HAVE_PATHCONF # ifndef PATH_MAX # define PATH_MAX_FOR(p) pathconf_wrapper ((p), _PC_PATH_MAX) # endif /* not PATH_MAX */ @@ -66,7 +66,7 @@ extern int errno; # define NAME_MAX_FOR(p) pathconf_wrapper ((p), _PC_NAME_MAX); # endif /* not NAME_MAX */ -#else /* not _POSIX_VERSION */ +#else # include # ifndef PATH_MAX @@ -85,7 +85,7 @@ extern int errno; # endif /* not MAXNAMLEN */ # endif /* not NAME_MAX */ -#endif /* not _POSIX_VERSION */ +#endif #ifndef _POSIX_PATH_MAX # define _POSIX_PATH_MAX 255 -- cgit v1.2.3-54-g00ecf