diff options
author | Roland McGrath <roland@gnu.org> | 2002-09-28 04:15:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-09-28 04:15:27 +0000 |
commit | 2c536abd23084ca04a7dc0a8b4ec1e5d23088c45 (patch) | |
tree | e28c33358bff7bb39a5bafb85a75ed43b24d74a0 /sysdeps | |
parent | 3899afcb760906f8d343a3e50728fa31f338fe20 (diff) | |
download | glibc-2c536abd23084ca04a7dc0a8b4ec1e5d23088c45.tar glibc-2c536abd23084ca04a7dc0a8b4ec1e5d23088c45.tar.gz glibc-2c536abd23084ca04a7dc0a8b4ec1e5d23088c45.tar.bz2 glibc-2c536abd23084ca04a7dc0a8b4ec1e5d23088c45.zip |
* sysdeps/unix/sysv/linux/x86_64/sysdep.h
(__NR_pread, __NR_pwrite): Define these to __NR_pread64, __NR_pwrite64
if not defined.
* sysdeps/unix/sysv/linux/powerpc/lchown.S
[SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)]: Use this condition
on chown compatibility symbol; use compat_symbol, not symbol_version.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/lchown.S | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/lchown.S b/sysdeps/unix/sysv/linux/powerpc/lchown.S index 804f6177ea..78f892ee39 100644 --- a/sysdeps/unix/sysv/linux/powerpc/lchown.S +++ b/sysdeps/unix/sysv/linux/powerpc/lchown.S @@ -1,5 +1,5 @@ /* lchown system call. - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -19,7 +19,7 @@ /* Some old kernel headers call lchown() 'chown'. The number is the same. */ - + #include <sysdep.h> #ifdef __NR_lchown @@ -30,6 +30,10 @@ ret PSEUDO_END(__lchown) weak_alias (__lchown, lchown) -#if defined PIC && defined DO_VERSIONING - symbol_version (__lchown, chown, GLIBC_2.0); + +#ifdef SHARED +#include <shlib-compat.h> +# if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1) +compat_symbol (libc, __lchown, chown, GLIBC_2_0) +# endif #endif |