summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2006-02-01 09:54:08 +0000
committerJakub Jelinek <jakub@redhat.com>2006-02-01 09:54:08 +0000
commit344be7574a05a54113711be8e4839c39ac46dec0 (patch)
tree6cbd723d03ab852766902567a47b695247e3bdd6
parent5eb4509a6651d19c7a28c4506d6aa582c9ee095a (diff)
-rw-r--r--fedora/glibc.spec.in54
1 files changed, 53 insertions, 1 deletions
diff --git a/fedora/glibc.spec.in b/fedora/glibc.spec.in
index b23cc01b0b..34205ef302 100644
--- a/fedora/glibc.spec.in
+++ b/fedora/glibc.spec.in
@@ -1,4 +1,4 @@
-%define glibcrelease 31
+%define glibcrelease 32
%define auxarches i586 i686 athlon sparcv9 alphaev6
%define prelinkarches noarch
%define xenarches i686 athlon
@@ -265,6 +265,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 438
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 444
+#define __NR_inotify_add_watch 445
+#define __NR_inotify_rm_watch 446
+#endif
%endif
%ifarch %{ix86}
#ifndef __NR_mq_open
@@ -278,6 +283,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 284
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 291
+#define __NR_inotify_add_watch 292
+#define __NR_inotify_rm_watch 293
+#endif
#ifndef __NR_openat
#define __NR_openat 295
#define __NR_mkdirat 296
@@ -321,6 +331,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 1270
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 1277
+#define __NR_inotify_add_watch 1278
+#define __NR_inotify_rm_watch 1279
+#endif
%endif
%ifarch ppc
#ifndef __NR_utimes
@@ -344,6 +359,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 272
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 275
+#define __NR_inotify_add_watch 276
+#define __NR_inotify_rm_watch 277
+#endif
#ifndef __NR_pselect6
#define __NR_pselect6 280
#define __NR_ppoll 281
@@ -364,6 +384,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 272
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 275
+#define __NR_inotify_add_watch 276
+#define __NR_inotify_rm_watch 277
+#endif
#ifndef __NR_pselect6
#define __NR_pselect6 280
#define __NR_ppoll 281
@@ -399,6 +424,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 281
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 284
+#define __NR_inotify_add_watch 285
+#define __NR_inotify_rm_watch 286
+#endif
%endif
%ifarch s390x
#ifndef __NR_timer_create
@@ -423,6 +453,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 281
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 284
+#define __NR_inotify_add_watch 285
+#define __NR_inotify_rm_watch 286
+#endif
%endif
%ifarch sparc sparcv9 sparc64
#ifndef __NR_mq_open
@@ -441,6 +476,11 @@ cat > override_headers/asm/unistd.h <<EOF
#define __NR_lstat64 132
#define __NR_stat64 139
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 151
+#define __NR_inotify_add_watch 152
+#define __NR_inotify_rm_watch 156
+#endif
#ifndef __NR_openat
#define __NR_openat 284
#define __NR_mkdirat 285
@@ -473,6 +513,11 @@ cat > override_headers/asm/unistd.h <<EOF
#ifndef __NR_waitid
#define __NR_waitid 247
#endif
+#ifndef __NR_inotify_init
+#define __NR_inotify_init 253
+#define __NR_inotify_add_watch 254
+#define __NR_inotify_rm_watch 255
+#endif
#ifndef __NR_openat
#define __NR_openat 257
#define __NR_mkdirat 258
@@ -1195,6 +1240,13 @@ rm -f *.filelist*
%endif
%changelog
+* Wed Feb 1 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-32
+- update from CVS
+ - 128-bit long double fixes for ppc{,64}, s390{,x} and sparc{,v9},
+ alpha 128-bit long double support
+- add inotify syscall numbers to the override <asm/unistd.h> headers
+ (#179366)
+
* Mon Jan 30 2006 Jakub Jelinek <jakub@redhat.com> 2.3.90-31
- update from CVS
- 128-bit long double on ppc, ppc64, s390, s390x and sparc{,v9}