diff options
author | Andreas Jaeger <aj@suse.de> | 2002-08-23 09:29:27 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2002-08-23 09:29:27 +0000 |
commit | c0ad824e402c7afde1b46be1620c70107aa3eda9 (patch) | |
tree | 193845a8400499e3d01009631761793183a04bfe /misc/Makefile | |
parent | a7f5255ad25b5b7b637e3f2c1a648da2df0f1efc (diff) | |
download | glibc-c0ad824e402c7afde1b46be1620c70107aa3eda9.tar glibc-c0ad824e402c7afde1b46be1620c70107aa3eda9.tar.gz glibc-c0ad824e402c7afde1b46be1620c70107aa3eda9.tar.bz2 glibc-c0ad824e402c7afde1b46be1620c70107aa3eda9.zip |
Update.
2002-08-23 Andreas Jaeger <aj@suse.de>
* locale/loadarchive.c: Include <stdlib.h> for prototypes of
alloca, free, qsort.
* dlfcn/bug-dlsym1-lib1.c (foo): Add prototype to avoid warning.
* sysdeps/ieee754/flt-32/e_jnf.c: Remove unused variable.
* sysdeps/ieee754/ldbl-96/e_j0l.c: Likewise.
* sysdeps/generic/fgetxattr.c: New file.
* sysdeps/generic/flistxattr.c: New file.
* sysdeps/generic/fremovexattr.c: New file.
* sysdeps/generic/fsetxattr.c: New file.
* sysdeps/generic/getxattr.c: New file.
* sysdeps/generic/listxattr.c: New file.
* sysdeps/generic/lgetxattr.c: New file.
* sysdeps/generic/llistxattr.c: New file.
* sysdeps/generic/lremovexattr.c: New file.
* sysdeps/generic/lsetxattr.c: New file.
* sysdeps/generic/removexattr.c: New file.
* sysdeps/generic/setxattr.c: New file.
* misc/sys/xattr.h: New file, contributed by Christoph Hellwig
<hch@lst.de>.
* misc/Makefile (headers): Add sys/xattr.h.
(routines): Add *xattr calls.
* misc/Versions: Add *xattr calls with version 2.3.
* sysdeps/unix/sysv/linux/m68k/Versions: Remove *xattr syscalls.
* sysdeps/unix/sysv/linux/s390/s390-32/Versions: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/Versions: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/Versions: Likewise.
* sysdeps/unix/sysv/linux/x86_64/Versions: Likewise.
* sysdeps/unix/sysv/linux/ia64/Versions: Likewise.
* sysdeps/unix/sysv/linux/alpha/Versions: Likewise.
* sysdeps/unix/sysv/linux/arm/Versions: Likewise.
* sysdeps/powerpc/elf/libc-start.c
* sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c
Diffstat (limited to 'misc/Makefile')
-rw-r--r-- | misc/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/misc/Makefile b/misc/Makefile index a5cee879bc..a647c06d2f 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -29,7 +29,7 @@ headers := sys/uio.h bits/uio.h sys/ioctl.h bits/ioctls.h bits/ioctl-types.h \ sys/mman.h sys/param.h fstab.h mntent.h search.h err.h error.h \ sys/queue.h sysexits.h syscall.h sys/syscall.h sys/swap.h \ sys/select.h ustat.h sys/ustat.h bits/ustat.h sys/sysinfo.h \ - regexp.h bits/select.h bits/mman.h + regexp.h bits/select.h bits/mman.h sys/xattr.h routines := brk sbrk sstk ioctl \ readv writev \ @@ -58,7 +58,10 @@ routines := brk sbrk sstk ioctl \ hsearch hsearch_r tsearch lsearch \ err error ustat \ getsysstats dirname regexp \ - getloadavg getclktck + getloadavg getclktck \ + fgetxattr flistxattr fremovexattr fsetxattr getxattr \ + listxattr lgetxattr llistxattr lremovexattr lsetxattr \ + removexattr setxattr distribute := device-nrs.h |