diff options
author | ache <ache@FreeBSD.org> | 1995-04-27 19:56:37 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-04-27 19:56:37 +0000 |
commit | a7372e7b99b33efab9bd9df0d18d63bdb4f486a5 (patch) | |
tree | 94003272ecbbcb2a540e831d8f46a22f0f4bad6e | |
parent | 7fa24f3661a9755d07d17cb80ef52f053205886c (diff) | |
download | FreeBSD-src-a7372e7b99b33efab9bd9df0d18d63bdb4f486a5.zip FreeBSD-src-a7372e7b99b33efab9bd9df0d18d63bdb4f486a5.tar.gz |
Remove setr* hacks
-rw-r--r-- | gnu/usr.bin/perl/perl/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/perl/perl/config.h b/gnu/usr.bin/perl/perl/config.h index c834f14..4a66712 100644 --- a/gnu/usr.bin/perl/perl/config.h +++ b/gnu/usr.bin/perl/perl/config.h @@ -386,7 +386,7 @@ * available to change the real, effective and saved gid of the current * program. */ -#undef HAS_SETREGID /**/ +#define HAS_SETREGID /**/ /* HAS_SETREUID * This symbol, if defined, indicates that the setreuid routine is @@ -397,19 +397,19 @@ * available to change the real, effective and saved uid of the current * program. */ -#undef HAS_SETREUID /**/ +#define HAS_SETREUID /**/ /* HAS_SETRGID * This symbol, if defined, indicates that the setrgid routine is available * to change the real gid of the current program. */ -#undef HAS_SETRGID /**/ +#define HAS_SETRGID /**/ /* HAS_SETRUID * This symbol, if defined, indicates that the setruid routine is available * to change the real uid of the current program. */ -#undef HAS_SETRUID /**/ +#define HAS_SETRUID /**/ /* HAS_SOCKET |