projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20b83f8
)
[STAT_MACROS_BROKEN] (S_ISLNK): Undefine.
author
Jim Meyering
<jim@meyering.net>
Sun, 19 Sep 1999 16:46:50 +0000
(16:46 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sun, 19 Sep 1999 16:46:50 +0000
(16:46 +0000)
(S_ISLNK): Define if necessary.
This is necessary on a NEC SX-4 with SUPER-UX 9.1.
lib/lchown.c
patch
|
blob
|
history
diff --git
a/lib/lchown.c
b/lib/lchown.c
index 9c420bb0922fe3eef3c29e13cadf5d5f1d0004a4..391f5ca984ad24fe431cb5d0e91dcf56b704c24e 100644
(file)
--- a/
lib/lchown.c
+++ b/
lib/lchown.c
@@
-27,6
+27,14
@@
extern int errno;
#endif
#include "lchown.h"
+#ifdef STAT_MACROS_BROKEN
+# undef S_ISLNK
+#endif
+#if !defined(S_ISLNK) && defined(S_IFLNK)
+# define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
+#endif
+
+
/* Declare chown to avoid a warning. Don't include unistd.h,
because it may have a conflicting prototype for lchown. */
int chown ();