summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2004-03-19 20:53:54 +0000
committerEric Andersen <andersen@codepoet.org>2004-03-19 20:53:54 +0000
commite7a1ee4f067e584be66d1c18a87a20ff64ac988e (patch)
tree388fd2c126f689c4c9a0bf22ffeaa9470010eba8
parent33d1ef86d171d0fbf058d664a3cb53842b08f2ae (diff)
Per patch from Stefan Holst, do not try to compile these
syscalls if they are not supported.
-rw-r--r--libc/sysdeps/linux/common/getresgid.c2
-rw-r--r--libc/sysdeps/linux/common/getresuid.c2
-rw-r--r--libc/sysdeps/linux/common/setresgid.c2
-rw-r--r--libc/sysdeps/linux/common/setresuid.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/getresgid.c b/libc/sysdeps/linux/common/getresgid.c
index c16d5384c..1c52cf8c0 100644
--- a/libc/sysdeps/linux/common/getresgid.c
+++ b/libc/sysdeps/linux/common/getresgid.c
@@ -9,6 +9,7 @@
#include "syscalls.h"
+#ifdef __NR_getresgid
#define __NR___syscall_getresgid __NR_getresgid
static inline _syscall3(int, __syscall_getresgid, __kernel_gid_t *, egid,
__kernel_gid_t *, rgid, __kernel_gid_t *, sgid);
@@ -26,3 +27,4 @@ int getresgid(gid_t * rgid, gid_t * egid, gid_t * sgid)
}
return result;
}
+#endif
diff --git a/libc/sysdeps/linux/common/getresuid.c b/libc/sysdeps/linux/common/getresuid.c
index ec7d6ebb1..635d2981d 100644
--- a/libc/sysdeps/linux/common/getresuid.c
+++ b/libc/sysdeps/linux/common/getresuid.c
@@ -9,6 +9,7 @@
#include "syscalls.h"
+#ifdef __NR_getresuid
#define __NR___syscall_getresuid __NR_getresuid
static inline _syscall3(int, __syscall_getresuid, __kernel_uid_t *, ruid,
__kernel_uid_t *, euid, __kernel_uid_t *, suid);
@@ -26,3 +27,4 @@ int getresuid(uid_t * ruid, uid_t * euid, uid_t * suid)
}
return result;
}
+#endif
diff --git a/libc/sysdeps/linux/common/setresgid.c b/libc/sysdeps/linux/common/setresgid.c
index 56e66a102..a9754ce27 100644
--- a/libc/sysdeps/linux/common/setresgid.c
+++ b/libc/sysdeps/linux/common/setresgid.c
@@ -9,6 +9,7 @@
#include "syscalls.h"
+#ifdef __NR_setresgid
#define __NR___syscall_setresgid __NR_setresgid
static inline _syscall3(int, __syscall_setresgid,
__kernel_gid_t, rgid, __kernel_gid_t, egid, __kernel_gid_t, sgid);
@@ -23,3 +24,4 @@ int setresgid(gid_t rgid, gid_t egid, gid_t sgid)
}
return (__syscall_setresgid(rgid, egid, sgid));
}
+#endif
diff --git a/libc/sysdeps/linux/common/setresuid.c b/libc/sysdeps/linux/common/setresuid.c
index 280ddcafc..bbd2b33b1 100644
--- a/libc/sysdeps/linux/common/setresuid.c
+++ b/libc/sysdeps/linux/common/setresuid.c
@@ -9,6 +9,7 @@
#include "syscalls.h"
+#ifdef __NR_setresuid
#define __NR___syscall_setresuid __NR_setresuid
static inline _syscall3(int, __syscall_setresuid,
__kernel_uid_t, rgid, __kernel_uid_t, egid, __kernel_uid_t, sgid);
@@ -23,3 +24,4 @@ int setresuid(uid_t ruid, uid_t euid, uid_t suid)
}
return (__syscall_setresuid(ruid, euid, suid));
}
+#endif