From 2f4f18b9bbfd4aee8a63a747672e81dd0ea9ec49ebaed3a99baa3fcc1f601d24 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Tue, 29 Dec 2009 23:35:57 +0000 Subject: [PATCH 001/129] Accepting request 27392 from Base:System Copy from Base:System/linux-glibc-devel based on submit request 27392 from user coolo OBS-URL: https://build.opensuse.org/request/show/27392 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=1 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 76 + linux-glibc-devel-2.6.32.tar.bz2 | 3 + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch | 68 + linux-glibc-devel.SuSE.TIOCGDEV.patch | 60 + linux-glibc-devel.changes | 4492 +++++++++++++++++++++ linux-glibc-devel.spec | 177 + ready | 0 9 files changed, 4900 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-2.6.32.tar.bz2 create mode 100644 linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch create mode 100644 linux-glibc-devel.SuSE.TIOCGDEV.patch create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec create mode 100644 ready diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..eedb96e --- /dev/null +++ b/install_all.sh @@ -0,0 +1,76 @@ +#!/bin/bash +# bash -x $0 linux-1.2.3.tar.bz2 +set -e +kernel=$1 +if ! test -f "$1" +then + echo "Usage: ${0##*/} linux-1.2.3.tar.gz" + exit 1 +fi +kernel_dir="`tar -tf $1 | sed '1 {s@^.*[[:blank:]]@@;s@linux-@@;s@/.*$@@;s@^\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)@\1@;p;Q}'`" +header_dir="$PWD/linux-glibc-devel-$kernel_dir" +if test -d "$kernel_dir" +then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir" +then + echo "$header_dir exists, remove it first." + exit 1 +fi +tar -xf $1 +pushd linux-${kernel_dir} +cp Makefile $header_dir +/usr/bin/make O="$header_dir" headers_install_all +# kvm.h and aout.h are only installed if SRCARCH is an architecture +# that has support for them. As the package is noarch we need to make +# sure we get the full support on x86 +/usr/bin/make SRCARCH=x86 O="$header_dir" headers_install_all +popd +pushd "$header_dir" +for asm in \ + alpha \ + avr32 \ + blackfin \ + cris \ + frv \ + h8300 \ + m32r \ + m68k \ + m68knommu \ + mips \ + mn10300 \ + sh \ + sh64 \ + v850 \ + xtensa \ +; do + rm -rf usr/include/asm-$asm +done +rm Makefile +find -type f -name "..install.cmd" -print0 | xargs -0 --no-run-if-empty rm +find -type f -name ".install" -print0 | xargs -0 --no-run-if-empty rm +#------------------------------------------------------------------- +#Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +#- Remove the kernel version of drm headers, they conflict +# with the libdrm ones, and those are slightly newer. +# +rm -rf usr/include/drm/ +for dir in * +do + case "$dir" in + usr) ;; + *) + if test -d "$dir" + then + rm -rf "$dir" + fi + ;; + esac +done +popd +du -sh "$header_dir/usr" +tar -cjf "$header_dir.tar.bz2" "${header_dir##*/}" +rm -rf $header_dir diff --git a/linux-glibc-devel-2.6.32.tar.bz2 b/linux-glibc-devel-2.6.32.tar.bz2 new file mode 100644 index 0000000..3c0b461 --- /dev/null +++ b/linux-glibc-devel-2.6.32.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e46f503f6febbc725bb061d3c9765e2dc4f16daf4bce056cd778a528031ab4 +size 677106 diff --git a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch new file mode 100644 index 0000000..be61a5a --- /dev/null +++ b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch @@ -0,0 +1,68 @@ +these packages use the obsolete SO_BSDCOMPAT: +bind +dietlibc (#define only) +pidgin +python +strace +syslogd + +--- usr/include/asm-arm/socket.h ++++ usr/include/asm-arm/socket.h +@@ -21,7 +21,6 @@ + #define SO_NO_CHECK 11 + #define SO_PRIORITY 12 + #define SO_LINGER 13 +-#define SO_BSDCOMPAT 14 + /* To add :#define SO_REUSEPORT 15 */ + #define SO_PASSCRED 16 + #define SO_PEERCRED 17 +--- usr/include/asm-generic/socket.h ++++ usr/include/asm-generic/socket.h +@@ -21,7 +21,6 @@ + #define SO_NO_CHECK 11 + #define SO_PRIORITY 12 + #define SO_LINGER 13 +-#define SO_BSDCOMPAT 14 + /* To add :#define SO_REUSEPORT 15 */ + + #ifndef SO_PASSCRED /* powerpc only differs in these */ +--- usr/include/asm-ia64/socket.h ++++ usr/include/asm-ia64/socket.h +@@ -30,7 +30,6 @@ + #define SO_NO_CHECK 11 + #define SO_PRIORITY 12 + #define SO_LINGER 13 +-#define SO_BSDCOMPAT 14 + /* To add :#define SO_REUSEPORT 15 */ + #define SO_PASSCRED 16 + #define SO_PEERCRED 17 +--- usr/include/asm-parisc/socket.h ++++ usr/include/asm-parisc/socket.h +@@ -30,7 +30,6 @@ + + #define SO_NO_CHECK 0x400b + #define SO_PRIORITY 0x400c +-#define SO_BSDCOMPAT 0x400e + #define SO_PASSCRED 0x4010 + #define SO_PEERCRED 0x4011 + #define SO_TIMESTAMP 0x4012 +--- usr/include/asm-powerpc/socket.h ++++ usr/include/asm-powerpc/socket.h +@@ -28,7 +28,6 @@ + #define SO_NO_CHECK 11 + #define SO_PRIORITY 12 + #define SO_LINGER 13 +-#define SO_BSDCOMPAT 14 + /* To add :#define SO_REUSEPORT 15 */ + #define SO_RCVLOWAT 16 + #define SO_SNDLOWAT 17 +--- usr/include/asm-s390/socket.h ++++ usr/include/asm-s390/socket.h +@@ -29,7 +29,6 @@ + #define SO_NO_CHECK 11 + #define SO_PRIORITY 12 + #define SO_LINGER 13 +-#define SO_BSDCOMPAT 14 + /* To add :#define SO_REUSEPORT 15 */ + #define SO_PASSCRED 16 + #define SO_PEERCRED 17 diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch new file mode 100644 index 0000000..1d20f6d --- /dev/null +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -0,0 +1,60 @@ +--- usr/include/asm-arm/ioctls.h ++++ usr/include/asm-arm/ioctls.h +@@ -52,6 +52,7 @@ + #define TCSETSF2 _IOW('T',0x2D, struct termios2) + #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + + #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ + #define FIOCLEX 0x5451 +--- usr/include/asm-generic/ioctls.h ++++ usr/include/asm-generic/ioctls.h +@@ -65,6 +65,7 @@ + #define TIOCSRS485 0x542F + #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T', 0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ + #define TCSETX 0x5433 + #define TCSETXF 0x5434 +--- usr/include/asm-ia64/ioctls.h ++++ usr/include/asm-ia64/ioctls.h +@@ -59,6 +59,7 @@ + #define TCSETSF2 _IOW('T',0x2D, struct termios2) + #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + + #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ + #define FIOCLEX 0x5451 +--- usr/include/asm-parisc/ioctls.h ++++ usr/include/asm-parisc/ioctls.h +@@ -52,6 +52,7 @@ + #define TCSETSF2 _IOW('T',0x2D, struct termios2) + #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + + #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ + #define FIOCLEX 0x5451 +--- usr/include/asm-powerpc/ioctls.h ++++ usr/include/asm-powerpc/ioctls.h +@@ -93,6 +93,7 @@ + #define TIOCSRS485 0x542f + #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + + #define TIOCSERCONFIG 0x5453 + #define TIOCSERGWILD 0x5454 +--- usr/include/asm-s390/ioctls.h ++++ usr/include/asm-s390/ioctls.h +@@ -60,6 +60,7 @@ + #define TCSETSF2 _IOW('T',0x2D, struct termios2) + #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ + #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + + #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ + #define FIOCLEX 0x5451 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..c47a19e --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,4492 @@ +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..2386a78 --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,177 @@ +# +# spec file for package linux-glibc-devel (Version 2.6.32) +# +# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# + +# norootforbuild + + +Name: linux-glibc-devel +License: GPLv2 +Summary: Linux headers for userspace development +Group: Development/Libraries/C and C++ +BuildArch: noarch +# this confusing version number has no meaning +Version: 2.6.32 +Release: 1 +Url: http://www.kernel.org/ +BuildRoot: %{_tmppath}/%{name}-%{version}-build +Provides: kernel-headers, linux-kernel-headers = %{version}-%{release} +Obsoletes: linux-kernel-headers < %{version}-%{release} +PreReq: coreutils +Source: %{name}-%{version}.tar.bz2 +Source1: install_all.sh +Patch0: linux-glibc-devel.SuSE.TIOCGDEV.patch +Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires kernel-source +instead. + + + +%prep +%setup -q +%patch0 +%patch1 + +%build +cat > version.h <<-BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include /usr/include/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "To build kernel modules please do the following:" +#error "" +#error " o Have the kernel sources installed" +#error "" +#error " o Make sure that the symbolic link" +#error " /lib/modules/\`uname -r\`/build exists and points to" +#error " the matching kernel source directory" +#error "" +#error " o When compiling, make sure to use the following" +#error " compiler option to use the correct include files:" +#error "" +#error " -I/lib/modules/\`uname -r\`/build/include" +#error "" +#error " instead of" +#error "" +#error " -I/usr/include/linux" +#error "" +#error " Please adjust the Makefile accordingly." +#error "=======================================================" +#else +#define UTS_RELEASE "%{version}" +#define LINUX_VERSION_CODE `bash -c 'v="%{version}";read a b c d <<< "${v//./ }";echo "$(( (($a) << 16) + (($b) << 8) + ($c) ))"'` +#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) +#endif +BOGUS +cat version.h + +%install +rm -rf $RPM_BUILD_ROOT +mkdir $RPM_BUILD_ROOT +cp -a usr $RPM_BUILD_ROOT +cp -a version.h $RPM_BUILD_ROOT/usr/include/linux/ +# Temporarily exclude i2c header files, which are provided by i2c-tools instead +rm -fv $RPM_BUILD_ROOT/usr/include/linux/i2c-dev.h +# resolve file conflict with glibc for now +rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi* +# Replace the directory /usr/include/asm with a symlink. +# libc contained a symlink /usr/include/asm into kernel-source up to 7.0 (2.1.3) +# glibc-devel contained a symlink /usr/include/asm into kernel-source in 7.1 (2.2) +# glibc-devel contained a directory /usr/include/asm from 7.2 (2.2.2) up to 10.1/SLES10 (2.4) +# The directory moved from glibc-devel to linux-kernel-headers in 10.2 (2.6.18.2) +# The directory turned into a symlink in 10.3 (2.6.22) +# rpm will remove obsolete files after the post install scripts +# A trigger will run after the /usr/include/asm was removed +# Create a dummy symlink now for rpmlint happiness, we %ghost this and create +# a proper symlink during %post: +ln -sfn asm-dummy $RPM_BUILD_ROOT/usr/include/asm + +%postun +if test "$1" = 0 +then + rm -f usr/include/asm +fi +exit 0 + +%post +asm_link= +case "$(uname -m)" in + alpha*) asm_link=alpha ;; + ppc*) asm_link=powerpc ;; + s390*) asm_link=s390 ;; + ia64) asm_link=ia64 ;; + *arm*) asm_link=arm ;; + parisc) asm_link=parisc ;; + *mips*) asm_link=mips ;; + sparc*) asm_link=sparc ;; + *) asm_link=x86 ;; +esac +if test -L usr/include/asm +then + case "$(readlink usr/include/asm)" in + *../src/linux/include*) + echo "/usr/include/asm points to kernel-source, waiting for triggerpostun to symlink to asm-$asm_link" + rm -fv usr/include/asm + exit 0 + ;; + esac + : symlink is ok, update it below in case of an arch change +elif test -d usr/include/asm +then + echo "/usr/include/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" + exit 0 +fi +ln -sfn asm-$asm_link usr/include/asm +exit 0 + +%triggerpostun -- linux-kernel-headers < 2.6.22 , glibc-devel < 2.5, libc < 2.2 +asm_link= +case "$(uname -m)" in + alpha*) asm_link=alpha ;; + ppc*) asm_link=powerpc ;; + s390*) asm_link=s390 ;; + ia64) asm_link=ia64 ;; + *arm*) asm_link=arm ;; + parisc) asm_link=parisc ;; + *mips*) asm_link=mips ;; + sparc*) asm_link=sparc ;; + *) asm_link=x86 ;; +esac +ln -sfn asm-$asm_link usr/include/asm +exit 0 + +%clean +rm -rf $RPM_BUILD_ROOT + +%files +%defattr(-,root,root) +%{_prefix}/include/* +%ghost %{_prefix}/include/asm + +%changelog diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4 -- 2.49.0 From eabe15654069f5a48fe6aea79f99612c75354ef6895574d4435ff93fca4d77bb Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Tue, 12 Jan 2010 14:49:37 +0000 Subject: [PATCH 002/129] Accepting request 29002 from Base:System Copy from Base:System/linux-glibc-devel based on submit request 29002 from user coolo OBS-URL: https://build.opensuse.org/request/show/29002 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=2 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 9 +++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index c47a19e..05e4c59 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + ------------------------------------------------------------------- Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 2386a78..d46fc7f 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel (Version 2.6.32) # -# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -25,11 +25,12 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 2.6.32 -Release: 1 +Release: 2 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -Provides: kernel-headers, linux-kernel-headers = %{version}-%{release} -Obsoletes: linux-kernel-headers < %{version}-%{release} +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers <= %{version} PreReq: coreutils Source: %{name}-%{version}.tar.bz2 Source1: install_all.sh -- 2.49.0 From 7b6dbfb72a409ca80036299a418eb71f5928126e4ae34198ed60af9cb90bb257 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 18 Mar 2010 15:07:09 +0000 Subject: [PATCH 003/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 3.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=7a295ea5c789d4e2b70c7dccea601765 -- 2.49.0 From 6d792afb2614b25b9735b7880486861f2a3bf22d0ee4711cbd7bfcb73d1b1a60 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Thu, 18 Mar 2010 15:07:09 +0000 Subject: [PATCH 004/129] OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=3 --- ready | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 ready diff --git a/ready b/ready deleted file mode 100644 index 473a0f4..0000000 -- 2.49.0 From 24220e78e7a8bbd12d786484b45153c8722541186e26a69f097845a2cc3964aa Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Tue, 11 May 2010 14:20:00 +0000 Subject: [PATCH 005/129] OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=17 --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 05e4c59..4c3ef66 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + ------------------------------------------------------------------- Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index d46fc7f..0afa0a6 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -151,7 +151,7 @@ fi ln -sfn asm-$asm_link usr/include/asm exit 0 -%triggerpostun -- linux-kernel-headers < 2.6.22 , glibc-devel < 2.5, libc < 2.2 +%triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 asm_link= case "$(uname -m)" in alpha*) asm_link=alpha ;; -- 2.49.0 From 7bb2b4d1e46d237e3847dc5d6b2905c884122737104e32645747071c6e15c49d Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Thu, 13 May 2010 23:05:41 +0000 Subject: [PATCH 006/129] Accepting request 39811 from Base:System checked in (request 39811) OBS-URL: https://build.opensuse.org/request/show/39811 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=18 --- linux-glibc-devel.changes | 6 ------ linux-glibc-devel.spec | 2 +- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4c3ef66..05e4c59 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,9 +1,3 @@ -------------------------------------------------------------------- -Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz - -- Fix /usr/include/asm symlink loss during upgrade from - linux-kernel-headers [bnc#591082, bnc#571604] - ------------------------------------------------------------------- Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 0afa0a6..d46fc7f 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -151,7 +151,7 @@ fi ln -sfn asm-$asm_link usr/include/asm exit 0 -%triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 +%triggerpostun -- linux-kernel-headers < 2.6.22 , glibc-devel < 2.5, libc < 2.2 asm_link= case "$(uname -m)" in alpha*) asm_link=alpha ;; -- 2.49.0 From f8e45183991ce9b354b1f1a18505fe98577a56b79c20c11b381c6e6304029510 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 13 May 2010 23:05:43 +0000 Subject: [PATCH 007/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 4.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=704c9b17448abbb5c8513407e274761a --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 05e4c59..4c3ef66 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + ------------------------------------------------------------------- Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index d46fc7f..1e0cf0b 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,7 +25,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 2.6.32 -Release: 2 +Release: 3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers @@ -151,7 +151,7 @@ fi ln -sfn asm-$asm_link usr/include/asm exit 0 -%triggerpostun -- linux-kernel-headers < 2.6.22 , glibc-devel < 2.5, libc < 2.2 +%triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 asm_link= case "$(uname -m)" in alpha*) asm_link=alpha ;; -- 2.49.0 From c70b91cd2f533c0ce57de19f186afa77fc012987d6e16cabbddc5ec3608c3e0e Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sat, 3 Jul 2010 23:46:26 +0000 Subject: [PATCH 008/129] - update kernel headers to 2.6.34 for proper O_SYNC support OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=19 --- linux-glibc-devel-2.6.32.tar.bz2 | 3 --- linux-glibc-devel-2.6.34.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-2.6.32.tar.bz2 create mode 100644 linux-glibc-devel-2.6.34.tar.bz2 diff --git a/linux-glibc-devel-2.6.32.tar.bz2 b/linux-glibc-devel-2.6.32.tar.bz2 deleted file mode 100644 index 3c0b461..0000000 --- a/linux-glibc-devel-2.6.32.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78e46f503f6febbc725bb061d3c9765e2dc4f16daf4bce056cd778a528031ab4 -size 677106 diff --git a/linux-glibc-devel-2.6.34.tar.bz2 b/linux-glibc-devel-2.6.34.tar.bz2 new file mode 100644 index 0000000..2c82145 --- /dev/null +++ b/linux-glibc-devel-2.6.34.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118293832a705e1d3a23642fb4efdd9b562fa83ee8ff3da3647b4eb005e9d324 +size 705390 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4c3ef66..b337ca6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + ------------------------------------------------------------------- Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 1e0cf0b..a467174 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -24,8 +24,8 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.32 -Release: 3 +Version: 2.6.34 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From c3bc8305036275d96fe2569b6c091c8b5a5b09bfdaec392652293963d2fbcd4a Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 4 Jul 2010 14:13:26 +0000 Subject: [PATCH 009/129] Accepting request 42457 from home:jengelh:sparc Copy from home:jengelh:sparc/linux-glibc-devel via accept of submit request 42457 revision 4. Request was accepted with message: reviewed ok. OBS-URL: https://build.opensuse.org/request/show/42457 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=20 --- linux-glibc-devel.SuSE.TIOCGDEV.patch | 46 +++++++++++++++++++++++---- linux-glibc-devel.changes | 5 +++ 2 files changed, 45 insertions(+), 6 deletions(-) diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch index 1d20f6d..ac93ada 100644 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -1,4 +1,16 @@ ---- usr/include/asm-arm/ioctls.h +--- + usr/include/asm-arm/ioctls.h | 1 + + usr/include/asm-generic/ioctls.h | 1 + + usr/include/asm-ia64/ioctls.h | 1 + + usr/include/asm-parisc/ioctls.h | 1 + + usr/include/asm-powerpc/ioctls.h | 1 + + usr/include/asm-s390/ioctls.h | 1 + + usr/include/asm-sparc/ioctls.h | 1 + + 7 files changed, 7 insertions(+) + +Index: usr/include/asm-arm/ioctls.h +=================================================================== +--- usr/include/asm-arm/ioctls.h.orig +++ usr/include/asm-arm/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -8,7 +20,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-generic/ioctls.h +Index: usr/include/asm-generic/ioctls.h +=================================================================== +--- usr/include/asm-generic/ioctls.h.orig +++ usr/include/asm-generic/ioctls.h @@ -65,6 +65,7 @@ #define TIOCSRS485 0x542F @@ -18,7 +32,9 @@ #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ #define TCSETX 0x5433 #define TCSETXF 0x5434 ---- usr/include/asm-ia64/ioctls.h +Index: usr/include/asm-ia64/ioctls.h +=================================================================== +--- usr/include/asm-ia64/ioctls.h.orig +++ usr/include/asm-ia64/ioctls.h @@ -59,6 +59,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -28,7 +44,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-parisc/ioctls.h +Index: usr/include/asm-parisc/ioctls.h +=================================================================== +--- usr/include/asm-parisc/ioctls.h.orig +++ usr/include/asm-parisc/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -38,7 +56,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-powerpc/ioctls.h +Index: usr/include/asm-powerpc/ioctls.h +=================================================================== +--- usr/include/asm-powerpc/ioctls.h.orig +++ usr/include/asm-powerpc/ioctls.h @@ -93,6 +93,7 @@ #define TIOCSRS485 0x542f @@ -48,7 +68,9 @@ #define TIOCSERCONFIG 0x5453 #define TIOCSERGWILD 0x5454 ---- usr/include/asm-s390/ioctls.h +Index: usr/include/asm-s390/ioctls.h +=================================================================== +--- usr/include/asm-s390/ioctls.h.orig +++ usr/include/asm-s390/ioctls.h @@ -60,6 +60,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -58,3 +80,15 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 +Index: usr/include/asm-sparc/ioctls.h +=================================================================== +--- usr/include/asm-sparc/ioctls.h.orig ++++ usr/include/asm-sparc/ioctls.h +@@ -80,6 +80,7 @@ + /* Get minor device of a pty master's FD -- Solaris equiv is ISPTM */ + #define TIOCGPTN _IOR('t', 134, unsigned int) /* Get Pty Number */ + #define TIOCSPTLCK _IOW('t', 135, int) /* Lock/unlock PTY */ ++#define TIOCGDEV _IOW('t', 0x32, unsigned int) + + /* Little f */ + #define FIOCLEX _IO('f', 1) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b337ca6..570c35e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -3,6 +3,11 @@ Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de - update kernel headers to 2.6.34 for proper O_SYNC support +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + ------------------------------------------------------------------- Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz -- 2.49.0 From e0dbaf68121d3ced4d40114f13ff912fff701acbecefc091de621fdafd42dfc0 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 5 Jul 2010 08:34:40 +0000 Subject: [PATCH 010/129] Accepting request 42456 from Base:System checked in (request 42456) OBS-URL: https://build.opensuse.org/request/show/42456 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=21 --- linux-glibc-devel-2.6.32.tar.bz2 | 3 +++ linux-glibc-devel-2.6.34.tar.bz2 | 3 --- linux-glibc-devel.changes | 5 ----- linux-glibc-devel.spec | 4 ++-- 4 files changed, 5 insertions(+), 10 deletions(-) create mode 100644 linux-glibc-devel-2.6.32.tar.bz2 delete mode 100644 linux-glibc-devel-2.6.34.tar.bz2 diff --git a/linux-glibc-devel-2.6.32.tar.bz2 b/linux-glibc-devel-2.6.32.tar.bz2 new file mode 100644 index 0000000..3c0b461 --- /dev/null +++ b/linux-glibc-devel-2.6.32.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78e46f503f6febbc725bb061d3c9765e2dc4f16daf4bce056cd778a528031ab4 +size 677106 diff --git a/linux-glibc-devel-2.6.34.tar.bz2 b/linux-glibc-devel-2.6.34.tar.bz2 deleted file mode 100644 index 2c82145..0000000 --- a/linux-glibc-devel-2.6.34.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:118293832a705e1d3a23642fb4efdd9b562fa83ee8ff3da3647b4eb005e9d324 -size 705390 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 570c35e..e340651 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,8 +1,3 @@ -------------------------------------------------------------------- -Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de - -- update kernel headers to 2.6.34 for proper O_SYNC support - ------------------------------------------------------------------- Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index a467174..1e0cf0b 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -24,8 +24,8 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.34 -Release: 1 +Version: 2.6.32 +Release: 3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 6e7cc013145024cd940abf9c9ca86cccc2bca0f3b629f1c67bd11e373152ded2 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Mon, 5 Jul 2010 08:34:42 +0000 Subject: [PATCH 011/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 5.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=fbd1b9056154ee4cf5322f94030322c9 --- linux-glibc-devel-2.6.32.tar.bz2 | 3 --- linux-glibc-devel-2.6.34.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-2.6.32.tar.bz2 create mode 100644 linux-glibc-devel-2.6.34.tar.bz2 diff --git a/linux-glibc-devel-2.6.32.tar.bz2 b/linux-glibc-devel-2.6.32.tar.bz2 deleted file mode 100644 index 3c0b461..0000000 --- a/linux-glibc-devel-2.6.32.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78e46f503f6febbc725bb061d3c9765e2dc4f16daf4bce056cd778a528031ab4 -size 677106 diff --git a/linux-glibc-devel-2.6.34.tar.bz2 b/linux-glibc-devel-2.6.34.tar.bz2 new file mode 100644 index 0000000..2c82145 --- /dev/null +++ b/linux-glibc-devel-2.6.34.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118293832a705e1d3a23642fb4efdd9b562fa83ee8ff3da3647b4eb005e9d324 +size 705390 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index e340651..570c35e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + ------------------------------------------------------------------- Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 1e0cf0b..3b5c02f 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,5 +1,5 @@ # -# spec file for package linux-glibc-devel (Version 2.6.32) +# spec file for package linux-glibc-devel (Version 2.6.34) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -24,8 +24,8 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.32 -Release: 3 +Version: 2.6.34 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 8aa8a07c7a5c8d11e80877b6a40f470a88301ceb5cef5c9fbbb0a49d527c1192 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 5 Jul 2010 08:34:42 +0000 Subject: [PATCH 012/129] Accepting request 42456 from Base:System Copy from Base:System/linux-glibc-devel based on submit request 42456 from user dirkmueller OBS-URL: https://build.opensuse.org/request/show/42456 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=5 --- linux-glibc-devel-2.6.32.tar.bz2 | 3 --- linux-glibc-devel-2.6.34.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-2.6.32.tar.bz2 create mode 100644 linux-glibc-devel-2.6.34.tar.bz2 diff --git a/linux-glibc-devel-2.6.32.tar.bz2 b/linux-glibc-devel-2.6.32.tar.bz2 deleted file mode 100644 index 3c0b461..0000000 --- a/linux-glibc-devel-2.6.32.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:78e46f503f6febbc725bb061d3c9765e2dc4f16daf4bce056cd778a528031ab4 -size 677106 diff --git a/linux-glibc-devel-2.6.34.tar.bz2 b/linux-glibc-devel-2.6.34.tar.bz2 new file mode 100644 index 0000000..2c82145 --- /dev/null +++ b/linux-glibc-devel-2.6.34.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:118293832a705e1d3a23642fb4efdd9b562fa83ee8ff3da3647b4eb005e9d324 +size 705390 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4c3ef66..b337ca6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + ------------------------------------------------------------------- Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 1e0cf0b..3b5c02f 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,5 +1,5 @@ # -# spec file for package linux-glibc-devel (Version 2.6.32) +# spec file for package linux-glibc-devel (Version 2.6.34) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -24,8 +24,8 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.32 -Release: 3 +Version: 2.6.34 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From b8522860ac761621667b152bc6c515df4c31c962f751e31984f3872c09903e59 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Fri, 23 Jul 2010 20:59:28 +0000 Subject: [PATCH 013/129] Accepting request 43695 from Base:System checked in (request 43695) OBS-URL: https://build.opensuse.org/request/show/43695 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=22 --- linux-glibc-devel.SuSE.TIOCGDEV.patch | 46 ++++----------------------- linux-glibc-devel.changes | 5 --- 2 files changed, 6 insertions(+), 45 deletions(-) diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch index ac93ada..1d20f6d 100644 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -1,16 +1,4 @@ ---- - usr/include/asm-arm/ioctls.h | 1 + - usr/include/asm-generic/ioctls.h | 1 + - usr/include/asm-ia64/ioctls.h | 1 + - usr/include/asm-parisc/ioctls.h | 1 + - usr/include/asm-powerpc/ioctls.h | 1 + - usr/include/asm-s390/ioctls.h | 1 + - usr/include/asm-sparc/ioctls.h | 1 + - 7 files changed, 7 insertions(+) - -Index: usr/include/asm-arm/ioctls.h -=================================================================== ---- usr/include/asm-arm/ioctls.h.orig +--- usr/include/asm-arm/ioctls.h +++ usr/include/asm-arm/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -20,9 +8,7 @@ Index: usr/include/asm-arm/ioctls.h #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 -Index: usr/include/asm-generic/ioctls.h -=================================================================== ---- usr/include/asm-generic/ioctls.h.orig +--- usr/include/asm-generic/ioctls.h +++ usr/include/asm-generic/ioctls.h @@ -65,6 +65,7 @@ #define TIOCSRS485 0x542F @@ -32,9 +18,7 @@ Index: usr/include/asm-generic/ioctls.h #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ #define TCSETX 0x5433 #define TCSETXF 0x5434 -Index: usr/include/asm-ia64/ioctls.h -=================================================================== ---- usr/include/asm-ia64/ioctls.h.orig +--- usr/include/asm-ia64/ioctls.h +++ usr/include/asm-ia64/ioctls.h @@ -59,6 +59,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -44,9 +28,7 @@ Index: usr/include/asm-ia64/ioctls.h #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 -Index: usr/include/asm-parisc/ioctls.h -=================================================================== ---- usr/include/asm-parisc/ioctls.h.orig +--- usr/include/asm-parisc/ioctls.h +++ usr/include/asm-parisc/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -56,9 +38,7 @@ Index: usr/include/asm-parisc/ioctls.h #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 -Index: usr/include/asm-powerpc/ioctls.h -=================================================================== ---- usr/include/asm-powerpc/ioctls.h.orig +--- usr/include/asm-powerpc/ioctls.h +++ usr/include/asm-powerpc/ioctls.h @@ -93,6 +93,7 @@ #define TIOCSRS485 0x542f @@ -68,9 +48,7 @@ Index: usr/include/asm-powerpc/ioctls.h #define TIOCSERCONFIG 0x5453 #define TIOCSERGWILD 0x5454 -Index: usr/include/asm-s390/ioctls.h -=================================================================== ---- usr/include/asm-s390/ioctls.h.orig +--- usr/include/asm-s390/ioctls.h +++ usr/include/asm-s390/ioctls.h @@ -60,6 +60,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -80,15 +58,3 @@ Index: usr/include/asm-s390/ioctls.h #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 -Index: usr/include/asm-sparc/ioctls.h -=================================================================== ---- usr/include/asm-sparc/ioctls.h.orig -+++ usr/include/asm-sparc/ioctls.h -@@ -80,6 +80,7 @@ - /* Get minor device of a pty master's FD -- Solaris equiv is ISPTM */ - #define TIOCGPTN _IOR('t', 134, unsigned int) /* Get Pty Number */ - #define TIOCSPTLCK _IOW('t', 135, int) /* Lock/unlock PTY */ -+#define TIOCGDEV _IOW('t', 0x32, unsigned int) - - /* Little f */ - #define FIOCLEX _IO('f', 1) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 570c35e..b337ca6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -3,11 +3,6 @@ Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de - update kernel headers to 2.6.34 for proper O_SYNC support -------------------------------------------------------------------- -Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de - -- add TIOCGDEV define to SPARC definitions - ------------------------------------------------------------------- Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz -- 2.49.0 From 12dc26678b37d164992b55529d0de561d8eb2264888808236c82615c7d273be1 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Fri, 23 Jul 2010 20:59:29 +0000 Subject: [PATCH 014/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 6.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=680a556258e781aa7df4beb13e541a66 --- linux-glibc-devel.SuSE.TIOCGDEV.patch | 46 +++++++++++++++++++++++---- linux-glibc-devel.changes | 5 +++ linux-glibc-devel.spec | 2 +- 3 files changed, 46 insertions(+), 7 deletions(-) diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch index 1d20f6d..ac93ada 100644 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -1,4 +1,16 @@ ---- usr/include/asm-arm/ioctls.h +--- + usr/include/asm-arm/ioctls.h | 1 + + usr/include/asm-generic/ioctls.h | 1 + + usr/include/asm-ia64/ioctls.h | 1 + + usr/include/asm-parisc/ioctls.h | 1 + + usr/include/asm-powerpc/ioctls.h | 1 + + usr/include/asm-s390/ioctls.h | 1 + + usr/include/asm-sparc/ioctls.h | 1 + + 7 files changed, 7 insertions(+) + +Index: usr/include/asm-arm/ioctls.h +=================================================================== +--- usr/include/asm-arm/ioctls.h.orig +++ usr/include/asm-arm/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -8,7 +20,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-generic/ioctls.h +Index: usr/include/asm-generic/ioctls.h +=================================================================== +--- usr/include/asm-generic/ioctls.h.orig +++ usr/include/asm-generic/ioctls.h @@ -65,6 +65,7 @@ #define TIOCSRS485 0x542F @@ -18,7 +32,9 @@ #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ #define TCSETX 0x5433 #define TCSETXF 0x5434 ---- usr/include/asm-ia64/ioctls.h +Index: usr/include/asm-ia64/ioctls.h +=================================================================== +--- usr/include/asm-ia64/ioctls.h.orig +++ usr/include/asm-ia64/ioctls.h @@ -59,6 +59,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -28,7 +44,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-parisc/ioctls.h +Index: usr/include/asm-parisc/ioctls.h +=================================================================== +--- usr/include/asm-parisc/ioctls.h.orig +++ usr/include/asm-parisc/ioctls.h @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -38,7 +56,9 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 ---- usr/include/asm-powerpc/ioctls.h +Index: usr/include/asm-powerpc/ioctls.h +=================================================================== +--- usr/include/asm-powerpc/ioctls.h.orig +++ usr/include/asm-powerpc/ioctls.h @@ -93,6 +93,7 @@ #define TIOCSRS485 0x542f @@ -48,7 +68,9 @@ #define TIOCSERCONFIG 0x5453 #define TIOCSERGWILD 0x5454 ---- usr/include/asm-s390/ioctls.h +Index: usr/include/asm-s390/ioctls.h +=================================================================== +--- usr/include/asm-s390/ioctls.h.orig +++ usr/include/asm-s390/ioctls.h @@ -60,6 +60,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) @@ -58,3 +80,15 @@ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ #define FIOCLEX 0x5451 +Index: usr/include/asm-sparc/ioctls.h +=================================================================== +--- usr/include/asm-sparc/ioctls.h.orig ++++ usr/include/asm-sparc/ioctls.h +@@ -80,6 +80,7 @@ + /* Get minor device of a pty master's FD -- Solaris equiv is ISPTM */ + #define TIOCGPTN _IOR('t', 134, unsigned int) /* Get Pty Number */ + #define TIOCSPTLCK _IOW('t', 135, int) /* Lock/unlock PTY */ ++#define TIOCGDEV _IOW('t', 0x32, unsigned int) + + /* Little f */ + #define FIOCLEX _IO('f', 1) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b337ca6..570c35e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -3,6 +3,11 @@ Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de - update kernel headers to 2.6.34 for proper O_SYNC support +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + ------------------------------------------------------------------- Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 3b5c02f..e740ae9 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,7 +25,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 2.6.34 -Release: 1 +Release: 2 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 3715d520f0d9ec5619554a6f33f66bd6f8570e76535734e6f1e22375ec9cfefc Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Mon, 13 Sep 2010 13:48:42 +0000 Subject: [PATCH 015/129] a little hint to the next to call OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=23 --- install_all.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/install_all.sh b/install_all.sh index eedb96e..71ea1ce 100644 --- a/install_all.sh +++ b/install_all.sh @@ -7,6 +7,11 @@ then echo "Usage: ${0##*/} linux-1.2.3.tar.gz" exit 1 fi +if echo $PWD | grep -q :; then + echo "do not call this in a directory with : - make will fail" + exit 1 +fi + kernel_dir="`tar -tf $1 | sed '1 {s@^.*[[:blank:]]@@;s@linux-@@;s@/.*$@@;s@^\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)@\1@;p;Q}'`" header_dir="$PWD/linux-glibc-devel-$kernel_dir" if test -d "$kernel_dir" -- 2.49.0 From d348e861d587d1ae8449f002696c0c3c7eb83add89f7ed901e68b3ae09adb328 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Mon, 13 Sep 2010 14:35:53 +0000 Subject: [PATCH 016/129] Accepting request 48015 from home:coolo:branches:openSUSE:Factory reviewed ok. OBS-URL: https://build.opensuse.org/request/show/48015 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=24 --- linux-glibc-devel-2.6.34.tar.bz2 | 3 --- linux-glibc-devel-2.6.35.tar.bz2 | 3 +++ linux-glibc-devel.SuSE.TIOCGDEV.patch | 32 +++++++++++++-------------- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 5 files changed, 25 insertions(+), 20 deletions(-) delete mode 100644 linux-glibc-devel-2.6.34.tar.bz2 create mode 100644 linux-glibc-devel-2.6.35.tar.bz2 diff --git a/linux-glibc-devel-2.6.34.tar.bz2 b/linux-glibc-devel-2.6.34.tar.bz2 deleted file mode 100644 index 2c82145..0000000 --- a/linux-glibc-devel-2.6.34.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:118293832a705e1d3a23642fb4efdd9b562fa83ee8ff3da3647b4eb005e9d324 -size 705390 diff --git a/linux-glibc-devel-2.6.35.tar.bz2 b/linux-glibc-devel-2.6.35.tar.bz2 new file mode 100644 index 0000000..a8f9f22 --- /dev/null +++ b/linux-glibc-devel-2.6.35.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:04637da9307423b6bc55142e02630b8355eca9a57b28bf35d7fbb5dc4476a8b1 +size 713824 diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch index ac93ada..aa9ba28 100644 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -10,20 +10,20 @@ Index: usr/include/asm-arm/ioctls.h =================================================================== ---- usr/include/asm-arm/ioctls.h.orig -+++ usr/include/asm-arm/ioctls.h +--- usr/include/asm-arm/ioctls.h.orig 2010-09-13 16:01:32.000000000 +0200 ++++ usr/include/asm-arm/ioctls.h 2010-09-13 16:22:48.439806545 +0200 @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ +#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ - #define FIOCLEX 0x5451 + #define TIOCGRS485 0x542E + #define TIOCSRS485 0x542F Index: usr/include/asm-generic/ioctls.h =================================================================== ---- usr/include/asm-generic/ioctls.h.orig -+++ usr/include/asm-generic/ioctls.h +--- usr/include/asm-generic/ioctls.h.orig 2010-09-13 16:11:55.000000000 +0200 ++++ usr/include/asm-generic/ioctls.h 2010-09-13 16:22:48.455841012 +0200 @@ -65,6 +65,7 @@ #define TIOCSRS485 0x542F #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -34,8 +34,8 @@ Index: usr/include/asm-generic/ioctls.h #define TCSETXF 0x5434 Index: usr/include/asm-ia64/ioctls.h =================================================================== ---- usr/include/asm-ia64/ioctls.h.orig -+++ usr/include/asm-ia64/ioctls.h +--- usr/include/asm-ia64/ioctls.h.orig 2010-09-13 16:05:02.000000000 +0200 ++++ usr/include/asm-ia64/ioctls.h 2010-09-13 16:22:48.455841012 +0200 @@ -59,6 +59,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -46,8 +46,8 @@ Index: usr/include/asm-ia64/ioctls.h #define FIOCLEX 0x5451 Index: usr/include/asm-parisc/ioctls.h =================================================================== ---- usr/include/asm-parisc/ioctls.h.orig -+++ usr/include/asm-parisc/ioctls.h +--- usr/include/asm-parisc/ioctls.h.orig 2010-09-13 16:08:11.000000000 +0200 ++++ usr/include/asm-parisc/ioctls.h 2010-09-13 16:22:48.456816994 +0200 @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -58,8 +58,8 @@ Index: usr/include/asm-parisc/ioctls.h #define FIOCLEX 0x5451 Index: usr/include/asm-powerpc/ioctls.h =================================================================== ---- usr/include/asm-powerpc/ioctls.h.orig -+++ usr/include/asm-powerpc/ioctls.h +--- usr/include/asm-powerpc/ioctls.h.orig 2010-09-13 16:08:42.000000000 +0200 ++++ usr/include/asm-powerpc/ioctls.h 2010-09-13 16:22:48.456816994 +0200 @@ -93,6 +93,7 @@ #define TIOCSRS485 0x542f #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -70,8 +70,8 @@ Index: usr/include/asm-powerpc/ioctls.h #define TIOCSERGWILD 0x5454 Index: usr/include/asm-s390/ioctls.h =================================================================== ---- usr/include/asm-s390/ioctls.h.orig -+++ usr/include/asm-s390/ioctls.h +--- usr/include/asm-s390/ioctls.h.orig 2010-09-13 16:09:16.000000000 +0200 ++++ usr/include/asm-s390/ioctls.h 2010-09-13 16:22:48.474625906 +0200 @@ -60,6 +60,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -82,8 +82,8 @@ Index: usr/include/asm-s390/ioctls.h #define FIOCLEX 0x5451 Index: usr/include/asm-sparc/ioctls.h =================================================================== ---- usr/include/asm-sparc/ioctls.h.orig -+++ usr/include/asm-sparc/ioctls.h +--- usr/include/asm-sparc/ioctls.h.orig 2010-09-13 16:10:54.000000000 +0200 ++++ usr/include/asm-sparc/ioctls.h 2010-09-13 16:22:48.474806773 +0200 @@ -80,6 +80,7 @@ /* Get minor device of a pty master's FD -- Solaris equiv is ISPTM */ #define TIOCGPTN _IOR('t', 134, unsigned int) /* Get Pty Number */ diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 570c35e..abd64e6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + ------------------------------------------------------------------- Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index e740ae9..84873ac 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -24,7 +24,7 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.34 +Version: 2.6.35 Release: 2 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From c007f669f4687c90916040416c782e0b41ae8a970f020f2483c710c2196e6912 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Mon, 27 Sep 2010 08:34:02 +0000 Subject: [PATCH 017/129] Accepting request 49161 from Base:System checked in (request 49161) OBS-URL: https://build.opensuse.org/request/show/49161 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=25 --- linux-glibc-devel.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 84873ac..9f76640 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,5 +1,5 @@ # -# spec file for package linux-glibc-devel (Version 2.6.34) +# spec file for package linux-glibc-devel (Version 2.6.35) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -25,7 +25,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 2.6.35 -Release: 2 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From ac8900a4828f28b6ae77ade4527760635dcc523a59fec8ee40d5b219fca431b1 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Mon, 15 Nov 2010 00:59:17 +0000 Subject: [PATCH 018/129] Accepting request 52985 from home:jengelh:dev reviewed ok. OBS-URL: https://build.opensuse.org/request/show/52985 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=26 --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index abd64e6..348d1f7 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + ------------------------------------------------------------------- Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9f76640..666fed5 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -40,8 +40,9 @@ Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch %description This package provides Linux kernel headers, the kernel API description required for compilation of almost all programs. This is the userspace -interface; compiling external kernel modules requires kernel-source -instead. +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. -- 2.49.0 From 512e55845fa34dba1b645ed24737eba5119d817f2396a1c417149a2b0a561394 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Tue, 16 Nov 2010 18:46:31 +0000 Subject: [PATCH 019/129] Accepting request 53205 from home:coolo:branches:openSUSE:Factory OBS-URL: https://build.opensuse.org/request/show/53205 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=27 --- linux-glibc-devel-2.6.35.tar.bz2 | 3 -- linux-glibc-devel-2.6.36.tar.bz2 | 3 ++ linux-glibc-devel.SuSE.TIOCGDEV.patch | 66 +++++++++++++-------------- linux-glibc-devel.changes | 6 +++ linux-glibc-devel.spec | 2 +- 5 files changed, 43 insertions(+), 37 deletions(-) delete mode 100644 linux-glibc-devel-2.6.35.tar.bz2 create mode 100644 linux-glibc-devel-2.6.36.tar.bz2 diff --git a/linux-glibc-devel-2.6.35.tar.bz2 b/linux-glibc-devel-2.6.35.tar.bz2 deleted file mode 100644 index a8f9f22..0000000 --- a/linux-glibc-devel-2.6.35.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:04637da9307423b6bc55142e02630b8355eca9a57b28bf35d7fbb5dc4476a8b1 -size 713824 diff --git a/linux-glibc-devel-2.6.36.tar.bz2 b/linux-glibc-devel-2.6.36.tar.bz2 new file mode 100644 index 0000000..1ed316d --- /dev/null +++ b/linux-glibc-devel-2.6.36.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8eb0c2f7f8656ca6877458818c366ecfd3becb5315dcdf9f09586ef7612aa71 +size 724035 diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch index aa9ba28..df71b09 100644 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ b/linux-glibc-devel.SuSE.TIOCGDEV.patch @@ -10,20 +10,20 @@ Index: usr/include/asm-arm/ioctls.h =================================================================== ---- usr/include/asm-arm/ioctls.h.orig 2010-09-13 16:01:32.000000000 +0200 -+++ usr/include/asm-arm/ioctls.h 2010-09-13 16:22:48.439806545 +0200 +--- usr/include/asm-arm/ioctls.h.orig 2010-11-16 16:46:06.000000000 +0100 ++++ usr/include/asm-arm/ioctls.h 2010-11-16 17:24:29.381717929 +0100 @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ #define TIOCGRS485 0x542E - #define TIOCSRS485 0x542F Index: usr/include/asm-generic/ioctls.h =================================================================== ---- usr/include/asm-generic/ioctls.h.orig 2010-09-13 16:11:55.000000000 +0200 -+++ usr/include/asm-generic/ioctls.h 2010-09-13 16:22:48.455841012 +0200 +--- usr/include/asm-generic/ioctls.h.orig 2010-11-16 16:56:17.000000000 +0100 ++++ usr/include/asm-generic/ioctls.h 2010-11-16 17:23:50.110717582 +0100 @@ -65,6 +65,7 @@ #define TIOCSRS485 0x542F #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ @@ -34,61 +34,61 @@ Index: usr/include/asm-generic/ioctls.h #define TCSETXF 0x5434 Index: usr/include/asm-ia64/ioctls.h =================================================================== ---- usr/include/asm-ia64/ioctls.h.orig 2010-09-13 16:05:02.000000000 +0200 -+++ usr/include/asm-ia64/ioctls.h 2010-09-13 16:22:48.455841012 +0200 +--- usr/include/asm-ia64/ioctls.h.orig 2010-11-16 16:48:56.000000000 +0100 ++++ usr/include/asm-ia64/ioctls.h 2010-11-16 17:24:51.373842894 +0100 @@ -59,6 +59,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ - #define FIOCLEX 0x5451 Index: usr/include/asm-parisc/ioctls.h =================================================================== ---- usr/include/asm-parisc/ioctls.h.orig 2010-09-13 16:08:11.000000000 +0200 -+++ usr/include/asm-parisc/ioctls.h 2010-09-13 16:22:48.456816994 +0200 +--- usr/include/asm-parisc/ioctls.h.orig 2010-11-16 16:51:44.000000000 +0100 ++++ usr/include/asm-parisc/ioctls.h 2010-11-16 17:25:14.147716950 +0100 @@ -52,6 +52,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ - #define FIOCLEX 0x5451 Index: usr/include/asm-powerpc/ioctls.h =================================================================== ---- usr/include/asm-powerpc/ioctls.h.orig 2010-09-13 16:08:42.000000000 +0200 -+++ usr/include/asm-powerpc/ioctls.h 2010-09-13 16:22:48.456816994 +0200 -@@ -93,6 +93,7 @@ +--- usr/include/asm-powerpc/ioctls.h.orig 2010-11-16 16:52:12.000000000 +0100 ++++ usr/include/asm-powerpc/ioctls.h 2010-11-16 17:25:55.673718007 +0100 +@@ -94,6 +94,7 @@ #define TIOCSRS485 0x542f #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ #define TIOCSERCONFIG 0x5453 - #define TIOCSERGWILD 0x5454 Index: usr/include/asm-s390/ioctls.h =================================================================== ---- usr/include/asm-s390/ioctls.h.orig 2010-09-13 16:09:16.000000000 +0200 -+++ usr/include/asm-s390/ioctls.h 2010-09-13 16:22:48.474625906 +0200 +--- usr/include/asm-s390/ioctls.h.orig 2010-11-16 16:52:44.000000000 +0100 ++++ usr/include/asm-s390/ioctls.h 2010-11-16 17:26:18.864718089 +0100 @@ -60,6 +60,7 @@ #define TCSETSF2 _IOW('T',0x2D, struct termios2) #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ ++#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ + #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ - #define FIOCLEX 0x5451 Index: usr/include/asm-sparc/ioctls.h =================================================================== ---- usr/include/asm-sparc/ioctls.h.orig 2010-09-13 16:10:54.000000000 +0200 -+++ usr/include/asm-sparc/ioctls.h 2010-09-13 16:22:48.474806773 +0200 -@@ -80,6 +80,7 @@ - /* Get minor device of a pty master's FD -- Solaris equiv is ISPTM */ - #define TIOCGPTN _IOR('t', 134, unsigned int) /* Get Pty Number */ - #define TIOCSPTLCK _IOW('t', 135, int) /* Lock/unlock PTY */ -+#define TIOCGDEV _IOW('t', 0x32, unsigned int) - - /* Little f */ - #define FIOCLEX _IO('f', 1) +--- usr/include/asm-sparc/ioctls.h.orig 2010-11-16 16:54:29.000000000 +0100 ++++ usr/include/asm-sparc/ioctls.h 2010-11-16 17:27:37.477717843 +0100 +@@ -43,6 +43,7 @@ + #define __TIOCSETX _IOW('t', 34, int) /* SunOS Specific */ + #define __TIOCGETX _IOR('t', 35, int) /* SunOS Specific */ + #define TIOCCONS _IO('t', 36) ++#define TIOCGDEV _IOW('t', 0x32, unsigned int) + #define TIOCGSOFTCAR _IOR('t', 100, int) + #define TIOCSSOFTCAR _IOW('t', 101, int) + #define __TIOCUCNTL _IOW('t', 102, int) /* SunOS Specific */ diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 348d1f7..0f3d026 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + ------------------------------------------------------------------- Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 666fed5..8b4aa6d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -24,7 +24,7 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.35 +Version: 2.6.36 Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From b66a66762ab4e0019bb5f82c0ff75beeeee9de97d6e9fd4012dc7517c23a0f22 Mon Sep 17 00:00:00 2001 From: OBS User autobuild Date: Thu, 18 Nov 2010 15:45:38 +0000 Subject: [PATCH 020/129] Autobuild autoformatter for 53214 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=9 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 8b4aa6d..53fa893 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,5 +1,5 @@ # -# spec file for package linux-glibc-devel (Version 2.6.35) +# spec file for package linux-glibc-devel (Version 2.6.36) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # -- 2.49.0 From cf72d6ced8644ff3523e5f23a818c4ff5ac421a8bbc75e479315a6834384c83b Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 29 Jun 2011 08:03:59 +0000 Subject: [PATCH 021/129] Accepting request 74807 from home:a_jaeger:branches:openSUSE:Factory Update to 2.6.39 OBS-URL: https://build.opensuse.org/request/show/74807 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=29 --- install_all.sh | 6 +- linux-glibc-devel-2.6.36.tar.bz2 | 3 - linux-glibc-devel-2.6.39.tar.bz2 | 3 + linux-glibc-devel.SuSE.TIOCGDEV.patch | 94 --------------------------- linux-glibc-devel.changes | 9 +++ linux-glibc-devel.spec | 15 ++--- 6 files changed, 24 insertions(+), 106 deletions(-) delete mode 100644 linux-glibc-devel-2.6.36.tar.bz2 create mode 100644 linux-glibc-devel-2.6.39.tar.bz2 delete mode 100644 linux-glibc-devel.SuSE.TIOCGDEV.patch diff --git a/install_all.sh b/install_all.sh index 71ea1ce..800bcf8 100644 --- a/install_all.sh +++ b/install_all.sh @@ -27,6 +27,8 @@ fi tar -xf $1 pushd linux-${kernel_dir} cp Makefile $header_dir +# header export for unicore32 in 2.6.39 is broken, disable it +sed -i -e 's/cris/cris\|unicore32/' scripts/headers.sh /usr/bin/make O="$header_dir" headers_install_all # kvm.h and aout.h are only installed if SRCARCH is an architecture # that has support for them. As the package is noarch we need to make @@ -50,6 +52,7 @@ for asm in \ sh64 \ v850 \ xtensa \ + unicore32 \ ; do rm -rf usr/include/asm-$asm done @@ -78,4 +81,5 @@ done popd du -sh "$header_dir/usr" tar -cjf "$header_dir.tar.bz2" "${header_dir##*/}" -rm -rf $header_dir +rm -rf $header_dir linux-${kernel_dir} + diff --git a/linux-glibc-devel-2.6.36.tar.bz2 b/linux-glibc-devel-2.6.36.tar.bz2 deleted file mode 100644 index 1ed316d..0000000 --- a/linux-glibc-devel-2.6.36.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8eb0c2f7f8656ca6877458818c366ecfd3becb5315dcdf9f09586ef7612aa71 -size 724035 diff --git a/linux-glibc-devel-2.6.39.tar.bz2 b/linux-glibc-devel-2.6.39.tar.bz2 new file mode 100644 index 0000000..bdddaf3 --- /dev/null +++ b/linux-glibc-devel-2.6.39.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44724bab7e24317ecb08905f02d6abd246fe21af85eedd3843c67d20549dcb7e +size 742507 diff --git a/linux-glibc-devel.SuSE.TIOCGDEV.patch b/linux-glibc-devel.SuSE.TIOCGDEV.patch deleted file mode 100644 index df71b09..0000000 --- a/linux-glibc-devel.SuSE.TIOCGDEV.patch +++ /dev/null @@ -1,94 +0,0 @@ ---- - usr/include/asm-arm/ioctls.h | 1 + - usr/include/asm-generic/ioctls.h | 1 + - usr/include/asm-ia64/ioctls.h | 1 + - usr/include/asm-parisc/ioctls.h | 1 + - usr/include/asm-powerpc/ioctls.h | 1 + - usr/include/asm-s390/ioctls.h | 1 + - usr/include/asm-sparc/ioctls.h | 1 + - 7 files changed, 7 insertions(+) - -Index: usr/include/asm-arm/ioctls.h -=================================================================== ---- usr/include/asm-arm/ioctls.h.orig 2010-11-16 16:46:06.000000000 +0100 -+++ usr/include/asm-arm/ioctls.h 2010-11-16 17:24:29.381717929 +0100 -@@ -52,6 +52,7 @@ - #define TCSETSF2 _IOW('T',0x2D, struct termios2) - #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ - - #define TIOCGRS485 0x542E -Index: usr/include/asm-generic/ioctls.h -=================================================================== ---- usr/include/asm-generic/ioctls.h.orig 2010-11-16 16:56:17.000000000 +0100 -+++ usr/include/asm-generic/ioctls.h 2010-11-16 17:23:50.110717582 +0100 -@@ -65,6 +65,7 @@ - #define TIOCSRS485 0x542F - #define TIOCGPTN _IOR('T', 0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T', 0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T', 0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TCGETX 0x5432 /* SYS5 TCGETX compatibility */ - #define TCSETX 0x5433 - #define TCSETXF 0x5434 -Index: usr/include/asm-ia64/ioctls.h -=================================================================== ---- usr/include/asm-ia64/ioctls.h.orig 2010-11-16 16:48:56.000000000 +0100 -+++ usr/include/asm-ia64/ioctls.h 2010-11-16 17:24:51.373842894 +0100 -@@ -59,6 +59,7 @@ - #define TCSETSF2 _IOW('T',0x2D, struct termios2) - #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ - - #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ -Index: usr/include/asm-parisc/ioctls.h -=================================================================== ---- usr/include/asm-parisc/ioctls.h.orig 2010-11-16 16:51:44.000000000 +0100 -+++ usr/include/asm-parisc/ioctls.h 2010-11-16 17:25:14.147716950 +0100 -@@ -52,6 +52,7 @@ - #define TCSETSF2 _IOW('T',0x2D, struct termios2) - #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ - - #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ -Index: usr/include/asm-powerpc/ioctls.h -=================================================================== ---- usr/include/asm-powerpc/ioctls.h.orig 2010-11-16 16:52:12.000000000 +0100 -+++ usr/include/asm-powerpc/ioctls.h 2010-11-16 17:25:55.673718007 +0100 -@@ -94,6 +94,7 @@ - #define TIOCSRS485 0x542f - #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ - - #define TIOCSERCONFIG 0x5453 -Index: usr/include/asm-s390/ioctls.h -=================================================================== ---- usr/include/asm-s390/ioctls.h.orig 2010-11-16 16:52:44.000000000 +0100 -+++ usr/include/asm-s390/ioctls.h 2010-11-16 17:26:18.864718089 +0100 -@@ -60,6 +60,7 @@ - #define TCSETSF2 _IOW('T',0x2D, struct termios2) - #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ - #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ -+#define TIOCGDEV _IOR('T',0x32, unsigned int) /* Get real dev no below /dev/console */ - #define TIOCSIG _IOW('T',0x36, int) /* Generate signal on Pty slave */ - - #define FIONCLEX 0x5450 /* these numbers need to be adjusted. */ -Index: usr/include/asm-sparc/ioctls.h -=================================================================== ---- usr/include/asm-sparc/ioctls.h.orig 2010-11-16 16:54:29.000000000 +0100 -+++ usr/include/asm-sparc/ioctls.h 2010-11-16 17:27:37.477717843 +0100 -@@ -43,6 +43,7 @@ - #define __TIOCSETX _IOW('t', 34, int) /* SunOS Specific */ - #define __TIOCGETX _IOR('t', 35, int) /* SunOS Specific */ - #define TIOCCONS _IO('t', 36) -+#define TIOCGDEV _IOW('t', 0x32, unsigned int) - #define TIOCGSOFTCAR _IOR('t', 100, int) - #define TIOCSSOFTCAR _IOW('t', 101, int) - #define __TIOCUCNTL _IOW('t', 102, int) /* SunOS Specific */ diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 0f3d026..43f62c5 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 2.6.39. +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + ------------------------------------------------------------------- Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 8b4aa6d..2cc41ea 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,5 +1,5 @@ # -# spec file for package linux-glibc-devel (Version 2.6.35) +# spec file for package linux-glibc-devel (Version 2.6.36) # # Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. # @@ -17,24 +17,23 @@ # norootforbuild - +BuildRequires: fdupes Name: linux-glibc-devel License: GPLv2 Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.36 +Version: 2.6.39 Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers Provides: linux-kernel-headers = %{version} -Obsoletes: linux-kernel-headers <= %{version} +Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils Source: %{name}-%{version}.tar.bz2 Source1: install_all.sh -Patch0: linux-glibc-devel.SuSE.TIOCGDEV.patch Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch %description @@ -48,7 +47,6 @@ packages, instead. %prep %setup -q -%patch0 %patch1 %build @@ -110,9 +108,10 @@ rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi* # The directory turned into a symlink in 10.3 (2.6.22) # rpm will remove obsolete files after the post install scripts # A trigger will run after the /usr/include/asm was removed -# Create a dummy symlink now for rpmlint happiness, we %ghost this and create -# a proper symlink during %post: +# Create a dummy symlink now for rpmlint happiness, we %%ghost this and create +# a proper symlink during %%post: ln -sfn asm-dummy $RPM_BUILD_ROOT/usr/include/asm +%fdupes $RPM_BUILD_ROOT/usr/include %postun if test "$1" = 0 -- 2.49.0 From 4934435cf61636f89bbf49169e95539950be575a9cd937e090a4a5b9b5fbf7f8 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 29 Jun 2011 08:21:25 +0000 Subject: [PATCH 022/129] Accepting request 74810 from home:a_jaeger:branches:openSUSE:Factory Update to 3.0 rc5 OBS-URL: https://build.opensuse.org/request/show/74810 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=30 --- linux-glibc-devel-2.6.39.tar.bz2 | 3 --- linux-glibc-devel-3.0.tar.bz2 | 3 +++ linux-glibc-devel.changes | 2 +- linux-glibc-devel.spec | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-2.6.39.tar.bz2 create mode 100644 linux-glibc-devel-3.0.tar.bz2 diff --git a/linux-glibc-devel-2.6.39.tar.bz2 b/linux-glibc-devel-2.6.39.tar.bz2 deleted file mode 100644 index bdddaf3..0000000 --- a/linux-glibc-devel-2.6.39.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:44724bab7e24317ecb08905f02d6abd246fe21af85eedd3843c67d20549dcb7e -size 742507 diff --git a/linux-glibc-devel-3.0.tar.bz2 b/linux-glibc-devel-3.0.tar.bz2 new file mode 100644 index 0000000..b069d98 --- /dev/null +++ b/linux-glibc-devel-3.0.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7f5582269ce485d58c81d7270820478dfe8ec193bbb8207fe51ba4709a64eb9 +size 757542 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 43f62c5..6ff4164 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de -- Update kernel headers to 2.6.39. +- Update kernel headers to 3.0 (from 3.0-rc5). - Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream now. - Fix obsoletes. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 2cc41ea..3ef6066 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -24,7 +24,7 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 2.6.39 +Version: 3.0 Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -85,7 +85,7 @@ cat > version.h <<-BOGUS #error "=======================================================" #else #define UTS_RELEASE "%{version}" -#define LINUX_VERSION_CODE `bash -c 'v="%{version}";read a b c d <<< "${v//./ }";echo "$(( (($a) << 16) + (($b) << 8) + ($c) ))"'` +#define LINUX_VERSION_CODE `bash -c 'v="%{version}";c=0;read a b <<< "${v//./ }";echo "$(( (($a) << 16) + (($b) << 8) + ($c) ))"'` #define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) #endif BOGUS -- 2.49.0 From ec148f23d98de51f3b521f67343b1fc4fc306514b8991ab19e6a1bacfafea0bd Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Thu, 30 Jun 2011 14:29:06 +0000 Subject: [PATCH 023/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 12.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=6f522abfafa734c302149cfeac7dfe7e --- linux-glibc-devel.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 3ef6066..0da2b25 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # -# spec file for package linux-glibc-devel (Version 2.6.36) +# spec file for package linux-glibc-devel # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,6 +18,7 @@ # norootforbuild BuildRequires: fdupes + Name: linux-glibc-devel License: GPLv2 Summary: Linux headers for userspace development -- 2.49.0 From f69811ee0e019de5a26268df67dab3f224cce50d30c36852fb546904c8814c64 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Thu, 30 Jun 2011 14:29:06 +0000 Subject: [PATCH 024/129] Autobuild autoformatter for 74821 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=12 --- linux-glibc-devel.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 3ef6066..0da2b25 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # -# spec file for package linux-glibc-devel (Version 2.6.36) +# spec file for package linux-glibc-devel # -# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,6 +18,7 @@ # norootforbuild BuildRequires: fdupes + Name: linux-glibc-devel License: GPLv2 Summary: Linux headers for userspace development -- 2.49.0 From bba78f8db644f322f9c6f1fe500fb5018a079f4a01ae365e17332493dc94fb83 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 25 Jul 2011 09:20:32 +0000 Subject: [PATCH 025/129] Accepting request 76923 from home:a_jaeger:branches:openSUSE:Factory Update to 3.0 final headers. OBS-URL: https://build.opensuse.org/request/show/76923 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=32 --- linux-glibc-devel-3.0.tar.bz2 | 4 ++-- linux-glibc-devel.changes | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel-3.0.tar.bz2 b/linux-glibc-devel-3.0.tar.bz2 index b069d98..875d7bc 100644 --- a/linux-glibc-devel-3.0.tar.bz2 +++ b/linux-glibc-devel-3.0.tar.bz2 @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7f5582269ce485d58c81d7270820478dfe8ec193bbb8207fe51ba4709a64eb9 -size 757542 +oid sha256:59552faf81630661794cce6b973e39c6e0468778eddced06007fe47b12f05559 +size 757641 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6ff4164..4aea590 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + ------------------------------------------------------------------- Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de -- 2.49.0 From 438331dc307981da018e58345c910924409b89813cc9b87b6a32709e73f6e684 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Tue, 26 Jul 2011 07:19:14 +0000 Subject: [PATCH 026/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 14.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=23099ed61c3813b7ce507251e2cd0dac --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 0da2b25..6432802 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -26,7 +26,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 3.0 -Release: 1 +Release: 3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 206024938a62bb3ab7254aa1dec917e59d56bc91a2ee5c5c7b7dfbadea533d18 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 26 Jul 2011 07:19:14 +0000 Subject: [PATCH 027/129] Autobuild autoformatter for 76924 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=14 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 0da2b25..6432802 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -26,7 +26,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 3.0 -Release: 1 +Release: 3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 3863fc1fa6c1d1477c7030a55b392b071ec7b9e106470fc974c5d02d59cd742d Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 6 Sep 2011 14:54:38 +0000 Subject: [PATCH 028/129] Accepting request 81109 from home:a_jaeger:branches:openSUSE:Factory Update to Linux 3.1 rc5 headers. OBS-URL: https://build.opensuse.org/request/show/81109 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=34 --- linux-glibc-devel-3.0.tar.bz2 | 3 --- linux-glibc-devel-3.1_rc5.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.0.tar.bz2 create mode 100644 linux-glibc-devel-3.1_rc5.tar.bz2 diff --git a/linux-glibc-devel-3.0.tar.bz2 b/linux-glibc-devel-3.0.tar.bz2 deleted file mode 100644 index 875d7bc..0000000 --- a/linux-glibc-devel-3.0.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:59552faf81630661794cce6b973e39c6e0468778eddced06007fe47b12f05559 -size 757641 diff --git a/linux-glibc-devel-3.1_rc5.tar.bz2 b/linux-glibc-devel-3.1_rc5.tar.bz2 new file mode 100644 index 0000000..d6df63a --- /dev/null +++ b/linux-glibc-devel-3.1_rc5.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a77342ae8b12e1acbc758ddc01edff48bf3e9698db9d92c081dae07bd6ed8878 +size 767954 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4aea590..b538936 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + ------------------------------------------------------------------- Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 6432802..9330352 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,7 +25,7 @@ Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning -Version: 3.0 +Version: 3.1_rc5 Release: 3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -47,7 +47,7 @@ packages, instead. %prep -%setup -q +%setup -q -n linux-glibc-devel-3.1-rc5 %patch1 %build -- 2.49.0 From b89e4f1cc20f79a61e450498edbc9dc4ff17df645d85fe85a4c5735f14b2a302 Mon Sep 17 00:00:00 2001 From: OBS User buildservice-autocommit Date: Tue, 6 Sep 2011 15:44:36 +0000 Subject: [PATCH 029/129] Updating link to change in openSUSE:Factory/linux-glibc-devel revision 16.0 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=c677de2fb34229be097a876807a81845 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9330352..e6857e3 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -26,7 +26,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 3.1_rc5 -Release: 3 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 561644ba96853c3e63efa55714d4e132889986997258f376756e5943230e6553 Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Tue, 6 Sep 2011 15:44:36 +0000 Subject: [PATCH 030/129] Autobuild autoformatter for 81110 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=16 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9330352..e6857e3 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -26,7 +26,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 3.1_rc5 -Release: 3 +Release: 1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 0327c07ad80d2376f0661970e29666856f6871b6d7b7ed67f00b03e301d08bd7 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 7 Sep 2011 08:10:41 +0000 Subject: [PATCH 031/129] Accepting request 81181 from home:a_jaeger:branches:openSUSE:Factory Fix LINUX_VERSION_CODE OBS-URL: https://build.opensuse.org/request/show/81181 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=36 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b538936..17c19f8 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + ------------------------------------------------------------------- Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index e6857e3..4156ada 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -85,9 +85,10 @@ cat > version.h <<-BOGUS #error " Please adjust the Makefile accordingly." #error "=======================================================" #else -#define UTS_RELEASE "%{version}" -#define LINUX_VERSION_CODE `bash -c 'v="%{version}";c=0;read a b <<< "${v//./ }";echo "$(( (($a) << 16) + (($b) << 8) + ($c) ))"'` -#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c)) +BOGUS +# Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel +cat usr/include/linux/version.h >> version.h +cat >> version.h <<-BOGUS #endif BOGUS cat version.h -- 2.49.0 From a37c2cd5169475da2b69ffdce12a2097bc0c0be8ebc7720e13000706fca54a2f Mon Sep 17 00:00:00 2001 From: Sascha Peilicke Date: Wed, 7 Sep 2011 15:54:36 +0000 Subject: [PATCH 032/129] Autobuild autoformatter for 81182 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=18 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 4156ada..c9cbcb3 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -26,7 +26,7 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning Version: 3.1_rc5 -Release: 1 +Release: 5 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 39d8533effe79dbdbf38a1a3ec1e1f1fae9b1164fa569d712c91a72302519f36 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Tue, 6 Dec 2011 17:26:45 +0000 Subject: [PATCH 033/129] replace license with spdx.org variant OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/linux-glibc-devel?expand=0&rev=20 --- linux-glibc-devel.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c9cbcb3..ae941b2 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -20,7 +20,7 @@ BuildRequires: fdupes Name: linux-glibc-devel -License: GPLv2 +License: GPL-2.0 Summary: Linux headers for userspace development Group: Development/Libraries/C and C++ BuildArch: noarch -- 2.49.0 From 5d838a2b5cbf81cef0eb946020aa4a4fe06bcafaf474e7bc8d717aecad66962c Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 21 Dec 2011 12:21:52 +0000 Subject: [PATCH 034/129] - update to 3.1 headers: * fixes missing REQ_META OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=38 --- linux-glibc-devel-3.1.tar.bz2 | 3 +++ linux-glibc-devel-3.1_rc5.tar.bz2 | 3 --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 9 +++------ 4 files changed, 12 insertions(+), 9 deletions(-) create mode 100644 linux-glibc-devel-3.1.tar.bz2 delete mode 100644 linux-glibc-devel-3.1_rc5.tar.bz2 diff --git a/linux-glibc-devel-3.1.tar.bz2 b/linux-glibc-devel-3.1.tar.bz2 new file mode 100644 index 0000000..91c3ba2 --- /dev/null +++ b/linux-glibc-devel-3.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cbaae5a0923b564ed15a45f20cc42266b4feafa13e1208584a1ad49eeff0953 +size 765473 diff --git a/linux-glibc-devel-3.1_rc5.tar.bz2 b/linux-glibc-devel-3.1_rc5.tar.bz2 deleted file mode 100644 index d6df63a..0000000 --- a/linux-glibc-devel-3.1_rc5.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a77342ae8b12e1acbc758ddc01edff48bf3e9698db9d92c081dae07bd6ed8878 -size 767954 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 17c19f8..755d4c7 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + ------------------------------------------------------------------- Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 4156ada..b6bbca4 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -15,18 +15,15 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # -# norootforbuild - BuildRequires: fdupes Name: linux-glibc-devel -License: GPLv2 Summary: Linux headers for userspace development +License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -# this confusing version number has no meaning -Version: 3.1_rc5 -Release: 1 +Version: 3.1 +Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From a6b37b8bc1b394f8a7c64cf6c528b4c4e8d093a09f294bf1bc1fced3df196f5f Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 21 Dec 2011 12:34:04 +0000 Subject: [PATCH 035/129] remove hardcoded version OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=39 --- linux-glibc-devel.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index b6bbca4..21b5978 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + BuildRequires: fdupes Name: linux-glibc-devel @@ -44,7 +45,7 @@ packages, instead. %prep -%setup -q -n linux-glibc-devel-3.1-rc5 +%setup -q -n linux-glibc-devel-%version %patch1 %build -- 2.49.0 From 8e09316bef353616eb0255d103c3cfc04b02a3853cf13c20e4707ed0657109da Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 27 Dec 2011 08:23:29 +0000 Subject: [PATCH 036/129] Accepting request 98265 from home:a_jaeger:my-factory-packages Update to Linux 3.2-rc7 headers. OBS-URL: https://build.opensuse.org/request/show/98265 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=42 --- linux-glibc-devel-3.1.tar.bz2 | 3 --- linux-glibc-devel-3.2_rc7.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 10 +++++++--- 4 files changed, 15 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-3.1.tar.bz2 create mode 100644 linux-glibc-devel-3.2_rc7.tar.bz2 diff --git a/linux-glibc-devel-3.1.tar.bz2 b/linux-glibc-devel-3.1.tar.bz2 deleted file mode 100644 index 91c3ba2..0000000 --- a/linux-glibc-devel-3.1.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4cbaae5a0923b564ed15a45f20cc42266b4feafa13e1208584a1ad49eeff0953 -size 765473 diff --git a/linux-glibc-devel-3.2_rc7.tar.bz2 b/linux-glibc-devel-3.2_rc7.tar.bz2 new file mode 100644 index 0000000..e5c276b --- /dev/null +++ b/linux-glibc-devel-3.2_rc7.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ae38e53b5115bef579105713f8acfca42d8d828f1f8a2a94cc02faa9b03d2ff +size 798509 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 755d4c7..bcf7c88 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + ------------------------------------------------------------------- Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 21b5978..a7b5d93 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,8 +23,12 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 3.1 -Release: 0 +# this confusing version number has no meaning, it's the version +# of the Linux kernel where these headers come from +Version: 3.2_rc7 +Release: 5 +# A "-" is not allowed in version +%define upstream_version 3.2-rc7 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers @@ -45,7 +49,7 @@ packages, instead. %prep -%setup -q -n linux-glibc-devel-%version +%setup -q -n linux-glibc-devel-%{upstream_version} %patch1 %build -- 2.49.0 From cdef87a52431ac2e6e4bb48477178f889fde16166c2a5ea7745ba939b4135cc6 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 5 Jan 2012 14:16:25 +0000 Subject: [PATCH 037/129] - update to Linux 3.2.0 headers * KVM_CAP_TSC_DEADLINE_TIMER added OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=44 --- linux-glibc-devel-3.2.tar.bz2 | 3 +++ linux-glibc-devel-3.2_rc7.tar.bz2 | 3 --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 11 +++++------ 4 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 linux-glibc-devel-3.2.tar.bz2 delete mode 100644 linux-glibc-devel-3.2_rc7.tar.bz2 diff --git a/linux-glibc-devel-3.2.tar.bz2 b/linux-glibc-devel-3.2.tar.bz2 new file mode 100644 index 0000000..430b3a7 --- /dev/null +++ b/linux-glibc-devel-3.2.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba23fdc5e7b74eae28d8c6996bb2287f46dec432ab467425034e78b398a6e55c +size 802878 diff --git a/linux-glibc-devel-3.2_rc7.tar.bz2 b/linux-glibc-devel-3.2_rc7.tar.bz2 deleted file mode 100644 index e5c276b..0000000 --- a/linux-glibc-devel-3.2_rc7.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ae38e53b5115bef579105713f8acfca42d8d828f1f8a2a94cc02faa9b03d2ff -size 798509 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index bcf7c88..dad3609 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + ------------------------------------------------------------------- Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index a7b5d93..35bc681 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -15,7 +15,6 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # - BuildRequires: fdupes Name: linux-glibc-devel @@ -25,17 +24,17 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.2_rc7 -Release: 5 +Version: 3.2.0 +Release: 0 # A "-" is not allowed in version -%define upstream_version 3.2-rc7 +%define upstream_version 3.2 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils -Source: %{name}-%{version}.tar.bz2 +Source: %{name}-%{upstream_version}.tar.bz2 Source1: install_all.sh Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch -- 2.49.0 From fc47645bfa065b06284897abf5a82b47815dc2896a3bd3290ec8e156d3324448 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 16 Mar 2012 11:40:16 +0000 Subject: [PATCH 038/129] Accepting request 109625 from home:a_jaeger:my-factory-packages Update version.h OBS-URL: https://build.opensuse.org/request/show/109625 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=47 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 30 ++++++++++++++++-------------- 2 files changed, 21 insertions(+), 14 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index dad3609..7c55bca 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + ------------------------------------------------------------------- Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 35bc681..76d3417 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -15,6 +15,7 @@ # Please submit bugfixes or comments via http://bugs.opensuse.org/ # + BuildRequires: fdupes Name: linux-glibc-devel @@ -66,25 +67,26 @@ cat > version.h <<-BOGUS #error "programs should not directly include or" #error " as well." #error "" -#error "To build kernel modules please do the following:" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." #error "" -#error " o Have the kernel sources installed" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." #error "" -#error " o Make sure that the symbolic link" -#error " /lib/modules/\`uname -r\`/build exists and points to" -#error " the matching kernel source directory" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" #error "" -#error " o When compiling, make sure to use the following" -#error " compiler option to use the correct include files:" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." #error "" -#error " -I/lib/modules/\`uname -r\`/build/include" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " #error "" -#error " instead of" -#error "" -#error " -I/usr/include/linux" -#error "" -#error " Please adjust the Makefile accordingly." -#error "=======================================================" +#error "Please adjust the Makefile accordingly." +#error "======================================================= #else BOGUS # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel -- 2.49.0 From fcb3a3029c4b917fd5d68f64ce09b2e3715a0ca6092c73077610a9afaf724fd6 Mon Sep 17 00:00:00 2001 From: Wolfgang Engel Date: Mon, 19 Mar 2012 12:30:50 +0000 Subject: [PATCH 039/129] Accepting request 109942 from home:a_jaeger:my-factory-packages Update to Linux 3.3 kernel headers OBS-URL: https://build.opensuse.org/request/show/109942 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=48 --- linux-glibc-devel-3.2.tar.bz2 | 3 --- linux-glibc-devel-3.3.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-3.2.tar.bz2 create mode 100644 linux-glibc-devel-3.3.tar.bz2 diff --git a/linux-glibc-devel-3.2.tar.bz2 b/linux-glibc-devel-3.2.tar.bz2 deleted file mode 100644 index 430b3a7..0000000 --- a/linux-glibc-devel-3.2.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba23fdc5e7b74eae28d8c6996bb2287f46dec432ab467425034e78b398a6e55c -size 802878 diff --git a/linux-glibc-devel-3.3.tar.bz2 b/linux-glibc-devel-3.3.tar.bz2 new file mode 100644 index 0000000..84c7288 --- /dev/null +++ b/linux-glibc-devel-3.3.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:344067d9ea2a10b8e4f014d506010a21e7f4d52885a462a25575dbd4565c2b5c +size 810407 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 7c55bca..17e5a05 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + ------------------------------------------------------------------- Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 76d3417..32a1592 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,13 +25,13 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.2.0 +Version: 3.3.0 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.2 +%define upstream_version 3.3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -Provides: kernel-headers +Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils -- 2.49.0 From 26dd9604c9985f3ef7ae12e50e8cb152d32d55448ba4b1c6a46a6553cc6c5dd4 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 26 Apr 2012 09:47:58 +0000 Subject: [PATCH 040/129] Accepting request 115667 from home:a_jaeger:my-factory-packages Fix typo: it's __NR_mq_getsetattr OBS-URL: https://build.opensuse.org/request/show/115667 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=50 --- getsetattr.patch | 13 +++++++++++++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 ++ 3 files changed, 20 insertions(+) create mode 100644 getsetattr.patch diff --git a/getsetattr.patch b/getsetattr.patch new file mode 100644 index 0000000..fd35bf2 --- /dev/null +++ b/getsetattr.patch @@ -0,0 +1,13 @@ +Index: linux-glibc-devel-3.3/usr/include/asm-x86/unistd_32.h +=================================================================== +--- linux-glibc-devel-3.3.orig/usr/include/asm-x86/unistd_32.h ++++ linux-glibc-devel-3.3/usr/include/asm-x86/unistd_32.h +@@ -280,7 +280,7 @@ + #define __NR_mq_timedsend 279 + #define __NR_mq_timedreceive 280 + #define __NR_mq_notify 281 +-#define __NR_mq_getsetaddr 282 ++#define __NR_mq_getsetattr 282 + #define __NR_kexec_load 283 + #define __NR_waitid 284 + #define __NR_add_key 286 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 17e5a05..6f08a55 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + ------------------------------------------------------------------- Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 32a1592..9082184 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -38,6 +38,7 @@ PreReq: coreutils Source: %{name}-%{upstream_version}.tar.bz2 Source1: install_all.sh Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch +Patch2: getsetattr.patch %description This package provides Linux kernel headers, the kernel API description @@ -51,6 +52,7 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} %patch1 +%patch2 -p1 %build cat > version.h <<-BOGUS -- 2.49.0 From 926b8379a06f03361d307da4a5c5f6b1bf0c69f2ea9b5c2ccbfdb0c7b1d91252 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 16 May 2012 11:07:44 +0000 Subject: [PATCH 041/129] Accepting request 121163 from home:a_jaeger:my-factory-packages Fix typo. OBS-URL: https://build.opensuse.org/request/show/121163 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=52 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6f08a55..63ead22 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + ------------------------------------------------------------------- Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9082184..ceaf6a0 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -88,7 +88,7 @@ cat > version.h <<-BOGUS #error "not configured properly. " #error "" #error "Please adjust the Makefile accordingly." -#error "======================================================= +#error "=======================================================" #else BOGUS # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel -- 2.49.0 From e811aefca56957425148ce6ac793e7fcf89757c53c59a64c6d36ac4980e07856 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 22 May 2012 09:03:14 +0000 Subject: [PATCH 042/129] Accepting request 121730 from home:a_jaeger:my-factory-packages Update to Linux 3.4 headers OBS-URL: https://build.opensuse.org/request/show/121730 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=54 --- linux-glibc-devel-3.4.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 linux-glibc-devel-3.4.tar.bz2 diff --git a/linux-glibc-devel-3.4.tar.bz2 b/linux-glibc-devel-3.4.tar.bz2 new file mode 100644 index 0000000..3a9b0cc --- /dev/null +++ b/linux-glibc-devel-3.4.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb29ba2db2596a11bcea0911874095f23c4b4afbd22611cf3995e65d0c750a18 +size 852649 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 63ead22..423d7fe 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + ------------------------------------------------------------------- Wed May 16 11:06:03 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index ceaf6a0..16bcac8 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,10 +25,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.3.0 +Version: 3.4.0 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.3 +%define upstream_version 3.4 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From 5bb9b211a2122f584f9fbea4b6ed705169b4ca7036b673562b16c0dbd32843b5 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 22 May 2012 09:14:44 +0000 Subject: [PATCH 043/129] Accepting request 121741 from home:a_jaeger:my-factory-packages Update to Linux 3.4 headers OBS-URL: https://build.opensuse.org/request/show/121741 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=55 --- getsetattr.patch | 13 ------------- linux-glibc-devel-3.3.tar.bz2 | 3 --- linux-glibc-devel.changes | 1 + linux-glibc-devel.spec | 2 -- 4 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 getsetattr.patch delete mode 100644 linux-glibc-devel-3.3.tar.bz2 diff --git a/getsetattr.patch b/getsetattr.patch deleted file mode 100644 index fd35bf2..0000000 --- a/getsetattr.patch +++ /dev/null @@ -1,13 +0,0 @@ -Index: linux-glibc-devel-3.3/usr/include/asm-x86/unistd_32.h -=================================================================== ---- linux-glibc-devel-3.3.orig/usr/include/asm-x86/unistd_32.h -+++ linux-glibc-devel-3.3/usr/include/asm-x86/unistd_32.h -@@ -280,7 +280,7 @@ - #define __NR_mq_timedsend 279 - #define __NR_mq_timedreceive 280 - #define __NR_mq_notify 281 --#define __NR_mq_getsetaddr 282 -+#define __NR_mq_getsetattr 282 - #define __NR_kexec_load 283 - #define __NR_waitid 284 - #define __NR_add_key 286 diff --git a/linux-glibc-devel-3.3.tar.bz2 b/linux-glibc-devel-3.3.tar.bz2 deleted file mode 100644 index 84c7288..0000000 --- a/linux-glibc-devel-3.3.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:344067d9ea2a10b8e4f014d506010a21e7f4d52885a462a25575dbd4565c2b5c -size 810407 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 423d7fe..42ae4a8 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -2,6 +2,7 @@ Tue May 22 07:43:50 UTC 2012 - aj@suse.de - Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. ------------------------------------------------------------------- Wed May 16 11:06:03 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 16bcac8..5fbd2f1 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -38,7 +38,6 @@ PreReq: coreutils Source: %{name}-%{upstream_version}.tar.bz2 Source1: install_all.sh Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch -Patch2: getsetattr.patch %description This package provides Linux kernel headers, the kernel API description @@ -52,7 +51,6 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} %patch1 -%patch2 -p1 %build cat > version.h <<-BOGUS -- 2.49.0 From edadbf1e6c3fd2c742a27802610e66c5717e548da1d50104b816761413ac0abe Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 25 Sep 2012 08:50:05 +0000 Subject: [PATCH 044/129] Accepting request 135289 from home:elvigia:branches:Base:System - Update to Linux 3.6.x headers. OBS-URL: https://build.opensuse.org/request/show/135289 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=57 --- linux-glibc-devel-3.4.tar.bz2 | 3 --- linux-glibc-devel-3.6-rc6.tar.bz2 | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.4.tar.bz2 create mode 100644 linux-glibc-devel-3.6-rc6.tar.bz2 diff --git a/linux-glibc-devel-3.4.tar.bz2 b/linux-glibc-devel-3.4.tar.bz2 deleted file mode 100644 index 3a9b0cc..0000000 --- a/linux-glibc-devel-3.4.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fb29ba2db2596a11bcea0911874095f23c4b4afbd22611cf3995e65d0c750a18 -size 852649 diff --git a/linux-glibc-devel-3.6-rc6.tar.bz2 b/linux-glibc-devel-3.6-rc6.tar.bz2 new file mode 100644 index 0000000..cd69fa3 --- /dev/null +++ b/linux-glibc-devel-3.6-rc6.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c58a07f6f2d54dcb9afa6138a4f779f15ec3d61095c2f36841480f71d3078cfd +size 856452 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 42ae4a8..c9b4ad5 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + ------------------------------------------------------------------- Tue May 22 07:43:50 UTC 2012 - aj@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 5fbd2f1..bbe51ca 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,10 +25,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.4.0 +Version: 3.6.0 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.4 +%define upstream_version 3.6-rc6 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build Provides: kernel-headers -- 2.49.0 From f58786cea3fbfe1520dae1ca62bc8e7d8e9dfcf282b856dc7e7d5d1fe33aa19d Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Thu, 27 Sep 2012 08:06:47 +0000 Subject: [PATCH 045/129] - unfuzzy patch to fix build OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=59 --- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch | 26 +++++++++++++++++------ linux-glibc-devel.changes | 5 +++++ 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch index be61a5a..95daf08 100644 --- a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch +++ b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch @@ -6,7 +6,9 @@ python strace syslogd ---- usr/include/asm-arm/socket.h +Index: usr/include/asm-arm/socket.h +=================================================================== +--- usr/include/asm-arm/socket.h.orig +++ usr/include/asm-arm/socket.h @@ -21,7 +21,6 @@ #define SO_NO_CHECK 11 @@ -16,7 +18,9 @@ syslogd /* To add :#define SO_REUSEPORT 15 */ #define SO_PASSCRED 16 #define SO_PEERCRED 17 ---- usr/include/asm-generic/socket.h +Index: usr/include/asm-generic/socket.h +=================================================================== +--- usr/include/asm-generic/socket.h.orig +++ usr/include/asm-generic/socket.h @@ -21,7 +21,6 @@ #define SO_NO_CHECK 11 @@ -26,7 +30,9 @@ syslogd /* To add :#define SO_REUSEPORT 15 */ #ifndef SO_PASSCRED /* powerpc only differs in these */ ---- usr/include/asm-ia64/socket.h +Index: usr/include/asm-ia64/socket.h +=================================================================== +--- usr/include/asm-ia64/socket.h.orig +++ usr/include/asm-ia64/socket.h @@ -30,7 +30,6 @@ #define SO_NO_CHECK 11 @@ -36,7 +42,9 @@ syslogd /* To add :#define SO_REUSEPORT 15 */ #define SO_PASSCRED 16 #define SO_PEERCRED 17 ---- usr/include/asm-parisc/socket.h +Index: usr/include/asm-parisc/socket.h +=================================================================== +--- usr/include/asm-parisc/socket.h.orig +++ usr/include/asm-parisc/socket.h @@ -30,7 +30,6 @@ @@ -46,7 +54,9 @@ syslogd #define SO_PASSCRED 0x4010 #define SO_PEERCRED 0x4011 #define SO_TIMESTAMP 0x4012 ---- usr/include/asm-powerpc/socket.h +Index: usr/include/asm-powerpc/socket.h +=================================================================== +--- usr/include/asm-powerpc/socket.h.orig +++ usr/include/asm-powerpc/socket.h @@ -28,7 +28,6 @@ #define SO_NO_CHECK 11 @@ -56,9 +66,11 @@ syslogd /* To add :#define SO_REUSEPORT 15 */ #define SO_RCVLOWAT 16 #define SO_SNDLOWAT 17 ---- usr/include/asm-s390/socket.h +Index: usr/include/asm-s390/socket.h +=================================================================== +--- usr/include/asm-s390/socket.h.orig +++ usr/include/asm-s390/socket.h -@@ -29,7 +29,6 @@ +@@ -27,7 +27,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 13 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index c9b4ad5..8fe90e5 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + ------------------------------------------------------------------- Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org -- 2.49.0 From d74587338ae0ac6aef32721be659fddf23a7f601bf6a47fe0beb39e11abd4046 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 21 Dec 2012 09:34:49 +0000 Subject: [PATCH 046/129] Accepting request 146216 from security:netfilter - Update to new upstream release 3.7.1 (required for xtables-addons that is currently failing in factory) OBS-URL: https://build.opensuse.org/request/show/146216 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=61 --- install_all.sh | 6 +-- linux-glibc-devel-3.6-rc6.tar.bz2 | 3 -- linux-glibc-devel-3.7.1.tar.xz | 3 ++ linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch | 63 +++++++++++++---------- linux-glibc-devel.changes | 8 +++ linux-glibc-devel.spec | 15 +++--- 6 files changed, 56 insertions(+), 42 deletions(-) delete mode 100644 linux-glibc-devel-3.6-rc6.tar.bz2 create mode 100644 linux-glibc-devel-3.7.1.tar.xz diff --git a/install_all.sh b/install_all.sh index 800bcf8..20fa776 100644 --- a/install_all.sh +++ b/install_all.sh @@ -1,10 +1,10 @@ #!/bin/bash -# bash -x $0 linux-1.2.3.tar.bz2 +# bash -x $0 linux-1.2.3.tar.xz set -e kernel=$1 if ! test -f "$1" then - echo "Usage: ${0##*/} linux-1.2.3.tar.gz" + echo "Usage: ${0##*/} linux-1.2.3.tar.xz" exit 1 fi if echo $PWD | grep -q :; then @@ -80,6 +80,6 @@ do done popd du -sh "$header_dir/usr" -tar -cjf "$header_dir.tar.bz2" "${header_dir##*/}" +tar -cJf "$header_dir.tar.xz" "${header_dir##*/}" rm -rf $header_dir linux-${kernel_dir} diff --git a/linux-glibc-devel-3.6-rc6.tar.bz2 b/linux-glibc-devel-3.6-rc6.tar.bz2 deleted file mode 100644 index cd69fa3..0000000 --- a/linux-glibc-devel-3.6-rc6.tar.bz2 +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c58a07f6f2d54dcb9afa6138a4f779f15ec3d61095c2f36841480f71d3078cfd -size 856452 diff --git a/linux-glibc-devel-3.7.1.tar.xz b/linux-glibc-devel-3.7.1.tar.xz new file mode 100644 index 0000000..b2b1b13 --- /dev/null +++ b/linux-glibc-devel-3.7.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8cbdc583de7a5be87c789123137dcaa2f3948e78a18b44966c09654c62286a +size 788476 diff --git a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch index 95daf08..6c28ac6 100644 --- a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch +++ b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch @@ -6,22 +6,19 @@ python strace syslogd -Index: usr/include/asm-arm/socket.h +--- + usr/include/asm-generic/socket.h | 1 - + usr/include/asm-ia64/socket.h | 1 - + usr/include/asm-parisc/socket.h | 1 - + usr/include/asm-powerpc/socket.h | 1 - + usr/include/asm-s390/socket.h | 1 - + usr/include/asm-sparc/socket.h | 1 - + 6 files changed, 6 deletions(-) + +Index: linux-glibc-devel-3.7.1/usr/include/asm-generic/socket.h =================================================================== ---- usr/include/asm-arm/socket.h.orig -+++ usr/include/asm-arm/socket.h -@@ -21,7 +21,6 @@ - #define SO_NO_CHECK 11 - #define SO_PRIORITY 12 - #define SO_LINGER 13 --#define SO_BSDCOMPAT 14 - /* To add :#define SO_REUSEPORT 15 */ - #define SO_PASSCRED 16 - #define SO_PEERCRED 17 -Index: usr/include/asm-generic/socket.h -=================================================================== ---- usr/include/asm-generic/socket.h.orig -+++ usr/include/asm-generic/socket.h +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-generic/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-generic/socket.h @@ -21,7 +21,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 @@ -30,10 +27,10 @@ Index: usr/include/asm-generic/socket.h /* To add :#define SO_REUSEPORT 15 */ #ifndef SO_PASSCRED /* powerpc only differs in these */ -Index: usr/include/asm-ia64/socket.h +Index: linux-glibc-devel-3.7.1/usr/include/asm-ia64/socket.h =================================================================== ---- usr/include/asm-ia64/socket.h.orig -+++ usr/include/asm-ia64/socket.h +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-ia64/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-ia64/socket.h @@ -30,7 +30,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 @@ -42,10 +39,10 @@ Index: usr/include/asm-ia64/socket.h /* To add :#define SO_REUSEPORT 15 */ #define SO_PASSCRED 16 #define SO_PEERCRED 17 -Index: usr/include/asm-parisc/socket.h +Index: linux-glibc-devel-3.7.1/usr/include/asm-parisc/socket.h =================================================================== ---- usr/include/asm-parisc/socket.h.orig -+++ usr/include/asm-parisc/socket.h +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-parisc/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-parisc/socket.h @@ -30,7 +30,6 @@ #define SO_NO_CHECK 0x400b @@ -54,10 +51,10 @@ Index: usr/include/asm-parisc/socket.h #define SO_PASSCRED 0x4010 #define SO_PEERCRED 0x4011 #define SO_TIMESTAMP 0x4012 -Index: usr/include/asm-powerpc/socket.h +Index: linux-glibc-devel-3.7.1/usr/include/asm-powerpc/socket.h =================================================================== ---- usr/include/asm-powerpc/socket.h.orig -+++ usr/include/asm-powerpc/socket.h +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-powerpc/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-powerpc/socket.h @@ -28,7 +28,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 @@ -66,10 +63,10 @@ Index: usr/include/asm-powerpc/socket.h /* To add :#define SO_REUSEPORT 15 */ #define SO_RCVLOWAT 16 #define SO_SNDLOWAT 17 -Index: usr/include/asm-s390/socket.h +Index: linux-glibc-devel-3.7.1/usr/include/asm-s390/socket.h =================================================================== ---- usr/include/asm-s390/socket.h.orig -+++ usr/include/asm-s390/socket.h +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-s390/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-s390/socket.h @@ -27,7 +27,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 @@ -78,3 +75,15 @@ Index: usr/include/asm-s390/socket.h /* To add :#define SO_REUSEPORT 15 */ #define SO_PASSCRED 16 #define SO_PEERCRED 17 +Index: linux-glibc-devel-3.7.1/usr/include/asm-sparc/socket.h +=================================================================== +--- linux-glibc-devel-3.7.1.orig/usr/include/asm-sparc/socket.h ++++ linux-glibc-devel-3.7.1/usr/include/asm-sparc/socket.h +@@ -16,7 +16,6 @@ + #define SO_LINGER 0x0080 + #define SO_OOBINLINE 0x0100 + /* To add :#define SO_REUSEPORT 0x0200 */ +-#define SO_BSDCOMPAT 0x0400 + #define SO_RCVLOWAT 0x0800 + #define SO_SNDLOWAT 0x1000 + #define SO_RCVTIMEO 0x2000 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 8fe90e5..3104744 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + ------------------------------------------------------------------- Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index bbe51ca..eee1d7e 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -16,8 +16,6 @@ # -BuildRequires: fdupes - Name: linux-glibc-devel Summary: Linux headers for userspace development License: GPL-2.0 @@ -25,17 +23,19 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.6.0 +Version: 3.7.1 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.6-rc6 +%define upstream_version 3.7.1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build +BuildRequires: fdupes +BuildRequires: xz Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils -Source: %{name}-%{upstream_version}.tar.bz2 +Source: %{name}-%{upstream_version}.tar.xz Source1: install_all.sh Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch @@ -50,7 +50,7 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} -%patch1 +%patch -P 1 -p1 %build cat > version.h <<-BOGUS @@ -172,9 +172,6 @@ esac ln -sfn asm-$asm_link usr/include/asm exit 0 -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root) %{_prefix}/include/* -- 2.49.0 From 6879ff199629fd36f3610f55227505636b017be0f403f0946e9c0b370a6eb865 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Sun, 10 Feb 2013 17:35:52 +0000 Subject: [PATCH 047/129] - Add asm_link for aarch64 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=63 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 3104744..6c59a5b 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + ------------------------------------------------------------------- Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index eee1d7e..11deed6 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -136,6 +136,7 @@ case "$(uname -m)" in parisc) asm_link=parisc ;; *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; + aarch64) asm_link=arm64 ;; *) asm_link=x86 ;; esac if test -L usr/include/asm @@ -167,6 +168,7 @@ case "$(uname -m)" in parisc) asm_link=parisc ;; *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; + aarch64) asm_link=arm64 ;; *) asm_link=x86 ;; esac ln -sfn asm-$asm_link usr/include/asm -- 2.49.0 From b28f3c4195648ad2230cb7cb0b03d7d2cdf406c9ef28e999a493abae8a248b74 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Fri, 3 May 2013 08:33:23 +0000 Subject: [PATCH 048/129] Accepting request 174348 from home:elvigia:branches:Base:System - Update to kernel headers from 3.9 final. - Update to kernel headers from 3.9rc4 - linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh and update due to the addition of SOREUSEPORT OBS-URL: https://build.opensuse.org/request/show/174348 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=65 --- linux-glibc-devel-3.7.1.tar.xz | 3 -- linux-glibc-devel-3.9.tar.xz | 3 ++ linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch | 48 +++++++++-------------- linux-glibc-devel.changes | 12 ++++++ linux-glibc-devel.spec | 4 +- 5 files changed, 35 insertions(+), 35 deletions(-) delete mode 100644 linux-glibc-devel-3.7.1.tar.xz create mode 100644 linux-glibc-devel-3.9.tar.xz diff --git a/linux-glibc-devel-3.7.1.tar.xz b/linux-glibc-devel-3.7.1.tar.xz deleted file mode 100644 index b2b1b13..0000000 --- a/linux-glibc-devel-3.7.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bf8cbdc583de7a5be87c789123137dcaa2f3948e78a18b44966c09654c62286a -size 788476 diff --git a/linux-glibc-devel-3.9.tar.xz b/linux-glibc-devel-3.9.tar.xz new file mode 100644 index 0000000..304f511 --- /dev/null +++ b/linux-glibc-devel-3.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7688bb9f913009ad25f61bca937a06c0736a6890cb86295800d70e7f86ec371f +size 807960 diff --git a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch index 6c28ac6..44eca5e 100644 --- a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch +++ b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch @@ -15,34 +15,28 @@ syslogd usr/include/asm-sparc/socket.h | 1 - 6 files changed, 6 deletions(-) -Index: linux-glibc-devel-3.7.1/usr/include/asm-generic/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-generic/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-generic/socket.h +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-generic/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-generic/socket.h @@ -21,7 +21,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 13 -#define SO_BSDCOMPAT 14 - /* To add :#define SO_REUSEPORT 15 */ - + #define SO_REUSEPORT 15 #ifndef SO_PASSCRED /* powerpc only differs in these */ -Index: linux-glibc-devel-3.7.1/usr/include/asm-ia64/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-ia64/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-ia64/socket.h + #define SO_PASSCRED 16 +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-ia64/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-ia64/socket.h @@ -30,7 +30,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 13 -#define SO_BSDCOMPAT 14 - /* To add :#define SO_REUSEPORT 15 */ + #define SO_REUSEPORT 15 #define SO_PASSCRED 16 #define SO_PEERCRED 17 -Index: linux-glibc-devel-3.7.1/usr/include/asm-parisc/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-parisc/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-parisc/socket.h +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-parisc/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-parisc/socket.h @@ -30,7 +30,6 @@ #define SO_NO_CHECK 0x400b @@ -51,38 +45,32 @@ Index: linux-glibc-devel-3.7.1/usr/include/asm-parisc/socket.h #define SO_PASSCRED 0x4010 #define SO_PEERCRED 0x4011 #define SO_TIMESTAMP 0x4012 -Index: linux-glibc-devel-3.7.1/usr/include/asm-powerpc/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-powerpc/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-powerpc/socket.h +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-powerpc/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-powerpc/socket.h @@ -28,7 +28,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 13 -#define SO_BSDCOMPAT 14 - /* To add :#define SO_REUSEPORT 15 */ + #define SO_REUSEPORT 15 #define SO_RCVLOWAT 16 #define SO_SNDLOWAT 17 -Index: linux-glibc-devel-3.7.1/usr/include/asm-s390/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-s390/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-s390/socket.h +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-s390/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-s390/socket.h @@ -27,7 +27,6 @@ #define SO_NO_CHECK 11 #define SO_PRIORITY 12 #define SO_LINGER 13 -#define SO_BSDCOMPAT 14 - /* To add :#define SO_REUSEPORT 15 */ + #define SO_REUSEPORT 15 #define SO_PASSCRED 16 #define SO_PEERCRED 17 -Index: linux-glibc-devel-3.7.1/usr/include/asm-sparc/socket.h -=================================================================== ---- linux-glibc-devel-3.7.1.orig/usr/include/asm-sparc/socket.h -+++ linux-glibc-devel-3.7.1/usr/include/asm-sparc/socket.h +--- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-sparc/socket.h ++++ linux-glibc-devel-3.9-rc4/usr/include/asm-sparc/socket.h @@ -16,7 +16,6 @@ #define SO_LINGER 0x0080 #define SO_OOBINLINE 0x0100 - /* To add :#define SO_REUSEPORT 0x0200 */ + #define SO_REUSEPORT 0x0200 -#define SO_BSDCOMPAT 0x0400 #define SO_RCVLOWAT 0x0800 #define SO_SNDLOWAT 0x1000 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6c59a5b..6cc69cb 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + ------------------------------------------------------------------- Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 11deed6..2201269 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.7.1 +Version: 3.9 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.7.1 +%define upstream_version 3.9 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 4382551b3ac6abe60bf2458b23fb9834662fad277f3fd6e8313ca2f66e7268b0 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Tue, 2 Jul 2013 07:43:44 +0000 Subject: [PATCH 049/129] Accepting request 181717 from home:elvigia:branches:Base:System - Update to kernel headers from 3.10 final. OBS-URL: https://build.opensuse.org/request/show/181717 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=67 --- linux-glibc-devel-3.10.tar.xz | 3 +++ linux-glibc-devel-3.9.tar.xz | 3 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 linux-glibc-devel-3.10.tar.xz delete mode 100644 linux-glibc-devel-3.9.tar.xz diff --git a/linux-glibc-devel-3.10.tar.xz b/linux-glibc-devel-3.10.tar.xz new file mode 100644 index 0000000..b6013c8 --- /dev/null +++ b/linux-glibc-devel-3.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6394c0772f3503e95639f574348b8a55b5b6923324e376da5e1f95d0ea8ce751 +size 820164 diff --git a/linux-glibc-devel-3.9.tar.xz b/linux-glibc-devel-3.9.tar.xz deleted file mode 100644 index 304f511..0000000 --- a/linux-glibc-devel-3.9.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7688bb9f913009ad25f61bca937a06c0736a6890cb86295800d70e7f86ec371f -size 807960 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6cc69cb..7adb4cc 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + ------------------------------------------------------------------- Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 2201269..59661ce 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.9 +Version: 3.10 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.9 +%define upstream_version 3.10 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 26ef98848f18adf1a317dfec8a5450ba62403344aaa651b72aa634cad508e2e9 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Mon, 26 Aug 2013 12:00:50 +0000 Subject: [PATCH 050/129] Accepting request 196052 from home:elvigia:branches:Base:System - update to kerenel headers from 3.11rc6, not final but matches current factory kernel. OBS-URL: https://build.opensuse.org/request/show/196052 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=69 --- linux-glibc-devel-3.10.tar.xz | 3 --- linux-glibc-devel-3.11-rc6.tar.xz | 3 +++ linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.10.tar.xz create mode 100644 linux-glibc-devel-3.11-rc6.tar.xz diff --git a/linux-glibc-devel-3.10.tar.xz b/linux-glibc-devel-3.10.tar.xz deleted file mode 100644 index b6013c8..0000000 --- a/linux-glibc-devel-3.10.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6394c0772f3503e95639f574348b8a55b5b6923324e376da5e1f95d0ea8ce751 -size 820164 diff --git a/linux-glibc-devel-3.11-rc6.tar.xz b/linux-glibc-devel-3.11-rc6.tar.xz new file mode 100644 index 0000000..35b501d --- /dev/null +++ b/linux-glibc-devel-3.11-rc6.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa2955aa7fa3eceb06d6fd56790a07f6f17b25a04ea7225614df724d93ec3c5f +size 822268 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 7adb4cc..dc113c6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- update to kerenel headers from 3.11rc6, not final but + matches current factory kernel. + ------------------------------------------------------------------- Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 59661ce..057630d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.10 +Version: 3.11 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.10 +%define upstream_version 3.11-rc6 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From ca211a71baed22aebea5d451ca48451fc4342961a604016557164856d47a2c6d Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Mon, 26 Aug 2013 15:10:36 +0000 Subject: [PATCH 051/129] Accepting request 196399 from home:dimstar:branches:Base:System Fix typo in .changes OBS-URL: https://build.opensuse.org/request/show/196399 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=70 --- linux-glibc-devel.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index dc113c6..0ec8727 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org -- update to kerenel headers from 3.11rc6, not final but +- Update to kernel headers from 3.11rc6: not final but matches current factory kernel. ------------------------------------------------------------------- -- 2.49.0 From fb45827bec973458e255f9ef6e32c0f7dd418265c3f45bb1f67f70c70485742a Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 9 Oct 2013 15:02:51 +0000 Subject: [PATCH 052/129] Accepting request 202696 from home:Andreas_Schwab:Factory - Don't remove asm-m68k, make link for m68k OBS-URL: https://build.opensuse.org/request/show/202696 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=72 --- install_all.sh | 1 - linux-glibc-devel-3.11-rc6.tar.xz | 4 ++-- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 ++ 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/install_all.sh b/install_all.sh index 20fa776..87bd758 100644 --- a/install_all.sh +++ b/install_all.sh @@ -44,7 +44,6 @@ for asm in \ frv \ h8300 \ m32r \ - m68k \ m68knommu \ mips \ mn10300 \ diff --git a/linux-glibc-devel-3.11-rc6.tar.xz b/linux-glibc-devel-3.11-rc6.tar.xz index 35b501d..56ecc32 100644 --- a/linux-glibc-devel-3.11-rc6.tar.xz +++ b/linux-glibc-devel-3.11-rc6.tar.xz @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fa2955aa7fa3eceb06d6fd56790a07f6f17b25a04ea7225614df724d93ec3c5f -size 822268 +oid sha256:8ef48fd14f7d1f637a7f75b7fe87a655e7d1074051245fbe9713122a5c96d0bb +size 831428 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 0ec8727..5f9a712 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + ------------------------------------------------------------------- Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 057630d..5fbf92f 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -137,6 +137,7 @@ case "$(uname -m)" in *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; aarch64) asm_link=arm64 ;; + m68k) asm_link=m68k ;; *) asm_link=x86 ;; esac if test -L usr/include/asm @@ -169,6 +170,7 @@ case "$(uname -m)" in *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; aarch64) asm_link=arm64 ;; + m68k) asm_link=m68k ;; *) asm_link=x86 ;; esac ln -sfn asm-$asm_link usr/include/asm -- 2.49.0 From fff5063f9d66324fad59b6bd6f972474654ea0efd9cd9449e9a83f1b2f4f1f40 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Tue, 4 Mar 2014 21:30:27 +0000 Subject: [PATCH 053/129] Accepting request 224646 from home:michal-m:branches:Base:System - Update to kernel headers 3.13. - Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does issue a warning when a process uses this socked option. OBS-URL: https://build.opensuse.org/request/show/224646 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=74 --- linux-glibc-devel-3.11-rc6.tar.xz | 3 - linux-glibc-devel-3.13.tar.xz | 3 + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch | 77 ----------------------- linux-glibc-devel.changes | 7 +++ linux-glibc-devel.spec | 8 +-- 5 files changed, 13 insertions(+), 85 deletions(-) delete mode 100644 linux-glibc-devel-3.11-rc6.tar.xz create mode 100644 linux-glibc-devel-3.13.tar.xz delete mode 100644 linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch diff --git a/linux-glibc-devel-3.11-rc6.tar.xz b/linux-glibc-devel-3.11-rc6.tar.xz deleted file mode 100644 index 56ecc32..0000000 --- a/linux-glibc-devel-3.11-rc6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8ef48fd14f7d1f637a7f75b7fe87a655e7d1074051245fbe9713122a5c96d0bb -size 831428 diff --git a/linux-glibc-devel-3.13.tar.xz b/linux-glibc-devel-3.13.tar.xz new file mode 100644 index 0000000..31b4fc2 --- /dev/null +++ b/linux-glibc-devel-3.13.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3fb43f1744af3cfde29f1cec80e2ee26519efd242f08d5f4dd7df792ac07b6ac +size 829908 diff --git a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch b/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch deleted file mode 100644 index 44eca5e..0000000 --- a/linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch +++ /dev/null @@ -1,77 +0,0 @@ -these packages use the obsolete SO_BSDCOMPAT: -bind -dietlibc (#define only) -pidgin -python -strace -syslogd - ---- - usr/include/asm-generic/socket.h | 1 - - usr/include/asm-ia64/socket.h | 1 - - usr/include/asm-parisc/socket.h | 1 - - usr/include/asm-powerpc/socket.h | 1 - - usr/include/asm-s390/socket.h | 1 - - usr/include/asm-sparc/socket.h | 1 - - 6 files changed, 6 deletions(-) - ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-generic/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-generic/socket.h -@@ -21,7 +21,6 @@ - #define SO_NO_CHECK 11 - #define SO_PRIORITY 12 - #define SO_LINGER 13 --#define SO_BSDCOMPAT 14 - #define SO_REUSEPORT 15 - #ifndef SO_PASSCRED /* powerpc only differs in these */ - #define SO_PASSCRED 16 ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-ia64/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-ia64/socket.h -@@ -30,7 +30,6 @@ - #define SO_NO_CHECK 11 - #define SO_PRIORITY 12 - #define SO_LINGER 13 --#define SO_BSDCOMPAT 14 - #define SO_REUSEPORT 15 - #define SO_PASSCRED 16 - #define SO_PEERCRED 17 ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-parisc/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-parisc/socket.h -@@ -30,7 +30,6 @@ - - #define SO_NO_CHECK 0x400b - #define SO_PRIORITY 0x400c --#define SO_BSDCOMPAT 0x400e - #define SO_PASSCRED 0x4010 - #define SO_PEERCRED 0x4011 - #define SO_TIMESTAMP 0x4012 ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-powerpc/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-powerpc/socket.h -@@ -28,7 +28,6 @@ - #define SO_NO_CHECK 11 - #define SO_PRIORITY 12 - #define SO_LINGER 13 --#define SO_BSDCOMPAT 14 - #define SO_REUSEPORT 15 - #define SO_RCVLOWAT 16 - #define SO_SNDLOWAT 17 ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-s390/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-s390/socket.h -@@ -27,7 +27,6 @@ - #define SO_NO_CHECK 11 - #define SO_PRIORITY 12 - #define SO_LINGER 13 --#define SO_BSDCOMPAT 14 - #define SO_REUSEPORT 15 - #define SO_PASSCRED 16 - #define SO_PEERCRED 17 ---- linux-glibc-devel-3.9-rc4.orig/usr/include/asm-sparc/socket.h -+++ linux-glibc-devel-3.9-rc4/usr/include/asm-sparc/socket.h -@@ -16,7 +16,6 @@ - #define SO_LINGER 0x0080 - #define SO_OOBINLINE 0x0100 - #define SO_REUSEPORT 0x0200 --#define SO_BSDCOMPAT 0x0400 - #define SO_RCVLOWAT 0x0800 - #define SO_SNDLOWAT 0x1000 - #define SO_RCVTIMEO 0x2000 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 5f9a712..f4e911a 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socked option. + ------------------------------------------------------------------- Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 5fbf92f..2c07365 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.11 +Version: 3.13 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.11-rc6 +%define upstream_version 3.13 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes @@ -37,7 +37,6 @@ Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils Source: %{name}-%{upstream_version}.tar.xz Source1: install_all.sh -Patch1: linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch %description This package provides Linux kernel headers, the kernel API description @@ -50,7 +49,6 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} -%patch -P 1 -p1 %build cat > version.h <<-BOGUS -- 2.49.0 From 92a0d85443d73f7503052d8ff06a872ff45330e8a3975747dda55b39992ca109 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Wed, 2 Apr 2014 12:31:05 +0000 Subject: [PATCH 054/129] Accepting request 228351 from home:elvigia:branches:Base:System - Update to kernel headers 3.14 OBS-URL: https://build.opensuse.org/request/show/228351 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=76 --- linux-glibc-devel-3.13.tar.xz | 3 --- linux-glibc-devel-3.14.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.13.tar.xz create mode 100644 linux-glibc-devel-3.14.tar.xz diff --git a/linux-glibc-devel-3.13.tar.xz b/linux-glibc-devel-3.13.tar.xz deleted file mode 100644 index 31b4fc2..0000000 --- a/linux-glibc-devel-3.13.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3fb43f1744af3cfde29f1cec80e2ee26519efd242f08d5f4dd7df792ac07b6ac -size 829908 diff --git a/linux-glibc-devel-3.14.tar.xz b/linux-glibc-devel-3.14.tar.xz new file mode 100644 index 0000000..9bcc3e4 --- /dev/null +++ b/linux-glibc-devel-3.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd76b96efd270b3d727db5a29766b47e1526d39f5726076e355bd686f6401247 +size 861460 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index f4e911a..b9892d3 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + ------------------------------------------------------------------- Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 2c07365..a56f369 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.13 +Version: 3.14 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.13 +%define upstream_version 3.14 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 7499d19cb9ec60102d1e8975b9c6facce31b7217a72157c05db1c08035333f28 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Mon, 23 Jun 2014 04:50:29 +0000 Subject: [PATCH 055/129] Accepting request 238309 from home:elvigia:branches:Base:System - Update to kernel headers from 3.15.1 OBS-URL: https://build.opensuse.org/request/show/238309 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=78 --- linux-glibc-devel-3.14.tar.xz | 3 --- linux-glibc-devel-3.15.1.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.14.tar.xz create mode 100644 linux-glibc-devel-3.15.1.tar.xz diff --git a/linux-glibc-devel-3.14.tar.xz b/linux-glibc-devel-3.14.tar.xz deleted file mode 100644 index 9bcc3e4..0000000 --- a/linux-glibc-devel-3.14.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd76b96efd270b3d727db5a29766b47e1526d39f5726076e355bd686f6401247 -size 861460 diff --git a/linux-glibc-devel-3.15.1.tar.xz b/linux-glibc-devel-3.15.1.tar.xz new file mode 100644 index 0000000..dfd995b --- /dev/null +++ b/linux-glibc-devel-3.15.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3dc60d45460808aa34cfa901e1e3f22120a054616b5d2fe6bea119d38301953 +size 869068 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b9892d3..1576053 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + ------------------------------------------------------------------- Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index a56f369..a20b906 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.14 +Version: 3.15.1 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.14 +%define upstream_version 3.15.1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From f79a9e884679feebe93a799e68fe447c2f6aac2c058c27f799ef8ba9cbcb62b0 Mon Sep 17 00:00:00 2001 From: Marcus Meissner Date: Tue, 12 Aug 2014 11:32:58 +0000 Subject: [PATCH 056/129] Accepting request 244149 from home:elvigia:branches:Base:System - Update to kernel headers from 3.16 OBS-URL: https://build.opensuse.org/request/show/244149 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=80 --- linux-glibc-devel-3.15.1.tar.xz | 3 --- linux-glibc-devel-3.16.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.15.1.tar.xz create mode 100644 linux-glibc-devel-3.16.tar.xz diff --git a/linux-glibc-devel-3.15.1.tar.xz b/linux-glibc-devel-3.15.1.tar.xz deleted file mode 100644 index dfd995b..0000000 --- a/linux-glibc-devel-3.15.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f3dc60d45460808aa34cfa901e1e3f22120a054616b5d2fe6bea119d38301953 -size 869068 diff --git a/linux-glibc-devel-3.16.tar.xz b/linux-glibc-devel-3.16.tar.xz new file mode 100644 index 0000000..595cb0d --- /dev/null +++ b/linux-glibc-devel-3.16.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33ad4b1a68c03e48c1f50056f73d0a49d9d13fdd9170f33f85fd4d125c6c9b3a +size 875476 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 1576053..4d5cad6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + ------------------------------------------------------------------- Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index a20b906..f696ade 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.15.1 +Version: 3.16 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.15.1 +%define upstream_version 3.16 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 2047ceb84adfee0a9abe059078bbf92b346980ac91889e7261a4edf9fbb32e71 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Thu, 16 Oct 2014 05:56:17 +0000 Subject: [PATCH 057/129] Accepting request 254076 from home:elvigia:branches:Base:System ** Ideally, accept this request together or after accepting 3.17 kernel** - Update to kernel headers from 3.17 OBS-URL: https://build.opensuse.org/request/show/254076 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=82 --- linux-glibc-devel-3.16.tar.xz | 3 --- linux-glibc-devel-3.17.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.16.tar.xz create mode 100644 linux-glibc-devel-3.17.tar.xz diff --git a/linux-glibc-devel-3.16.tar.xz b/linux-glibc-devel-3.16.tar.xz deleted file mode 100644 index 595cb0d..0000000 --- a/linux-glibc-devel-3.16.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33ad4b1a68c03e48c1f50056f73d0a49d9d13fdd9170f33f85fd4d125c6c9b3a -size 875476 diff --git a/linux-glibc-devel-3.17.tar.xz b/linux-glibc-devel-3.17.tar.xz new file mode 100644 index 0000000..230b540 --- /dev/null +++ b/linux-glibc-devel-3.17.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33b8d355c67800c6fc00137c6a99b2073f577d2c8727c9acf97ad0c7549a3379 +size 879116 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4d5cad6..ba894e4 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + ------------------------------------------------------------------- Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index f696ade..3f4f1c1 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.16 +Version: 3.17 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.16 +%define upstream_version 3.17 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 8f2483a2103eb2015d6e220c9468e4a77dab06db83c2441ec4e036baf25fec71 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 28 Jan 2015 15:19:36 +0000 Subject: [PATCH 058/129] Accepting request 283167 from home:michal-m:branches:Base:System issue a warning when a process uses this socket option. - Only removing /usr/include/scsi/scsi.h (bnc#834498) OBS-URL: https://build.opensuse.org/request/show/283167 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=84 --- linux-glibc-devel.changes | 7 ++++++- linux-glibc-devel.spec | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index ba894e4..265101c 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -23,7 +23,12 @@ Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz - Update to kernel headers 3.13. - Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does - issue a warning when a process uses this socked option. + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2014 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) ------------------------------------------------------------------- Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 3f4f1c1..d05305e 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -102,7 +102,7 @@ cp -a version.h $RPM_BUILD_ROOT/usr/include/linux/ # Temporarily exclude i2c header files, which are provided by i2c-tools instead rm -fv $RPM_BUILD_ROOT/usr/include/linux/i2c-dev.h # resolve file conflict with glibc for now -rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi* +rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi.h # Replace the directory /usr/include/asm with a symlink. # libc contained a symlink /usr/include/asm into kernel-source up to 7.0 (2.1.3) # glibc-devel contained a symlink /usr/include/asm into kernel-source in 7.1 (2.2) -- 2.49.0 From b2137b9e0b40e1229956ca8b60a9c501d98a860bbb285ac095816faf06db2a19 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 28 Jan 2015 15:34:25 +0000 Subject: [PATCH 059/129] Fix changelog OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=85 --- linux-glibc-devel.changes | 10 +++++----- linux-glibc-devel.spec | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 265101c..4cd17de 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + ------------------------------------------------------------------- Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org @@ -25,11 +30,6 @@ Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz - Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does issue a warning when a process uses this socket option. -------------------------------------------------------------------- -Fri Jan 24 06:39:31 UTC 2014 - jjolly@suse.com - -- Only removing /usr/include/scsi/scsi.h (bnc#834498) - ------------------------------------------------------------------- Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index d05305e..c2ebd9a 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed -- 2.49.0 From c5cc76afd2378b80655ccbaab290c48d24e5af0fd857ef473a47e9a566019ebb Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Sat, 25 Apr 2015 08:09:28 +0000 Subject: [PATCH 060/129] Accepting request 299035 from home:elvigia:branches:Base:System - Update to kernel headers 4.0 OBS-URL: https://build.opensuse.org/request/show/299035 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=87 --- linux-glibc-devel-3.17.tar.xz | 3 --- linux-glibc-devel-4.0.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-3.17.tar.xz create mode 100644 linux-glibc-devel-4.0.tar.xz diff --git a/linux-glibc-devel-3.17.tar.xz b/linux-glibc-devel-3.17.tar.xz deleted file mode 100644 index 230b540..0000000 --- a/linux-glibc-devel-3.17.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:33b8d355c67800c6fc00137c6a99b2073f577d2c8727c9acf97ad0c7549a3379 -size 879116 diff --git a/linux-glibc-devel-4.0.tar.xz b/linux-glibc-devel-4.0.tar.xz new file mode 100644 index 0000000..b7f80aa --- /dev/null +++ b/linux-glibc-devel-4.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fdb6425452f3a6b7cdb43ba8e3af3e9a5d33e96b0fd3a9308680f1ec5ebbec6 +size 919904 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4cd17de..6f3b958 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + ------------------------------------------------------------------- Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c2ebd9a..7b04cac 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 3.17 +Version: 4.0 Release: 0 # A "-" is not allowed in version -%define upstream_version 3.17 +%define upstream_version 4.0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 79b10ba6470107beef8d74407cac0b4b0c7cf1d244ed243c199f31a18478b42b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 6 Jul 2015 06:56:21 +0000 Subject: [PATCH 061/129] Accepting request 315019 from home:elvigia:branches:Base:System - Update to kernel headers 4.1 OBS-URL: https://build.opensuse.org/request/show/315019 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=89 --- linux-glibc-devel-4.0.tar.xz | 3 --- linux-glibc-devel-4.1.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-4.0.tar.xz create mode 100644 linux-glibc-devel-4.1.tar.xz diff --git a/linux-glibc-devel-4.0.tar.xz b/linux-glibc-devel-4.0.tar.xz deleted file mode 100644 index b7f80aa..0000000 --- a/linux-glibc-devel-4.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7fdb6425452f3a6b7cdb43ba8e3af3e9a5d33e96b0fd3a9308680f1ec5ebbec6 -size 919904 diff --git a/linux-glibc-devel-4.1.tar.xz b/linux-glibc-devel-4.1.tar.xz new file mode 100644 index 0000000..8e87735 --- /dev/null +++ b/linux-glibc-devel-4.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baf7ea79241dd2f48be74879c638219b722454990d5594dd76e5d6878c158aba +size 928240 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6f3b958..a5d7339 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + ------------------------------------------------------------------- Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 7b04cac..6e23672 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 4.0 +Version: 4.1 Release: 0 # A "-" is not allowed in version -%define upstream_version 4.0 +%define upstream_version 4.1 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From a7794c782826aa3d7ec05af9b58ca7d90e8c7f7f2d5c25304ff7a48795e0bb63 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 29 Jul 2015 11:12:13 +0000 Subject: [PATCH 062/129] Accepting request 319270 from home:dimstar:Factory - Add linux-glibc-devel-if_pppox-includes.patch: fix compilation of userspace programs including if_pppox.h (e.g. ebtables). OBS-URL: https://build.opensuse.org/request/show/319270 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=91 --- linux-glibc-devel-if_pppox-includes.patch | 21 +++++++++++++++++++++ linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 linux-glibc-devel-if_pppox-includes.patch diff --git a/linux-glibc-devel-if_pppox-includes.patch b/linux-glibc-devel-if_pppox-includes.patch new file mode 100644 index 0000000..308c4e7 --- /dev/null +++ b/linux-glibc-devel-if_pppox-includes.patch @@ -0,0 +1,21 @@ +Fixes userspace compilation error: + +error: "IFNAMSIZ" undeclared here (not in a function) + +Signed-off-by: Mikko Rapeli +--- +include/uapi/linux/if_pppox.h | 1 + +1 file changed, 1 insertion(+) + +Index: linux-glibc-devel-4.1/usr/include/linux/if_pppox.h +=================================================================== +--- linux-glibc-devel-4.1.orig/usr/include/linux/if_pppox.h ++++ linux-glibc-devel-4.1/usr/include/linux/if_pppox.h +@@ -21,6 +21,7 @@ + #include + + #include ++#include + #include + #include + diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index a5d7339..e05d0d6 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jul 29 10:44:36 UTC 2015 - dimstar@opensuse.org + +- Add linux-glibc-devel-if_pppox-includes.patch: fix compilation of + userspace programs including if_pppox.h (e.g. ebtables). + ------------------------------------------------------------------- Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 6e23672..bb52755 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -37,6 +37,8 @@ Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils Source: %{name}-%{upstream_version}.tar.xz Source1: install_all.sh +# PATCH-FIX-UPSTREAM linux-glibc-devel-if_pppox-includes.patch dimstar@opensuse.org -- Fixes userspace compilation error +Patch0: linux-glibc-devel-if_pppox-includes.patch %description This package provides Linux kernel headers, the kernel API description @@ -49,6 +51,7 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} +%patch0 -p1 %build cat > version.h <<-BOGUS -- 2.49.0 From 2a7d6c80563b0805463f88105fa83653c1542442f6c5a7f9abafcd892ba0e041 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 29 Jul 2015 12:53:55 +0000 Subject: [PATCH 063/129] osc copypac from project:Base:System package:linux-glibc-devel revision:90 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=92 --- linux-glibc-devel-if_pppox-includes.patch | 21 --------------------- linux-glibc-devel.changes | 6 ------ linux-glibc-devel.spec | 3 --- 3 files changed, 30 deletions(-) delete mode 100644 linux-glibc-devel-if_pppox-includes.patch diff --git a/linux-glibc-devel-if_pppox-includes.patch b/linux-glibc-devel-if_pppox-includes.patch deleted file mode 100644 index 308c4e7..0000000 --- a/linux-glibc-devel-if_pppox-includes.patch +++ /dev/null @@ -1,21 +0,0 @@ -Fixes userspace compilation error: - -error: "IFNAMSIZ" undeclared here (not in a function) - -Signed-off-by: Mikko Rapeli ---- -include/uapi/linux/if_pppox.h | 1 + -1 file changed, 1 insertion(+) - -Index: linux-glibc-devel-4.1/usr/include/linux/if_pppox.h -=================================================================== ---- linux-glibc-devel-4.1.orig/usr/include/linux/if_pppox.h -+++ linux-glibc-devel-4.1/usr/include/linux/if_pppox.h -@@ -21,6 +21,7 @@ - #include - - #include -+#include - #include - #include - diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index e05d0d6..a5d7339 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,9 +1,3 @@ -------------------------------------------------------------------- -Wed Jul 29 10:44:36 UTC 2015 - dimstar@opensuse.org - -- Add linux-glibc-devel-if_pppox-includes.patch: fix compilation of - userspace programs including if_pppox.h (e.g. ebtables). - ------------------------------------------------------------------- Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index bb52755..6e23672 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -37,8 +37,6 @@ Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils Source: %{name}-%{upstream_version}.tar.xz Source1: install_all.sh -# PATCH-FIX-UPSTREAM linux-glibc-devel-if_pppox-includes.patch dimstar@opensuse.org -- Fixes userspace compilation error -Patch0: linux-glibc-devel-if_pppox-includes.patch %description This package provides Linux kernel headers, the kernel API description @@ -51,7 +49,6 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{upstream_version} -%patch0 -p1 %build cat > version.h <<-BOGUS -- 2.49.0 From 2e1994c1b593770c38061434a0d44299dc73233c8cce47d334a2a9340ad86a04 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 12 Oct 2015 15:21:37 +0000 Subject: [PATCH 064/129] Accepting request 338189 from home:k0da:branches:Base:System - Update to kernel headers 4.2 OBS-URL: https://build.opensuse.org/request/show/338189 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=93 --- linux-glibc-devel-4.1.tar.xz | 3 --- linux-glibc-devel-4.2.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-4.1.tar.xz create mode 100644 linux-glibc-devel-4.2.tar.xz diff --git a/linux-glibc-devel-4.1.tar.xz b/linux-glibc-devel-4.1.tar.xz deleted file mode 100644 index 8e87735..0000000 --- a/linux-glibc-devel-4.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:baf7ea79241dd2f48be74879c638219b722454990d5594dd76e5d6878c158aba -size 928240 diff --git a/linux-glibc-devel-4.2.tar.xz b/linux-glibc-devel-4.2.tar.xz new file mode 100644 index 0000000..d946498 --- /dev/null +++ b/linux-glibc-devel-4.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9890b076af53dda12983fb47d5625240701f62e626042b92db54c8b0de84add9 +size 925648 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index a5d7339..81f1a84 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + ------------------------------------------------------------------- Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 6e23672..80f3c51 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 4.1 +Version: 4.2 Release: 0 # A "-" is not allowed in version -%define upstream_version 4.1 +%define upstream_version 4.2 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From ad5d7a58f7c3fe7daf03bf022600ef8f6654cf1584300443cbcede6de2371ac9 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 13 Oct 2015 16:18:13 +0000 Subject: [PATCH 065/129] Accepting request 338506 from home:k0da:branches:Base:System - package back i2c-dev.h the one from i2c-tools is outdated OBS-URL: https://build.opensuse.org/request/show/338506 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=94 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 81f1a84..8729bb9 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + ------------------------------------------------------------------- Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 80f3c51..e9cea63 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -99,8 +99,6 @@ rm -rf $RPM_BUILD_ROOT mkdir $RPM_BUILD_ROOT cp -a usr $RPM_BUILD_ROOT cp -a version.h $RPM_BUILD_ROOT/usr/include/linux/ -# Temporarily exclude i2c header files, which are provided by i2c-tools instead -rm -fv $RPM_BUILD_ROOT/usr/include/linux/i2c-dev.h # resolve file conflict with glibc for now rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi.h # Replace the directory /usr/include/asm with a symlink. -- 2.49.0 From 48b1658c66064e5a4a58c6965e95df404403a56de956c4dcaa517410856688b4 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 9 Nov 2015 11:45:13 +0000 Subject: [PATCH 066/129] Accepting request 343164 from home:Andreas_Schwab:Factory - Update to kernel headers 4.3 OBS-URL: https://build.opensuse.org/request/show/343164 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=96 --- linux-glibc-devel-4.2.tar.xz | 3 - linux-glibc-devel-4.3.tar.xz | 3 + linux-glibc-devel.changes | 143 ++++++++++++++++++----------------- linux-glibc-devel.spec | 4 +- 4 files changed, 79 insertions(+), 74 deletions(-) delete mode 100644 linux-glibc-devel-4.2.tar.xz create mode 100644 linux-glibc-devel-4.3.tar.xz diff --git a/linux-glibc-devel-4.2.tar.xz b/linux-glibc-devel-4.2.tar.xz deleted file mode 100644 index d946498..0000000 --- a/linux-glibc-devel-4.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9890b076af53dda12983fb47d5625240701f62e626042b92db54c8b0de84add9 -size 925648 diff --git a/linux-glibc-devel-4.3.tar.xz b/linux-glibc-devel-4.3.tar.xz new file mode 100644 index 0000000..719e41f --- /dev/null +++ b/linux-glibc-devel-4.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f35bba753a5b602aa550d1837327ceae3b253f365cf75f64388701c11730c9 +size 945272 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 8729bb9..822ac27 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,12 +1,17 @@ +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + ------------------------------------------------------------------- Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com -- package back i2c-dev.h the one from i2c-tools is outdated +- package back i2c-dev.h the one from i2c-tools is outdated ------------------------------------------------------------------- Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com -- Update to kernel headers 4.2 +- Update to kernel headers 4.2 ------------------------------------------------------------------- Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org @@ -16,7 +21,7 @@ Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org ------------------------------------------------------------------- Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org -- Update to kernel headers 4.0 +- Update to kernel headers 4.0 ------------------------------------------------------------------- Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com @@ -26,22 +31,22 @@ Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com ------------------------------------------------------------------- Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org -- Update to kernel headers from 3.17 +- Update to kernel headers from 3.17 ------------------------------------------------------------------- Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org -- Update to kernel headers from 3.16 +- Update to kernel headers from 3.16 ------------------------------------------------------------------- Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org -- Update to kernel headers from 3.15.1 +- Update to kernel headers from 3.15.1 ------------------------------------------------------------------- Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org -- Update to kernel headers 3.14 +- Update to kernel headers 3.14 ------------------------------------------------------------------- Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz @@ -58,24 +63,24 @@ Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de ------------------------------------------------------------------- Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org -- Update to kernel headers from 3.11rc6: not final but +- Update to kernel headers from 3.11rc6: not final but matches current factory kernel. ------------------------------------------------------------------- Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org -- Update to kernel headers from 3.10 final. +- Update to kernel headers from 3.10 final. ------------------------------------------------------------------- Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org -- Update to kernel headers from 3.9 final. +- Update to kernel headers from 3.9 final. ------------------------------------------------------------------- Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org - Update to kernel headers from 3.9rc4 -- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh and update due to the addition of SOREUSEPORT ------------------------------------------------------------------- @@ -99,7 +104,7 @@ Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com ------------------------------------------------------------------- Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org -- Update to Linux 3.6.x headers. +- Update to Linux 3.6.x headers. ------------------------------------------------------------------- Tue May 22 07:43:50 UTC 2012 - aj@suse.de @@ -131,7 +136,7 @@ Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de - update to Linux 3.2.0 headers - * KVM_CAP_TSC_DEADLINE_TIMER added + * KVM_CAP_TSC_DEADLINE_TIMER added ------------------------------------------------------------------- Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de @@ -336,13 +341,13 @@ Fri Jan 25 18:58:58 CET 2008 - olh@suse.de ------------------------------------------------------------------- Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de -- update to 2.6.23 +- update to 2.6.23 ------------------------------------------------------------------- Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de - bring back i2c.h, i2c-tools only brings i2c-dev.h - but linux/fb.h needs linux/i2c.h + but linux/fb.h needs linux/i2c.h ------------------------------------------------------------------- Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de @@ -379,7 +384,7 @@ Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de ------------------------------------------------------------------- Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de -- added coreutils as prereq +- added coreutils as prereq ------------------------------------------------------------------- Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de @@ -566,7 +571,7 @@ Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de ------------------------------------------------------------------- Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de -- nptl/init.c (sigcancel_handler): Compare with correct PID even +- nptl/init.c (sigcancel_handler): Compare with correct PID even if the thread is in the middle of a fork call. (sighandler_setxid): Likewise. @@ -1063,7 +1068,7 @@ Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de ------------------------------------------------------------------- Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de -- Don't terminate strings twice in nis/netgroup code. +- Don't terminate strings twice in nis/netgroup code. - netinet/if_tr.h: don't include kernel headers. ------------------------------------------------------------------- @@ -1438,7 +1443,7 @@ Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de ------------------------------------------------------------------- Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de -- Fix invalidating of nscd caches and getaddrinfo() +- Fix invalidating of nscd caches and getaddrinfo() ------------------------------------------------------------------- Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de @@ -1491,7 +1496,7 @@ Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de ------------------------------------------------------------------- Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de -- Update to current CVS: +- Update to current CVS: - Use CVS version for last fix. - Add malloc sanity checks for double free. @@ -1530,7 +1535,7 @@ Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de ------------------------------------------------------------------- Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de -- Update to current CVS version and update to +- Update to current CVS version and update to kernel-headers 2.6.8.1 to fix NPTL deadlock problems - Disable linuxthreads/tst-clock1, does not work on i586 and lower @@ -1555,7 +1560,7 @@ Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de ------------------------------------------------------------------- Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de -- Add fixes from CVS: +- Add fixes from CVS: - sysconf return value fixes - nscd host caching deadlock - backtrace for s390/s390x/ia64 static linked binaries @@ -1690,7 +1695,7 @@ Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de ------------------------------------------------------------------- Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de -- forward umount to umount2 on ppc64 because umount syscall +- forward umount to umount2 on ppc64 because umount syscall does not exist ------------------------------------------------------------------- @@ -1979,7 +1984,7 @@ Wed Jan 21 10:23:42 CET 2004 - aj@suse.de ------------------------------------------------------------------- Mon Jan 19 15:49:51 CET 2004 - ro@suse.de -- really fix linux/percpu.h to compile in userland +- really fix linux/percpu.h to compile in userland ------------------------------------------------------------------- Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de @@ -2149,7 +2154,7 @@ Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de ------------------------------------------------------------------- Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de -- Update to kernel header files from 2.6.0-test7 +- Update to kernel header files from 2.6.0-test7 ------------------------------------------------------------------- Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de @@ -2625,7 +2630,7 @@ Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de ------------------------------------------------------------------- Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de -- Update to current snapshot +- Update to current snapshot ------------------------------------------------------------------- Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de @@ -2693,7 +2698,7 @@ Thu Jan 30 16:05:32 CET 2003 - aj@suse.de Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de - Update to current glibc cvs -- Fix libm-ulps for x86-64 and ia64 +- Fix libm-ulps for x86-64 and ia64 ------------------------------------------------------------------- Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de @@ -2728,7 +2733,7 @@ Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de ------------------------------------------------------------------- Fri Jan 3 19:09:36 CET 2003 - bg@suse.de -- removed obsolete patch for hppa +- removed obsolete patch for hppa ------------------------------------------------------------------- Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de @@ -2743,8 +2748,8 @@ Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de ------------------------------------------------------------------- Tue Dec 17 16:01:13 CET 2002 - olh@suse.de -- remove glibc-2.2.5-ppc64-bits-socket_h.diff - add glibc-2.3-setjmp-ppc64.diff +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff add libc23-ppc64-cvshead20021210.patch dont run configure in subshell, it can fail and rpm cant catch it @@ -2769,7 +2774,7 @@ Tue Dec 3 11:16:30 CET 2002 - aj@suse.de ------------------------------------------------------------------- Fri Nov 29 11:08:03 CET 2002 - bg@suse.de -- Fix build on hppa. +- Fix build on hppa. ------------------------------------------------------------------- Thu Nov 28 21:31:09 CET 2002 - aj@suse.de @@ -2786,7 +2791,7 @@ Thu Nov 28 15:45:09 CET 2002 - aj@suse.de ------------------------------------------------------------------- Tue Nov 12 12:41:17 CET 2002 - bg@suse.de -- Updated hppa patches +- Updated hppa patches ------------------------------------------------------------------- Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de @@ -2797,14 +2802,14 @@ Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de ------------------------------------------------------------------- Thu Nov 7 12:11:29 CET 2002 - bg@suse.de -- Fix build of linuxthreads for hppa +- Fix build of linuxthreads for hppa ------------------------------------------------------------------- Tue Nov 5 16:31:11 CET 2002 - bg@suse.de - Use current kernel-headers for parisc -- Add support for hppa - +- Add support for hppa + ------------------------------------------------------------------- Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de @@ -2859,7 +2864,7 @@ Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de - ppc/ppc64: added more biarch things to the SystemV IPC headers - which are needed to get 64bit ipc / IPC_STAT to work. + which are needed to get 64bit ipc / IPC_STAT to work. ------------------------------------------------------------------- Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de @@ -2913,7 +2918,7 @@ Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de - add ppc64_glibc_2.2.5_sunrpc-fix.patch - * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds __powerpc64__ specific fields and adjust size/alignment for 64-bit. ------------------------------------------------------------------- @@ -3020,7 +3025,7 @@ Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de ------------------------------------------------------------------- Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de -- Add some optimized x86-64 math routines and a fixed lgammal +- Add some optimized x86-64 math routines and a fixed lgammal implementation. - Testsuite on x86-64 should pass now. - Run ldconfig in postinstall. @@ -3097,7 +3102,7 @@ Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de - made new kernel-header archive from kernel-source - added asm-ppc64 to kernel-headers -- removed patch9 as it is obsoleted by the new kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers ------------------------------------------------------------------- Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de @@ -3295,8 +3300,8 @@ Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de ------------------------------------------------------------------- Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de -- When a dlopened module references a weak symbol from another - dlopened module (loaded with RTLD_GLOBAL) no dependency was +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was generated for this fact, so the second module was unloaded even if the first one was still around. @@ -3325,7 +3330,7 @@ Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de ------------------------------------------------------------------- Tue Feb 12 02:01:42 CET 2002 - ro@suse.de -- fix owner/group for kernel headers +- fix owner/group for kernel headers ------------------------------------------------------------------- Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de @@ -3762,12 +3767,12 @@ Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de ------------------------------------------------------------------- Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de -- added db-splitmask fix from mls (hopefully work around bug in db1) +- added db-splitmask fix from mls (hopefully work around bug in db1) ------------------------------------------------------------------- Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de -- Fix s390 to not generate wrong relocations, work around compiler +- Fix s390 to not generate wrong relocations, work around compiler error. ------------------------------------------------------------------- @@ -3809,12 +3814,12 @@ Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de ------------------------------------------------------------------- Thu Mar 8 16:02:45 CET 2001 - ro@suse.de -- update kernel-headers to 2.4.2 +- update kernel-headers to 2.4.2 ------------------------------------------------------------------- Thu Mar 8 12:53:56 CET 2001 - ro@suse.de -- kernel-header fixes to build on s390 +- kernel-header fixes to build on s390 ------------------------------------------------------------------- Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de @@ -4027,7 +4032,7 @@ Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de ------------------------------------------------------------------- Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de -- Update to glibc-2.2-20001025 +- Update to glibc-2.2-20001025 ------------------------------------------------------------------- Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de @@ -4112,7 +4117,7 @@ Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de - Add mmap fix for PowerPC - + ------------------------------------------------------------------- Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de @@ -4158,7 +4163,7 @@ Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de ------------------------------------------------------------------- Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de -- Fix ldconfig.8 manual page +- Fix ldconfig.8 manual page ------------------------------------------------------------------- Thu May 18 17:53:09 CEST 2000 - bk@suse.de @@ -4193,7 +4198,7 @@ Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de ------------------------------------------------------------------- Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de -- Add lot of bug fixes from CVS +- Add lot of bug fixes from CVS ------------------------------------------------------------------- Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de @@ -4253,13 +4258,13 @@ Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de ------------------------------------------------------------------- Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de -- Fix last SPARC patch +- Fix last SPARC patch ------------------------------------------------------------------- Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de - Add SPARC patches -- Add IA64 patches +- Add IA64 patches ------------------------------------------------------------------- Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de @@ -4289,7 +4294,7 @@ Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de ------------------------------------------------------------------- Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de -- Update to current glibc cvs snapshot (2.1.3pre4) +- Update to current glibc cvs snapshot (2.1.3pre4) ------------------------------------------------------------------- Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de @@ -4326,7 +4331,7 @@ Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de ------------------------------------------------------------------- Sat Jan 15 01:31:16 CET 2000 - ro@suse.de --fixed ppc db2-patch +-fixed ppc db2-patch ------------------------------------------------------------------- Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de @@ -4336,22 +4341,22 @@ Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de ------------------------------------------------------------------- Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de -- Add patch for SPARC +- Add patch for SPARC ------------------------------------------------------------------- Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de -- Move info pages to /usr/share/info +- Move info pages to /usr/share/info ------------------------------------------------------------------- Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de -- Add ipv6 patches for getent +- Add ipv6 patches for getent ------------------------------------------------------------------- Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de -- Move manual pages for applications and config files into +- Move manual pages for applications and config files into shlibs package - Update to current glibc 2.1.3 snapshot @@ -4416,7 +4421,7 @@ Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de - Add linuxthreads/signals.c fix from Andreas Schwab -- Remove dangling symlink (Bug #544) +- Remove dangling symlink (Bug #544) - Add more bug fixes ------------------------------------------------------------------- @@ -4449,7 +4454,7 @@ Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de - Update to current glibc 2.1.2 cvs snapshot -- Remove use auf automake in spec file +- Remove use auf automake in spec file ------------------------------------------------------------------- Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de @@ -4460,7 +4465,7 @@ Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de ------------------------------------------------------------------- Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de -- Update to current glibc 2.1.2 cvs snapshot +- Update to current glibc 2.1.2 cvs snapshot ------------------------------------------------------------------- Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de @@ -4473,7 +4478,7 @@ Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de - disable nscd hosts caching by default -- Apply patch from HJL for broken gethostbyname_r in libnss_dns +- Apply patch from HJL for broken gethostbyname_r in libnss_dns ------------------------------------------------------------------- Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de @@ -4484,7 +4489,7 @@ Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de ------------------------------------------------------------------- Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de -- Remove /etc/localtime from filelist +- Remove /etc/localtime from filelist ------------------------------------------------------------------- Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de @@ -4495,7 +4500,7 @@ Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de ------------------------------------------------------------------- Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de -- configure for i386-unknown-linux +- configure for i386-unknown-linux ------------------------------------------------------------------- Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de @@ -4535,7 +4540,7 @@ Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de ------------------------------------------------------------------- Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de -- Fix daemon() for MT programs +- Fix daemon() for MT programs - Add libio fixes ------------------------------------------------------------------- @@ -4573,7 +4578,7 @@ Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de ------------------------------------------------------------------- Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de -- update to cvs version of Apr 26 1999 +- update to cvs version of Apr 26 1999 - fix pmap_set/pmap_unset for DHCP clients - Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create the symbolic links. @@ -4620,7 +4625,7 @@ Sat Feb 20 19:29:32 MET 1999 - ro@suse.de ------------------------------------------------------------------- Sat Feb 20 18:41:22 MET 1999 - ro@suse.de -- fixed specfile ... +- fixed specfile ... ------------------------------------------------------------------- Sat Feb 20 18:31:30 MET 1999 - ro@suse.de @@ -4656,7 +4661,7 @@ Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de ------------------------------------------------------------------- Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de -- update: use today's cvs-version +- update: use today's cvs-version ------------------------------------------------------------------- Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de @@ -4695,6 +4700,6 @@ Wed May 27 16:26:15 MEST 1998 - bs@suse.de Wed May 27 12:16:14 MEST 1998 - ro@suse.de - created specfile to build libc, shlibs, libd, libcinfo - localedb, timezone, + localedb, timezone, - former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index e9cea63..7aeb4d4 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 4.2 +Version: 4.3 Release: 0 # A "-" is not allowed in version -%define upstream_version 4.2 +%define upstream_version 4.3 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 14ccc0fe568f7d5319409d5bbd37adb775d15e4e8fa1cc070aa4971abba92a49 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 18 Jan 2016 08:31:43 +0000 Subject: [PATCH 067/129] Accepting request 353866 from home:michal-m:branches:Base:System - Update to kernel headers 4.4 OBS-URL: https://build.opensuse.org/request/show/353866 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=97 --- linux-glibc-devel-4.3.tar.xz | 3 --- linux-glibc-devel-4.4.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-4.3.tar.xz create mode 100644 linux-glibc-devel-4.4.tar.xz diff --git a/linux-glibc-devel-4.3.tar.xz b/linux-glibc-devel-4.3.tar.xz deleted file mode 100644 index 719e41f..0000000 --- a/linux-glibc-devel-4.3.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8f35bba753a5b602aa550d1837327ceae3b253f365cf75f64388701c11730c9 -size 945272 diff --git a/linux-glibc-devel-4.4.tar.xz b/linux-glibc-devel-4.4.tar.xz new file mode 100644 index 0000000..9b4b366 --- /dev/null +++ b/linux-glibc-devel-4.4.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f35134eeb9214d0bb14ee665455e35243c059466f1006e03ede7ef9f9d91dabc +size 933248 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 822ac27..57a036f 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + ------------------------------------------------------------------- Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 7aeb4d4..944dc50 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -23,10 +23,10 @@ Group: Development/Libraries/C and C++ BuildArch: noarch # this confusing version number has no meaning, it's the version # of the Linux kernel where these headers come from -Version: 4.3 +Version: 4.4 Release: 0 # A "-" is not allowed in version -%define upstream_version 4.3 +%define upstream_version 4.4 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes -- 2.49.0 From 11491ab82035050742700b704e8ecc2c5caada72fc09e43a8e1c1490a2c86f49 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 17 Mar 2016 16:08:13 +0000 Subject: [PATCH 068/129] Accepting request 374298 from home:Andreas_Schwab:Factory - Update to kernel headers 4.5 OBS-URL: https://build.opensuse.org/request/show/374298 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=98 --- linux-glibc-devel-4.4.tar.xz | 3 --- linux-glibc-devel-4.5.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 10 +++------- 4 files changed, 11 insertions(+), 10 deletions(-) delete mode 100644 linux-glibc-devel-4.4.tar.xz create mode 100644 linux-glibc-devel-4.5.tar.xz diff --git a/linux-glibc-devel-4.4.tar.xz b/linux-glibc-devel-4.4.tar.xz deleted file mode 100644 index 9b4b366..0000000 --- a/linux-glibc-devel-4.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f35134eeb9214d0bb14ee665455e35243c059466f1006e03ede7ef9f9d91dabc -size 933248 diff --git a/linux-glibc-devel-4.5.tar.xz b/linux-glibc-devel-4.5.tar.xz new file mode 100644 index 0000000..a840d7a --- /dev/null +++ b/linux-glibc-devel-4.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0543864b77cd7f7d8cc4a6091af7362fa15f5e4c6f264f907970578d0b0b6d26 +size 953748 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 57a036f..88ab4df 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + ------------------------------------------------------------------- Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 944dc50..c79e740 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,12 +21,8 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -# this confusing version number has no meaning, it's the version -# of the Linux kernel where these headers come from -Version: 4.4 +Version: 4.5 Release: 0 -# A "-" is not allowed in version -%define upstream_version 4.4 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: fdupes @@ -35,7 +31,7 @@ Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} PreReq: coreutils -Source: %{name}-%{upstream_version}.tar.xz +Source: %{name}-%{version}.tar.xz Source1: install_all.sh %description @@ -48,7 +44,7 @@ packages, instead. %prep -%setup -q -n linux-glibc-devel-%{upstream_version} +%setup -q -n linux-glibc-devel-%{version} %build cat > version.h <<-BOGUS -- 2.49.0 From dd8413fcd113370f06f8bd56e2cde39590e641a71f34ca093f89e6a63304b0e5 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 18 May 2016 16:07:16 +0000 Subject: [PATCH 069/129] Accepting request 396655 from home:Andreas_Schwab:Factory - Update to kernel headers 4.6 OBS-URL: https://build.opensuse.org/request/show/396655 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=100 --- linux-glibc-devel-4.5.tar.xz | 3 --- linux-glibc-devel-4.6.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.5.tar.xz create mode 100644 linux-glibc-devel-4.6.tar.xz diff --git a/linux-glibc-devel-4.5.tar.xz b/linux-glibc-devel-4.5.tar.xz deleted file mode 100644 index a840d7a..0000000 --- a/linux-glibc-devel-4.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:0543864b77cd7f7d8cc4a6091af7362fa15f5e4c6f264f907970578d0b0b6d26 -size 953748 diff --git a/linux-glibc-devel-4.6.tar.xz b/linux-glibc-devel-4.6.tar.xz new file mode 100644 index 0000000..69b9d79 --- /dev/null +++ b/linux-glibc-devel-4.6.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8ead8d5ca9a14cd5c54df651bd69cb57cd190a020e5139d3881d7b8fba7ad10 +size 965040 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 88ab4df..96c58b9 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + ------------------------------------------------------------------- Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c79e740..4377766 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.5 +Version: 4.6 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 52195a3d238cb8d0fd93fb6dc67970934d100774bcc29f9f014b2a4113830d05 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 8 Aug 2016 09:25:49 +0000 Subject: [PATCH 070/129] Accepting request 417475 from home:Andreas_Schwab:Factory - Update to kernel headers 4.7 OBS-URL: https://build.opensuse.org/request/show/417475 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=102 --- install_all.sh | 2 +- linux-glibc-devel-4.6.tar.xz | 3 --- linux-glibc-devel-4.7.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-4.6.tar.xz create mode 100644 linux-glibc-devel-4.7.tar.xz diff --git a/install_all.sh b/install_all.sh index 87bd758..560a302 100644 --- a/install_all.sh +++ b/install_all.sh @@ -79,6 +79,6 @@ do done popd du -sh "$header_dir/usr" -tar -cJf "$header_dir.tar.xz" "${header_dir##*/}" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root "${header_dir##*/}" rm -rf $header_dir linux-${kernel_dir} diff --git a/linux-glibc-devel-4.6.tar.xz b/linux-glibc-devel-4.6.tar.xz deleted file mode 100644 index 69b9d79..0000000 --- a/linux-glibc-devel-4.6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a8ead8d5ca9a14cd5c54df651bd69cb57cd190a020e5139d3881d7b8fba7ad10 -size 965040 diff --git a/linux-glibc-devel-4.7.tar.xz b/linux-glibc-devel-4.7.tar.xz new file mode 100644 index 0000000..fdaa3f7 --- /dev/null +++ b/linux-glibc-devel-4.7.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36d726f72077df10c1bd639e68286c2f00791877b1ff7ed6ad1aae4ebfea8399 +size 969200 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 96c58b9..020eb87 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + ------------------------------------------------------------------- Wed May 18 15:07:32 UTC 2016 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 4377766..05cdedf 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.6 +Version: 4.7 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 453c2b0dc80044125f68e10db1e88cde10dcbc1d9796f5eb9f03a4879d3cc6a6 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 6 Oct 2016 15:06:45 +0000 Subject: [PATCH 071/129] Accepting request 433614 from home:Andreas_Schwab:Factory - Update to kernel headers 4.8 OBS-URL: https://build.opensuse.org/request/show/433614 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=104 --- linux-glibc-devel-4.7.tar.xz | 3 --- linux-glibc-devel-4.8.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.7.tar.xz create mode 100644 linux-glibc-devel-4.8.tar.xz diff --git a/linux-glibc-devel-4.7.tar.xz b/linux-glibc-devel-4.7.tar.xz deleted file mode 100644 index fdaa3f7..0000000 --- a/linux-glibc-devel-4.7.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:36d726f72077df10c1bd639e68286c2f00791877b1ff7ed6ad1aae4ebfea8399 -size 969200 diff --git a/linux-glibc-devel-4.8.tar.xz b/linux-glibc-devel-4.8.tar.xz new file mode 100644 index 0000000..61150c2 --- /dev/null +++ b/linux-glibc-devel-4.8.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988cfa1ced35f6d3f6ad0d43e192fde6a9d034d4ce0028807737a587091dea7e +size 982872 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 020eb87..9e98d3c 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + ------------------------------------------------------------------- Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 05cdedf..e96a844 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.7 +Version: 4.8 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 79a1e8808eafe23cf08fdff814b60be0b5d875b874962424bdb68aa90f3c644b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 11 Jan 2017 14:03:17 +0000 Subject: [PATCH 072/129] Accepting request 449685 from home:Andreas_Schwab:Factory - Update to kernel headers 4.9 - Remove empty /usr/include/uapi directory OBS-URL: https://build.opensuse.org/request/show/449685 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=106 --- install_all.sh | 2 ++ linux-glibc-devel-4.8.tar.xz | 3 --- linux-glibc-devel-4.9.tar.xz | 3 +++ linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 4 ++-- 5 files changed, 13 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-4.8.tar.xz create mode 100644 linux-glibc-devel-4.9.tar.xz diff --git a/install_all.sh b/install_all.sh index 560a302..30d8a09 100644 --- a/install_all.sh +++ b/install_all.sh @@ -65,6 +65,8 @@ find -type f -name ".install" -print0 | xargs -0 --no-run-if-empty rm # with the libdrm ones, and those are slightly newer. # rm -rf usr/include/drm/ +# Remove confusing empty uapi directory +rmdir usr/include/uapi for dir in * do case "$dir" in diff --git a/linux-glibc-devel-4.8.tar.xz b/linux-glibc-devel-4.8.tar.xz deleted file mode 100644 index 61150c2..0000000 --- a/linux-glibc-devel-4.8.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:988cfa1ced35f6d3f6ad0d43e192fde6a9d034d4ce0028807737a587091dea7e -size 982872 diff --git a/linux-glibc-devel-4.9.tar.xz b/linux-glibc-devel-4.9.tar.xz new file mode 100644 index 0000000..cb85437 --- /dev/null +++ b/linux-glibc-devel-4.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc482211533f84fd5cc6ca681d82e3e2fef1ce5adeb4c4cb163fabceddb8bc36 +size 994784 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 9e98d3c..42aa8ee 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + ------------------------------------------------------------------- Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index e96a844..be53c21 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.8 +Version: 4.9 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 827cfa08f109825bb43665705e75ac8752c3eb66ba27e1c61f0c1e6339ab7256 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 10 Mar 2017 21:46:56 +0000 Subject: [PATCH 073/129] Accepting request 478570 from home:Andreas_Schwab:Factory - Update to kernel headers 4.10 OBS-URL: https://build.opensuse.org/request/show/478570 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=108 --- linux-glibc-devel-4.10.tar.xz | 3 +++ linux-glibc-devel-4.9.tar.xz | 3 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 linux-glibc-devel-4.10.tar.xz delete mode 100644 linux-glibc-devel-4.9.tar.xz diff --git a/linux-glibc-devel-4.10.tar.xz b/linux-glibc-devel-4.10.tar.xz new file mode 100644 index 0000000..48c73a5 --- /dev/null +++ b/linux-glibc-devel-4.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c8de1f5b91505631eaa9c7ff799ae82a3e37e426a2e94ed8dde82d0d5f25c86 +size 1019296 diff --git a/linux-glibc-devel-4.9.tar.xz b/linux-glibc-devel-4.9.tar.xz deleted file mode 100644 index cb85437..0000000 --- a/linux-glibc-devel-4.9.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:cc482211533f84fd5cc6ca681d82e3e2fef1ce5adeb4c4cb163fabceddb8bc36 -size 994784 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 42aa8ee..8d9ca78 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + ------------------------------------------------------------------- Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index be53c21..86f587d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.9 +Version: 4.10 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 4e9aee6a3b9c9c7d58c30898d613b4f9692ecc0723ec3da7725fc5dba241a920 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 16 May 2017 12:53:12 +0000 Subject: [PATCH 074/129] Accepting request 495331 from home:Andreas_Schwab:Factory - Update to kernel headers 4.11 OBS-URL: https://build.opensuse.org/request/show/495331 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=110 --- linux-glibc-devel-4.10.tar.xz | 3 --- linux-glibc-devel-4.11.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.10.tar.xz create mode 100644 linux-glibc-devel-4.11.tar.xz diff --git a/linux-glibc-devel-4.10.tar.xz b/linux-glibc-devel-4.10.tar.xz deleted file mode 100644 index 48c73a5..0000000 --- a/linux-glibc-devel-4.10.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5c8de1f5b91505631eaa9c7ff799ae82a3e37e426a2e94ed8dde82d0d5f25c86 -size 1019296 diff --git a/linux-glibc-devel-4.11.tar.xz b/linux-glibc-devel-4.11.tar.xz new file mode 100644 index 0000000..2eb5eff --- /dev/null +++ b/linux-glibc-devel-4.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:641d268f7354da0679afb3ae2019b4d53cb93a0c89df9668524c6e371a91702b +size 1026568 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 8d9ca78..f9f9631 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + ------------------------------------------------------------------- Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 86f587d..3553c32 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.10 +Version: 4.11 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From b7c762fa9e3af4c44be76b48d52ee9866943845139cf7f8203c03aee48aa2484 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 3 Jul 2017 08:48:22 +0000 Subject: [PATCH 075/129] Accepting request 507730 from home:Andreas_Schwab:Factory - Update to kernel headers 4.12 OBS-URL: https://build.opensuse.org/request/show/507730 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=112 --- install_all.sh | 2 +- linux-glibc-devel-4.11.tar.xz | 3 --- linux-glibc-devel-4.12.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 5 files changed, 12 insertions(+), 7 deletions(-) delete mode 100644 linux-glibc-devel-4.11.tar.xz create mode 100644 linux-glibc-devel-4.12.tar.xz diff --git a/install_all.sh b/install_all.sh index 30d8a09..24dbac8 100644 --- a/install_all.sh +++ b/install_all.sh @@ -66,7 +66,7 @@ find -type f -name ".install" -print0 | xargs -0 --no-run-if-empty rm # rm -rf usr/include/drm/ # Remove confusing empty uapi directory -rmdir usr/include/uapi +test ! -d usr/include/uapi || rmdir usr/include/uapi for dir in * do case "$dir" in diff --git a/linux-glibc-devel-4.11.tar.xz b/linux-glibc-devel-4.11.tar.xz deleted file mode 100644 index 2eb5eff..0000000 --- a/linux-glibc-devel-4.11.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:641d268f7354da0679afb3ae2019b4d53cb93a0c89df9668524c6e371a91702b -size 1026568 diff --git a/linux-glibc-devel-4.12.tar.xz b/linux-glibc-devel-4.12.tar.xz new file mode 100644 index 0000000..000beb2 --- /dev/null +++ b/linux-glibc-devel-4.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f1f547ad0056dc2b5f58f9eae1011e1dac49edb9f1729cc49ea6535e820bd72 +size 1132108 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index f9f9631..996628b 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + ------------------------------------------------------------------- Tue May 16 12:49:44 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 3553c32..737b40e 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.11 +Version: 4.12 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -147,7 +147,7 @@ then echo "/usr/include/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" exit 0 fi -ln -sfn asm-$asm_link usr/include/asm +ln -sfn arch-$asm_link/asm usr/include/asm exit 0 %triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 @@ -165,7 +165,7 @@ case "$(uname -m)" in m68k) asm_link=m68k ;; *) asm_link=x86 ;; esac -ln -sfn asm-$asm_link usr/include/asm +ln -sfn arch-$asm_link/asm usr/include/asm exit 0 %files -- 2.49.0 From d40a3c8ac7758da9daa722209d7e44ddb74c0d298d9c15617c3b339f75ab107a Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 17 Jul 2017 12:39:31 +0000 Subject: [PATCH 076/129] Accepting request 510962 from home:dimstar:Factory - BuildIgnore linux-kernel-headers: the symbol will only exist once the package was builtin a bootstrap cycle. - BuildIgnore gettext-tools: required by rpm-build, but we can build without it, allowing to shorten a bootstrap cycle. OBS-URL: https://build.opensuse.org/request/show/510962 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=114 --- linux-glibc-devel.changes | 8 ++++++++ linux-glibc-devel.spec | 4 ++++ 2 files changed, 12 insertions(+) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 996628b..2c1d531 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was builtin a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + ------------------------------------------------------------------- Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 737b40e..10dbf83 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -30,6 +30,10 @@ BuildRequires: xz Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers PreReq: coreutils Source: %{name}-%{version}.tar.xz Source1: install_all.sh -- 2.49.0 From 735de7a3b90b04dff7269994cc2fb2ad876b97dea1210398640433c44066cb6f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 17 Jul 2017 12:40:36 +0000 Subject: [PATCH 077/129] typo OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=115 --- linux-glibc-devel.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 2c1d531..6e15f7d 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -2,7 +2,7 @@ Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org - BuildIgnore linux-kernel-headers: the symbol will only exist once - the package was builtin a bootstrap cycle. + the package was built in a bootstrap cycle. - BuildIgnore gettext-tools: required by rpm-build, but we can build without it, allowing to shorten a bootstrap cycle. -- 2.49.0 From 91496fff3e9b6737c75b27b0b4924274935b3ad45f0e4fe66fc4abdfb1aa35d7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 4 Sep 2017 15:32:20 +0000 Subject: [PATCH 078/129] Accepting request 520832 from home:Andreas_Schwab:Factory - Update to kernel headers 4.13 OBS-URL: https://build.opensuse.org/request/show/520832 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=117 --- linux-glibc-devel-4.12.tar.xz | 3 --- linux-glibc-devel-4.13.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.12.tar.xz create mode 100644 linux-glibc-devel-4.13.tar.xz diff --git a/linux-glibc-devel-4.12.tar.xz b/linux-glibc-devel-4.12.tar.xz deleted file mode 100644 index 000beb2..0000000 --- a/linux-glibc-devel-4.12.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7f1f547ad0056dc2b5f58f9eae1011e1dac49edb9f1729cc49ea6535e820bd72 -size 1132108 diff --git a/linux-glibc-devel-4.13.tar.xz b/linux-glibc-devel-4.13.tar.xz new file mode 100644 index 0000000..ca77bab --- /dev/null +++ b/linux-glibc-devel-4.13.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5a623debec8a5eb5ca96d41a94ab3fbfe56ce0faa8852e0d4651879928c6bd +size 1139392 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6e15f7d..cbdb0a8 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + ------------------------------------------------------------------- Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 10dbf83..08e2bc5 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.12 +Version: 4.13 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 4d0f10226565d89cb734b0787353b627b41510a052d683c86032fa4b6f98d3d5 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 14 Nov 2017 16:40:00 +0000 Subject: [PATCH 079/129] Accepting request 541875 from home:Andreas_Schwab:Factory - Update to kernel headers 4.14 OBS-URL: https://build.opensuse.org/request/show/541875 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=119 --- linux-glibc-devel-4.13.tar.xz | 3 --- linux-glibc-devel-4.14.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.13.tar.xz create mode 100644 linux-glibc-devel-4.14.tar.xz diff --git a/linux-glibc-devel-4.13.tar.xz b/linux-glibc-devel-4.13.tar.xz deleted file mode 100644 index ca77bab..0000000 --- a/linux-glibc-devel-4.13.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe5a623debec8a5eb5ca96d41a94ab3fbfe56ce0faa8852e0d4651879928c6bd -size 1139392 diff --git a/linux-glibc-devel-4.14.tar.xz b/linux-glibc-devel-4.14.tar.xz new file mode 100644 index 0000000..2d681d5 --- /dev/null +++ b/linux-glibc-devel-4.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:317d8e45cb51d5efbccf16bbcf055d5a8f7577bb5a755d25e296021c7d83b0a4 +size 1150728 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index cbdb0a8..22dc6f8 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + ------------------------------------------------------------------- Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 08e2bc5..54ae3dc 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.13 +Version: 4.14 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From c4dd732ea526d54206e944e65cc9ca36efafbd60ca0cb03a3c111251f2812cd7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 29 Jan 2018 10:26:24 +0000 Subject: [PATCH 080/129] Accepting request 570503 from home:Andreas_Schwab:Factory - Update to kernel headers 4.15 - Add support for riscv OBS-URL: https://build.opensuse.org/request/show/570503 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=121 --- linux-glibc-devel-4.14.tar.xz | 3 --- linux-glibc-devel-4.15.tar.xz | 3 +++ linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 14 ++++++++------ 4 files changed, 17 insertions(+), 9 deletions(-) delete mode 100644 linux-glibc-devel-4.14.tar.xz create mode 100644 linux-glibc-devel-4.15.tar.xz diff --git a/linux-glibc-devel-4.14.tar.xz b/linux-glibc-devel-4.14.tar.xz deleted file mode 100644 index 2d681d5..0000000 --- a/linux-glibc-devel-4.14.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:317d8e45cb51d5efbccf16bbcf055d5a8f7577bb5a755d25e296021c7d83b0a4 -size 1150728 diff --git a/linux-glibc-devel-4.15.tar.xz b/linux-glibc-devel-4.15.tar.xz new file mode 100644 index 0000000..3366997 --- /dev/null +++ b/linux-glibc-devel-4.15.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b365fa0d682cc516c48118c812fa03360ce0876ed98d8c4a66ebc39c2f506e67 +size 1175304 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 22dc6f8..d8f213c 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + ------------------------------------------------------------------- Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 54ae3dc..589914d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0 Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.14 +Version: 4.15 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build @@ -132,8 +132,9 @@ case "$(uname -m)" in parisc) asm_link=parisc ;; *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; - aarch64) asm_link=arm64 ;; - m68k) asm_link=m68k ;; + aarch64) asm_link=arm64 ;; + m68k) asm_link=m68k ;; + riscv*) asm_link=riscv ;; *) asm_link=x86 ;; esac if test -L usr/include/asm @@ -165,8 +166,9 @@ case "$(uname -m)" in parisc) asm_link=parisc ;; *mips*) asm_link=mips ;; sparc*) asm_link=sparc ;; - aarch64) asm_link=arm64 ;; - m68k) asm_link=m68k ;; + aarch64) asm_link=arm64 ;; + m68k) asm_link=m68k ;; + riscv*) asm_link=riscv ;; *) asm_link=x86 ;; esac ln -sfn arch-$asm_link/asm usr/include/asm -- 2.49.0 From 1ef3ceb8e421065c620eac2ab364d44ae6da9a18bb4d9d69f40b61fcbd88a68a Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 1 Apr 2018 22:31:47 +0000 Subject: [PATCH 081/129] Accepting request 592910 from home:Andreas_Schwab:Factory - Update to kernel headers 4.16 OBS-URL: https://build.opensuse.org/request/show/592910 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=123 --- install_all.sh | 26 ++++++++++++++------------ linux-glibc-devel-4.15.tar.xz | 3 --- linux-glibc-devel-4.16.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 5 files changed, 24 insertions(+), 17 deletions(-) delete mode 100644 linux-glibc-devel-4.15.tar.xz create mode 100644 linux-glibc-devel-4.16.tar.xz diff --git a/install_all.sh b/install_all.sh index 24dbac8..0631771 100644 --- a/install_all.sh +++ b/install_all.sh @@ -27,8 +27,6 @@ fi tar -xf $1 pushd linux-${kernel_dir} cp Makefile $header_dir -# header export for unicore32 in 2.6.39 is broken, disable it -sed -i -e 's/cris/cris\|unicore32/' scripts/headers.sh /usr/bin/make O="$header_dir" headers_install_all # kvm.h and aout.h are only installed if SRCARCH is an architecture # that has support for them. As the package is noarch we need to make @@ -38,26 +36,30 @@ popd pushd "$header_dir" for asm in \ alpha \ - avr32 \ + arc \ blackfin \ + c6x \ cris \ frv \ h8300 \ + hexagon \ m32r \ - m68knommu \ - mips \ + metag \ + microblaze \ mn10300 \ + nios2 \ + openrisc \ + score \ sh \ - sh64 \ - v850 \ + tile \ + unicore32 \ xtensa \ - unicore32 \ ; do - rm -rf usr/include/asm-$asm + rm -rf usr/include/arch-$asm done -rm Makefile -find -type f -name "..install.cmd" -print0 | xargs -0 --no-run-if-empty rm -find -type f -name ".install" -print0 | xargs -0 --no-run-if-empty rm +rm Makefile .cache.mk +find -type f -name "..install.cmd" -exec rm {} + +find -type f -name ".install" -exec rm {} + #------------------------------------------------------------------- #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de diff --git a/linux-glibc-devel-4.15.tar.xz b/linux-glibc-devel-4.15.tar.xz deleted file mode 100644 index 3366997..0000000 --- a/linux-glibc-devel-4.15.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b365fa0d682cc516c48118c812fa03360ce0876ed98d8c4a66ebc39c2f506e67 -size 1175304 diff --git a/linux-glibc-devel-4.16.tar.xz b/linux-glibc-devel-4.16.tar.xz new file mode 100644 index 0000000..9dce365 --- /dev/null +++ b/linux-glibc-devel-4.16.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60ec2e311b912049c135f74d4843396494e88e1a7cf92b60c1f963916911892c +size 1067292 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index d8f213c..4859194 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + ------------------------------------------------------------------- Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 589914d..cfb1fcd 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -18,10 +18,10 @@ Name: linux-glibc-devel Summary: Linux headers for userspace development -License: GPL-2.0 +License: GPL-2.0-only Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.15 +Version: 4.16 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From 4e985bb76db3ccebd2fedfc79871efd8a90c22d8587adf5ea4ab385452a5b7b3 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 4 Jun 2018 10:37:07 +0000 Subject: [PATCH 082/129] Accepting request 613958 from home:Andreas_Schwab:Factory - Update to kernel headers 4.17 OBS-URL: https://build.opensuse.org/request/show/613958 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=125 --- install_all.sh | 9 +-------- linux-glibc-devel-4.16.tar.xz | 3 --- linux-glibc-devel-4.17.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 5 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 linux-glibc-devel-4.16.tar.xz create mode 100644 linux-glibc-devel-4.17.tar.xz diff --git a/install_all.sh b/install_all.sh index 0631771..b8c40c5 100644 --- a/install_all.sh +++ b/install_all.sh @@ -37,21 +37,14 @@ pushd "$header_dir" for asm in \ alpha \ arc \ - blackfin \ c6x \ - cris \ - frv \ h8300 \ hexagon \ - m32r \ - metag \ microblaze \ - mn10300 \ + nds32 \ nios2 \ openrisc \ - score \ sh \ - tile \ unicore32 \ xtensa \ ; do diff --git a/linux-glibc-devel-4.16.tar.xz b/linux-glibc-devel-4.16.tar.xz deleted file mode 100644 index 9dce365..0000000 --- a/linux-glibc-devel-4.16.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:60ec2e311b912049c135f74d4843396494e88e1a7cf92b60c1f963916911892c -size 1067292 diff --git a/linux-glibc-devel-4.17.tar.xz b/linux-glibc-devel-4.17.tar.xz new file mode 100644 index 0000000..f909d3f --- /dev/null +++ b/linux-glibc-devel-4.17.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d735c6354ffc056ed7e79e944765bef4c524db3a815ee0bfb646fa40c7e714a +size 1065180 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4859194..a7de120 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + ------------------------------------------------------------------- Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index cfb1fcd..4a022af 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -21,7 +21,7 @@ Summary: Linux headers for userspace development License: GPL-2.0-only Group: Development/Libraries/C and C++ BuildArch: noarch -Version: 4.16 +Version: 4.17 Release: 0 Url: http://www.kernel.org/ BuildRoot: %{_tmppath}/%{name}-%{version}-build -- 2.49.0 From c67654d2c24525791be8ccd9112c5273c84eabf343408b5e425c82d44b95cc23 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 16 Jul 2018 07:57:19 +0000 Subject: [PATCH 083/129] Accepting request 622365 from home:bmwiedemann:branches:Base:System Dont embed build system's kernel version in rpm to make package build reproducible (boo#1101107) (added bug number) OBS-URL: https://build.opensuse.org/request/show/622365 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=127 --- linux-glibc-devel.changes | 6 ++++++ linux-glibc-devel.spec | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index a7de120..f552062 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Dont embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + ------------------------------------------------------------------- Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 4a022af..dcfd4f0 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -78,7 +78,7 @@ cat > version.h <<-BOGUS #error "" #error "For the currently running kernel there will be a symbolic " #error "link pointing to the build environment located at " -#error "/lib/modules/$(uname -r)/build for use as ." +#error "/lib/modules/\$(uname -r)/build for use as ." #error "" #error "If you are seeing this message, your environment is " #error "not configured properly. " -- 2.49.0 From 3290b291f6f0d79527f745a53e1a165b35b7b6c2ceaf25b744bf2b97f5d5b9c2 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 16 Jul 2018 07:58:07 +0000 Subject: [PATCH 084/129] changelog typo OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=128 --- linux-glibc-devel.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index f552062..e93a2ec 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com -- Dont embed build system's kernel version in rpm +- Don't embed build system's kernel version in rpm to make package build reproducible (boo#1101107) ------------------------------------------------------------------- -- 2.49.0 From 15e1531647aba7796b136d5cef76089f4f108c517a64069363c086c405a361bd Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 16 Jul 2018 08:04:29 +0000 Subject: [PATCH 085/129] Accepting request 623063 from home:Andreas_Schwab:Factory - Don't do any expansion on the version.h contents OBS-URL: https://build.opensuse.org/request/show/623063 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=129 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index e93a2ec..c903c84 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + ------------------------------------------------------------------- Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index dcfd4f0..292d961 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -51,7 +51,7 @@ packages, instead. %setup -q -n linux-glibc-devel-%{version} %build -cat > version.h <<-BOGUS +cat > version.h <<\BOGUS #ifdef __KERNEL__ #error "=======================================================" #error "You should not include /usr/include/{linux,asm}/ header" @@ -78,7 +78,7 @@ cat > version.h <<-BOGUS #error "" #error "For the currently running kernel there will be a symbolic " #error "link pointing to the build environment located at " -#error "/lib/modules/\$(uname -r)/build for use as ." +#error "/lib/modules/$(uname -r)/build for use as ." #error "" #error "If you are seeing this message, your environment is " #error "not configured properly. " @@ -89,7 +89,7 @@ cat > version.h <<-BOGUS BOGUS # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel cat usr/include/linux/version.h >> version.h -cat >> version.h <<-BOGUS +cat >> version.h <<\BOGUS #endif BOGUS cat version.h -- 2.49.0 From 260fdcd46f0e8041aac492547be6523deb8bf5a184942662404216fb0f9d303d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 13 Aug 2018 08:13:04 +0000 Subject: [PATCH 086/129] Accepting request 628866 from home:Andreas_Schwab:Factory - Update to kernel headers 4.18 OBS-URL: https://build.opensuse.org/request/show/628866 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=131 --- install_all.sh | 2 +- linux-glibc-devel-4.17.tar.xz | 3 --- linux-glibc-devel-4.18.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 41 +++++++++++++++-------------------- 5 files changed, 27 insertions(+), 27 deletions(-) delete mode 100644 linux-glibc-devel-4.17.tar.xz create mode 100644 linux-glibc-devel-4.18.tar.xz diff --git a/install_all.sh b/install_all.sh index b8c40c5..eb0fa03 100644 --- a/install_all.sh +++ b/install_all.sh @@ -50,7 +50,7 @@ for asm in \ ; do rm -rf usr/include/arch-$asm done -rm Makefile .cache.mk +rm -f Makefile .cache.mk find -type f -name "..install.cmd" -exec rm {} + find -type f -name ".install" -exec rm {} + #------------------------------------------------------------------- diff --git a/linux-glibc-devel-4.17.tar.xz b/linux-glibc-devel-4.17.tar.xz deleted file mode 100644 index f909d3f..0000000 --- a/linux-glibc-devel-4.17.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1d735c6354ffc056ed7e79e944765bef4c524db3a815ee0bfb646fa40c7e714a -size 1065180 diff --git a/linux-glibc-devel-4.18.tar.xz b/linux-glibc-devel-4.18.tar.xz new file mode 100644 index 0000000..15fce77 --- /dev/null +++ b/linux-glibc-devel-4.18.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4206a0542023b8189a7621834d0fa0fcd3ad61b1c604ebee2769c21cc5d575 +size 1083844 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index c903c84..fe0a3ed 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + ------------------------------------------------------------------- Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 292d961..f12b0b9 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,26 +17,25 @@ Name: linux-glibc-devel +Version: 4.18 +Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only Group: Development/Libraries/C and C++ -BuildArch: noarch -Version: 4.17 -Release: 0 -Url: http://www.kernel.org/ -BuildRoot: %{_tmppath}/%{name}-%{version}-build +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh BuildRequires: fdupes BuildRequires: xz -Provides: kernel-headers -Provides: linux-kernel-headers = %{version} -Obsoletes: linux-kernel-headers < %{version} # rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) #!BuildIgnore: gettext-tools # glibc-devel requires linux-kernel-headers, which we are in progress of building #!BuildIgnore: linux-kernel-headers PreReq: coreutils -Source: %{name}-%{version}.tar.xz -Source1: install_all.sh +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} +BuildArch: noarch %description This package provides Linux kernel headers, the kernel API description @@ -45,8 +44,6 @@ interface; compiling external kernel modules requires kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, packages, instead. - - %prep %setup -q -n linux-glibc-devel-%{version} @@ -95,12 +92,10 @@ BOGUS cat version.h %install -rm -rf $RPM_BUILD_ROOT -mkdir $RPM_BUILD_ROOT -cp -a usr $RPM_BUILD_ROOT -cp -a version.h $RPM_BUILD_ROOT/usr/include/linux/ +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ # resolve file conflict with glibc for now -rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi.h +rm -fv %{buildroot}/%{_includedir}/scsi/scsi.h # Replace the directory /usr/include/asm with a symlink. # libc contained a symlink /usr/include/asm into kernel-source up to 7.0 (2.1.3) # glibc-devel contained a symlink /usr/include/asm into kernel-source in 7.1 (2.2) @@ -111,8 +106,8 @@ rm -fv $RPM_BUILD_ROOT//usr/include/scsi/scsi.h # A trigger will run after the /usr/include/asm was removed # Create a dummy symlink now for rpmlint happiness, we %%ghost this and create # a proper symlink during %%post: -ln -sfn asm-dummy $RPM_BUILD_ROOT/usr/include/asm -%fdupes $RPM_BUILD_ROOT/usr/include +ln -sfn asm-dummy %{buildroot}%{_includedir}/asm +%fdupes %{buildroot}%{_includedir} %postun if test "$1" = 0 @@ -141,7 +136,7 @@ if test -L usr/include/asm then case "$(readlink usr/include/asm)" in *../src/linux/include*) - echo "/usr/include/asm points to kernel-source, waiting for triggerpostun to symlink to asm-$asm_link" + echo "%{_includedir}/asm points to kernel-source, waiting for triggerpostun to symlink to asm-$asm_link" rm -fv usr/include/asm exit 0 ;; @@ -149,7 +144,7 @@ then : symlink is ok, update it below in case of an arch change elif test -d usr/include/asm then - echo "/usr/include/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" + echo "%{_includedir}/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" exit 0 fi ln -sfn arch-$asm_link/asm usr/include/asm @@ -176,7 +171,7 @@ exit 0 %files %defattr(-,root,root) -%{_prefix}/include/* -%ghost %{_prefix}/include/asm +%{_includedir}/* +%ghost %{_includedir}/asm %changelog -- 2.49.0 From 7ea4d014d49d254d2030abfc9eb1718ff26192c06f8d1718f4657d442d441689 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 22 Oct 2018 09:28:04 +0000 Subject: [PATCH 087/129] Accepting request 643672 from home:Andreas_Schwab:Factory - Update to kernel headers 4.19 OBS-URL: https://build.opensuse.org/request/show/643672 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=133 --- linux-glibc-devel-4.18.tar.xz | 3 --- linux-glibc-devel-4.19.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 22 +++++++++++----------- 4 files changed, 19 insertions(+), 14 deletions(-) delete mode 100644 linux-glibc-devel-4.18.tar.xz create mode 100644 linux-glibc-devel-4.19.tar.xz diff --git a/linux-glibc-devel-4.18.tar.xz b/linux-glibc-devel-4.18.tar.xz deleted file mode 100644 index 15fce77..0000000 --- a/linux-glibc-devel-4.18.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:6a4206a0542023b8189a7621834d0fa0fcd3ad61b1c604ebee2769c21cc5d575 -size 1083844 diff --git a/linux-glibc-devel-4.19.tar.xz b/linux-glibc-devel-4.19.tar.xz new file mode 100644 index 0000000..48f37df --- /dev/null +++ b/linux-glibc-devel-4.19.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e3673cedeabf17448ccdb31f0c53d9e28a5a59a2428238bfcf241ffdc196328 +size 1092564 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index fe0a3ed..e578f7f 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + ------------------------------------------------------------------- Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index f12b0b9..80703bd 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -12,12 +12,12 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: linux-glibc-devel -Version: 4.18 +Version: 4.19 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only @@ -51,7 +51,7 @@ packages, instead. cat > version.h <<\BOGUS #ifdef __KERNEL__ #error "=======================================================" -#error "You should not include /usr/include/{linux,asm}/ header" +#error "You should not include %{_includedir}/{linux,asm}/ header" #error "files directly for the compilation of kernel modules." #error "" #error "glibc now uses kernel header files from a well-defined" @@ -112,7 +112,7 @@ ln -sfn asm-dummy %{buildroot}%{_includedir}/asm %postun if test "$1" = 0 then - rm -f usr/include/asm + rm -f %{_includedir}/asm fi exit 0 @@ -132,22 +132,22 @@ case "$(uname -m)" in riscv*) asm_link=riscv ;; *) asm_link=x86 ;; esac -if test -L usr/include/asm +if test -L %{_includedir}/asm then - case "$(readlink usr/include/asm)" in + case "$(readlink %{_includedir}/asm)" in *../src/linux/include*) echo "%{_includedir}/asm points to kernel-source, waiting for triggerpostun to symlink to asm-$asm_link" - rm -fv usr/include/asm + rm -fv %{_includedir}/asm exit 0 ;; esac - : symlink is ok, update it below in case of an arch change -elif test -d usr/include/asm + # symlink is ok, update it below in case of an arch change +elif test -d %{_includedir}/asm then echo "%{_includedir}/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" exit 0 fi -ln -sfn arch-$asm_link/asm usr/include/asm +ln -sfn arch-$asm_link/asm %{_includedir}/asm exit 0 %triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 @@ -166,7 +166,7 @@ case "$(uname -m)" in riscv*) asm_link=riscv ;; *) asm_link=x86 ;; esac -ln -sfn arch-$asm_link/asm usr/include/asm +ln -sfn arch-$asm_link/asm %{_includedir}/asm exit 0 %files -- 2.49.0 From 83e821256608a91ca2e85b4efee05b47dcd3d0547c0b80c348ee4d9a43d955e4 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Wed, 24 Oct 2018 18:18:06 +0000 Subject: [PATCH 088/129] Accepting request 644358 from home:jirislaby:branches:Base:System - fix netfilter builds with 4.19 * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch OBS-URL: https://build.opensuse.org/request/show/644358 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=134 --- linux-glibc-devel.changes | 6 +++ linux-glibc-devel.spec | 4 +- ...-define-INT_MIN-INT_MAX-in-userspace.patch | 46 +++++++++++++++++++ 3 files changed, 55 insertions(+), 1 deletion(-) create mode 100644 netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index e578f7f..9be533e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + ------------------------------------------------------------------- Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 80703bd..17a5291 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -12,7 +12,7 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # @@ -25,6 +25,7 @@ Group: Development/Libraries/C and C++ URL: http://www.kernel.org/ Source: %{name}-%{version}.tar.xz Source1: install_all.sh +Patch0: netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch BuildRequires: fdupes BuildRequires: xz # rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) @@ -46,6 +47,7 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{version} +%autopatch -p1 %build cat > version.h <<\BOGUS diff --git a/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch b/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch new file mode 100644 index 0000000..fc00995 --- /dev/null +++ b/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch @@ -0,0 +1,46 @@ +From: Jiri Slaby +Date: Wed, 24 Oct 2018 12:36:28 +0200 +Subject: netfilter: bridge: define INT_MIN & INT_MAX in userspace +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +Patch-mainline: submitted on 2018/10/24 +References: 4.19 fixes + +With 4.19, programs like ebtables fail to build when they include +"linux/netfilter_bridge.h". It is caused by commit 94276fa8a2a4 which +added a use of INT_MIN and INT_MAX to the header: +: In file included from /usr/include/linux/netfilter_bridge/ebtables.h:18, +: from include/ebtables_u.h:28, +: from communication.c:23: +: /usr/include/linux/netfilter_bridge.h:30:20: error: 'INT_MIN' undeclared here (not in a function) +: NF_BR_PRI_FIRST = INT_MIN, +: ^~~~~~~ + +Define these constants by including "limits.h" when !__KERNEL__ (the +same way as for other netfilter_* headers). + +Fixes: 94276fa8a2a4 ("netfilter: bridge: Expose nf_tables bridge hook priorities through uapi") +Signed-off-by: Jiri Slaby +Cc: Máté Eckl +Cc: Pablo Neira Ayuso +--- + include/uapi/linux/netfilter_bridge.h | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/include/uapi/linux/netfilter_bridge.h b/include/uapi/linux/netfilter_bridge.h +index 156ccd089df1..1610fdbab98d 100644 +--- a/usr/include/linux/netfilter_bridge.h ++++ b/usr/include/linux/netfilter_bridge.h +@@ -11,6 +11,8 @@ + #include + #include + ++#include /* for INT_MIN, INT_MAX */ ++ + /* Bridge Hooks */ + /* After promisc drops, checksum checks. */ + #define NF_BR_PRE_ROUTING 0 +-- +2.19.1 + -- 2.49.0 From c37686d285d7f8729c22c131504542b4d4a1f84b36684f57cd2f56997a23e12f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 7 Jan 2019 08:34:24 +0000 Subject: [PATCH 089/129] Accepting request 663285 from home:Andreas_Schwab:Factory - Update to kernel headers 4.20 OBS-URL: https://build.opensuse.org/request/show/663285 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=136 --- install_all.sh | 89 ++++++++----------- linux-glibc-devel-4.19.tar.xz | 3 - linux-glibc-devel-4.20.tar.xz | 3 + linux-glibc-devel.changes | 5 ++ linux-glibc-devel.spec | 12 ++- ...-define-INT_MIN-INT_MAX-in-userspace.patch | 46 ---------- 6 files changed, 50 insertions(+), 108 deletions(-) delete mode 100644 linux-glibc-devel-4.19.tar.xz create mode 100644 linux-glibc-devel-4.20.tar.xz delete mode 100644 netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch diff --git a/install_all.sh b/install_all.sh index eb0fa03..c46f01e 100644 --- a/install_all.sh +++ b/install_all.sh @@ -1,58 +1,45 @@ #!/bin/bash -# bash -x $0 linux-1.2.3.tar.xz +# bash -x $0 linux.git tag set -e kernel=$1 -if ! test -f "$1" -then - echo "Usage: ${0##*/} linux-1.2.3.tar.xz" - exit 1 -fi -if echo $PWD | grep -q :; then - echo "do not call this in a directory with : - make will fail" +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" exit 1 fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac -kernel_dir="`tar -tf $1 | sed '1 {s@^.*[[:blank:]]@@;s@linux-@@;s@/.*$@@;s@^\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)@\1@;p;Q}'`" -header_dir="$PWD/linux-glibc-devel-$kernel_dir" -if test -d "$kernel_dir" -then - echo "$kernel_dir exists, remove it first." - exit 1 +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 fi -if ! mkdir "$header_dir" -then - echo "$header_dir exists, remove it first." - exit 1 +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 fi -tar -xf $1 -pushd linux-${kernel_dir} -cp Makefile $header_dir -/usr/bin/make O="$header_dir" headers_install_all +git clone --single-branch -b "$2" "$1" "$kernel_dir" +pushd "$kernel_dir" +cp Makefile "$header_dir" +make O="$header_dir" headers_install_all # kvm.h and aout.h are only installed if SRCARCH is an architecture # that has support for them. As the package is noarch we need to make # sure we get the full support on x86 -/usr/bin/make SRCARCH=x86 O="$header_dir" headers_install_all +make SRCARCH=x86 O="$header_dir" headers_install_all popd pushd "$header_dir" -for asm in \ - alpha \ - arc \ - c6x \ - h8300 \ - hexagon \ - microblaze \ - nds32 \ - nios2 \ - openrisc \ - sh \ - unicore32 \ - xtensa \ -; do - rm -rf usr/include/arch-$asm +remove="arc c6x csky h8300 hexagon microblaze nds32 nios2 openrisc sh unicore32 xtensa" +for asm in $remove; do + rm -rf usr/include/arch-$asm done rm -f Makefile .cache.mk -find -type f -name "..install.cmd" -exec rm {} + -find -type f -name ".install" -exec rm {} + +find -type f \( -name "..install.cmd" -or -name ".install" \) -exec rm {} + #------------------------------------------------------------------- #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de @@ -62,20 +49,18 @@ find -type f -name ".install" -exec rm {} + rm -rf usr/include/drm/ # Remove confusing empty uapi directory test ! -d usr/include/uapi || rmdir usr/include/uapi -for dir in * -do - case "$dir" in - usr) ;; - *) - if test -d "$dir" - then - rm -rf "$dir" - fi - ;; - esac +for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac done popd du -sh "$header_dir/usr" tar -cJf "$header_dir.tar.xz" --owner=root --group=root "${header_dir##*/}" -rm -rf $header_dir linux-${kernel_dir} +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-4.19.tar.xz b/linux-glibc-devel-4.19.tar.xz deleted file mode 100644 index 48f37df..0000000 --- a/linux-glibc-devel-4.19.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:3e3673cedeabf17448ccdb31f0c53d9e28a5a59a2428238bfcf241ffdc196328 -size 1092564 diff --git a/linux-glibc-devel-4.20.tar.xz b/linux-glibc-devel-4.20.tar.xz new file mode 100644 index 0000000..c8c1cb2 --- /dev/null +++ b/linux-glibc-devel-4.20.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc80e73b55ef8bb8a15303bcc1a4ffd8686ac0811d449c13d638f4911893007c +size 1111768 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 9be533e..df1dca4 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 + ------------------------------------------------------------------- Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 17a5291..ebc974c 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,12 +12,12 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # Name: linux-glibc-devel -Version: 4.19 +Version: 4.20 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only @@ -25,7 +25,6 @@ Group: Development/Libraries/C and C++ URL: http://www.kernel.org/ Source: %{name}-%{version}.tar.xz Source1: install_all.sh -Patch0: netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch BuildRequires: fdupes BuildRequires: xz # rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) @@ -47,7 +46,6 @@ packages, instead. %prep %setup -q -n linux-glibc-devel-%{version} -%autopatch -p1 %build cat > version.h <<\BOGUS @@ -138,7 +136,7 @@ if test -L %{_includedir}/asm then case "$(readlink %{_includedir}/asm)" in *../src/linux/include*) - echo "%{_includedir}/asm points to kernel-source, waiting for triggerpostun to symlink to asm-$asm_link" + echo "%{_includedir}/asm points to kernel-source, waiting for triggerpostun to symlink to arch-$asm_link/asm" rm -fv %{_includedir}/asm exit 0 ;; @@ -146,7 +144,7 @@ then # symlink is ok, update it below in case of an arch change elif test -d %{_includedir}/asm then - echo "%{_includedir}/asm is a directory, waiting for triggerpostun to symlink to asm-$asm_link" + echo "%{_includedir}/asm is a directory, waiting for triggerpostun to symlink to arch-$asm_link/asm" exit 0 fi ln -sfn arch-$asm_link/asm %{_includedir}/asm diff --git a/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch b/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch deleted file mode 100644 index fc00995..0000000 --- a/netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch +++ /dev/null @@ -1,46 +0,0 @@ -From: Jiri Slaby -Date: Wed, 24 Oct 2018 12:36:28 +0200 -Subject: netfilter: bridge: define INT_MIN & INT_MAX in userspace -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit -Patch-mainline: submitted on 2018/10/24 -References: 4.19 fixes - -With 4.19, programs like ebtables fail to build when they include -"linux/netfilter_bridge.h". It is caused by commit 94276fa8a2a4 which -added a use of INT_MIN and INT_MAX to the header: -: In file included from /usr/include/linux/netfilter_bridge/ebtables.h:18, -: from include/ebtables_u.h:28, -: from communication.c:23: -: /usr/include/linux/netfilter_bridge.h:30:20: error: 'INT_MIN' undeclared here (not in a function) -: NF_BR_PRI_FIRST = INT_MIN, -: ^~~~~~~ - -Define these constants by including "limits.h" when !__KERNEL__ (the -same way as for other netfilter_* headers). - -Fixes: 94276fa8a2a4 ("netfilter: bridge: Expose nf_tables bridge hook priorities through uapi") -Signed-off-by: Jiri Slaby -Cc: Máté Eckl -Cc: Pablo Neira Ayuso ---- - include/uapi/linux/netfilter_bridge.h | 4 ++++ - 1 file changed, 4 insertions(+) - -diff --git a/include/uapi/linux/netfilter_bridge.h b/include/uapi/linux/netfilter_bridge.h -index 156ccd089df1..1610fdbab98d 100644 ---- a/usr/include/linux/netfilter_bridge.h -+++ b/usr/include/linux/netfilter_bridge.h -@@ -11,6 +11,8 @@ - #include - #include - -+#include /* for INT_MIN, INT_MAX */ -+ - /* Bridge Hooks */ - /* After promisc drops, checksum checks. */ - #define NF_BR_PRE_ROUTING 0 --- -2.19.1 - -- 2.49.0 From 150bddb97e58be6d56d127fadf3af70600ed5bad8de184777f78f4601e6716b7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 7 Jan 2019 09:32:02 +0000 Subject: [PATCH 090/129] OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=137 --- linux-glibc-devel.changes | 1 + 1 file changed, 1 insertion(+) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index df1dca4..7647b0c 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -2,6 +2,7 @@ Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de - Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove ------------------------------------------------------------------- Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby -- 2.49.0 From db51af0396eb70f37b1af7d7dfdc18ab4a90b3ff34bc00b58af27747d73f2244 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 9 Apr 2019 15:12:33 +0000 Subject: [PATCH 091/129] Accepting request 692642 from home:Andreas_Schwab:Factory - Update to kernel headers 5.0 OBS-URL: https://build.opensuse.org/request/show/692642 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=139 --- linux-glibc-devel-4.20.tar.xz | 3 --- linux-glibc-devel-5.0.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-4.20.tar.xz create mode 100644 linux-glibc-devel-5.0.tar.xz diff --git a/linux-glibc-devel-4.20.tar.xz b/linux-glibc-devel-4.20.tar.xz deleted file mode 100644 index c8c1cb2..0000000 --- a/linux-glibc-devel-4.20.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc80e73b55ef8bb8a15303bcc1a4ffd8686ac0811d449c13d638f4911893007c -size 1111768 diff --git a/linux-glibc-devel-5.0.tar.xz b/linux-glibc-devel-5.0.tar.xz new file mode 100644 index 0000000..6a9d0d5 --- /dev/null +++ b/linux-glibc-devel-5.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1082ec58c2d85f2ac0ce43451e4f872ed85763a744a413b36964ae25ce89b7 +size 1116692 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 7647b0c..6ef1511 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + ------------------------------------------------------------------- Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index ebc974c..125f3f1 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 4.20 +Version: 5.0 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From bda62c9c0a3d4f54fec362698326f7f157b6be2ce6660a1d03d5b27cf5285392 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 7 May 2019 08:33:01 +0000 Subject: [PATCH 092/129] Accepting request 701243 from home:Andreas_Schwab:Factory - Update to kernel headers 5.1 OBS-URL: https://build.opensuse.org/request/show/701243 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=141 --- linux-glibc-devel-5.0.tar.xz | 3 --- linux-glibc-devel-5.1.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.0.tar.xz create mode 100644 linux-glibc-devel-5.1.tar.xz diff --git a/linux-glibc-devel-5.0.tar.xz b/linux-glibc-devel-5.0.tar.xz deleted file mode 100644 index 6a9d0d5..0000000 --- a/linux-glibc-devel-5.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fe1082ec58c2d85f2ac0ce43451e4f872ed85763a744a413b36964ae25ce89b7 -size 1116692 diff --git a/linux-glibc-devel-5.1.tar.xz b/linux-glibc-devel-5.1.tar.xz new file mode 100644 index 0000000..5fe8cf8 --- /dev/null +++ b/linux-glibc-devel-5.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a865aa7ee5f74cdef7dda450bbb0915ff0a0cedcc8411c35b0ea8f0e03636fe1 +size 1128444 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6ef1511..94fd6bd 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + ------------------------------------------------------------------- Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 125f3f1..162681a 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.0 +Version: 5.1 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From fc6bf1e517a80c2cb20123bacc19af9c808e7af1cdbb42733b7760eadfbd1010 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 8 Jul 2019 15:23:06 +0000 Subject: [PATCH 093/129] Accepting request 714101 from home:Andreas_Schwab:Factory - Update to kernel headers 5.2 OBS-URL: https://build.opensuse.org/request/show/714101 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=143 --- linux-glibc-devel-5.1.tar.xz | 3 --- linux-glibc-devel-5.2.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.1.tar.xz create mode 100644 linux-glibc-devel-5.2.tar.xz diff --git a/linux-glibc-devel-5.1.tar.xz b/linux-glibc-devel-5.1.tar.xz deleted file mode 100644 index 5fe8cf8..0000000 --- a/linux-glibc-devel-5.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a865aa7ee5f74cdef7dda450bbb0915ff0a0cedcc8411c35b0ea8f0e03636fe1 -size 1128444 diff --git a/linux-glibc-devel-5.2.tar.xz b/linux-glibc-devel-5.2.tar.xz new file mode 100644 index 0000000..b2246e4 --- /dev/null +++ b/linux-glibc-devel-5.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e590165918daf03f731a0b3e95b2e01e3578927c09816453de4a931f5867045 +size 1142912 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 94fd6bd..b208f31 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + ------------------------------------------------------------------- Tue May 7 08:29:09 UTC 2019 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 162681a..aa29517 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.1 +Version: 5.2 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 56d0196522f78508aabf14fbb5effa7888f1376d77a212aaa71357434ed429e4 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 18 Sep 2019 10:58:04 +0000 Subject: [PATCH 094/129] Accepting request 731713 from home:Andreas_Schwab:Factory - Update to kernel headers 5.2 - Make it arch dependent due to difference in installed headers OBS-URL: https://build.opensuse.org/request/show/731713 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=145 --- install_all.sh | 66 +++++++++++----------- linux-glibc-devel-5.2.tar.xz | 3 - linux-glibc-devel-5.3.tar.xz | 3 + linux-glibc-devel.changes | 6 ++ linux-glibc-devel.spec | 103 +++++++++++------------------------ 5 files changed, 75 insertions(+), 106 deletions(-) delete mode 100644 linux-glibc-devel-5.2.tar.xz create mode 100644 linux-glibc-devel-5.3.tar.xz diff --git a/install_all.sh b/install_all.sh index c46f01e..530aec5 100644 --- a/install_all.sh +++ b/install_all.sh @@ -25,42 +25,46 @@ if ! mkdir "$header_dir"; then exit 1 fi git clone --single-branch -b "$2" "$1" "$kernel_dir" +remove="arc c6x csky h8300 hexagon microblaze nds32 nios2 openrisc sh unicore32 xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) pushd "$kernel_dir" -cp Makefile "$header_dir" -make O="$header_dir" headers_install_all -# kvm.h and aout.h are only installed if SRCARCH is an architecture -# that has support for them. As the package is noarch we need to make -# sure we get the full support on x86 -make SRCARCH=x86 O="$header_dir" headers_install_all +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done popd pushd "$header_dir" -remove="arc c6x csky h8300 hexagon microblaze nds32 nios2 openrisc sh unicore32 xtensa" -for asm in $remove; do - rm -rf usr/include/arch-$asm -done -rm -f Makefile .cache.mk -find -type f \( -name "..install.cmd" -or -name ".install" \) -exec rm {} + -#------------------------------------------------------------------- -#Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de -#- Remove the kernel version of drm headers, they conflict -# with the libdrm ones, and those are slightly newer. -# -rm -rf usr/include/drm/ -# Remove confusing empty uapi directory -test ! -d usr/include/uapi || rmdir usr/include/uapi -for dir in *; do - case "$dir" in - usr) ;; - *) - if test -d "$dir"; then - rm -rf "$dir" - fi - ;; - esac + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. done popd -du -sh "$header_dir/usr" +du -sh "$header_dir" tar -cJf "$header_dir.tar.xz" --owner=root --group=root "${header_dir##*/}" rm -rf "$header_dir" "$kernel_dir" - diff --git a/linux-glibc-devel-5.2.tar.xz b/linux-glibc-devel-5.2.tar.xz deleted file mode 100644 index b2246e4..0000000 --- a/linux-glibc-devel-5.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4e590165918daf03f731a0b3e95b2e01e3578927c09816453de4a931f5867045 -size 1142912 diff --git a/linux-glibc-devel-5.3.tar.xz b/linux-glibc-devel-5.3.tar.xz new file mode 100644 index 0000000..5355025 --- /dev/null +++ b/linux-glibc-devel-5.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:604a11dcb1d94d59c4f604ea5ac5cd1d8adb402422e1ec3d662e45f57872e81e +size 1600312 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b208f31..ceb3858 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 +- Make it arch dependent due to difference in installed headers + ------------------------------------------------------------------- Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index aa29517..fa08c0a 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.2 +Version: 5.3 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only @@ -35,7 +35,31 @@ PreReq: coreutils Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} -BuildArch: noarch +%global kernel_arch %target_cpu +%ifarch x86_64 %ix86 +%global kernel_arch x86 +%endif +%ifarch ppc ppc64 ppc64le +%global kernel_arch powerpc +%endif +%ifarch %arm +%global kernel_arch arm +%endif +%ifarch aarch64 +%global kernel_arch arm64 +%endif +%ifarch riscv64 +%global kernel_arch riscv +%endif +%ifarch s390x +%global kernel_arch s390 +%endif +%ifarch hppa +%global kernel_arch parisc +%endif +%ifarch sparc64 +%global kernel_arch sparc +%endif %description This package provides Linux kernel headers, the kernel API description @@ -48,6 +72,7 @@ packages, instead. %setup -q -n linux-glibc-devel-%{version} %build +cd %{kernel_arch} cat > version.h <<\BOGUS #ifdef __KERNEL__ #error "=======================================================" @@ -92,86 +117,20 @@ BOGUS cat version.h %install +cd %{kernel_arch} cp -a usr %{buildroot}/ cp -a version.h %{buildroot}%{_includedir}/linux/ # resolve file conflict with glibc for now rm -fv %{buildroot}/%{_includedir}/scsi/scsi.h -# Replace the directory /usr/include/asm with a symlink. -# libc contained a symlink /usr/include/asm into kernel-source up to 7.0 (2.1.3) -# glibc-devel contained a symlink /usr/include/asm into kernel-source in 7.1 (2.2) -# glibc-devel contained a directory /usr/include/asm from 7.2 (2.2.2) up to 10.1/SLES10 (2.4) -# The directory moved from glibc-devel to linux-kernel-headers in 10.2 (2.6.18.2) -# The directory turned into a symlink in 10.3 (2.6.22) -# rpm will remove obsolete files after the post install scripts -# A trigger will run after the /usr/include/asm was removed -# Create a dummy symlink now for rpmlint happiness, we %%ghost this and create -# a proper symlink during %%post: -ln -sfn asm-dummy %{buildroot}%{_includedir}/asm %fdupes %{buildroot}%{_includedir} -%postun -if test "$1" = 0 -then - rm -f %{_includedir}/asm +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm fi -exit 0 - -%post -asm_link= -case "$(uname -m)" in - alpha*) asm_link=alpha ;; - ppc*) asm_link=powerpc ;; - s390*) asm_link=s390 ;; - ia64) asm_link=ia64 ;; - *arm*) asm_link=arm ;; - parisc) asm_link=parisc ;; - *mips*) asm_link=mips ;; - sparc*) asm_link=sparc ;; - aarch64) asm_link=arm64 ;; - m68k) asm_link=m68k ;; - riscv*) asm_link=riscv ;; - *) asm_link=x86 ;; -esac -if test -L %{_includedir}/asm -then - case "$(readlink %{_includedir}/asm)" in - *../src/linux/include*) - echo "%{_includedir}/asm points to kernel-source, waiting for triggerpostun to symlink to arch-$asm_link/asm" - rm -fv %{_includedir}/asm - exit 0 - ;; - esac - # symlink is ok, update it below in case of an arch change -elif test -d %{_includedir}/asm -then - echo "%{_includedir}/asm is a directory, waiting for triggerpostun to symlink to arch-$asm_link/asm" - exit 0 -fi -ln -sfn arch-$asm_link/asm %{_includedir}/asm -exit 0 - -%triggerpostun -- linux-kernel-headers, glibc-devel < 2.5, libc < 2.2 -asm_link= -case "$(uname -m)" in - alpha*) asm_link=alpha ;; - ppc*) asm_link=powerpc ;; - s390*) asm_link=s390 ;; - ia64) asm_link=ia64 ;; - *arm*) asm_link=arm ;; - parisc) asm_link=parisc ;; - *mips*) asm_link=mips ;; - sparc*) asm_link=sparc ;; - aarch64) asm_link=arm64 ;; - m68k) asm_link=m68k ;; - riscv*) asm_link=riscv ;; - *) asm_link=x86 ;; -esac -ln -sfn arch-$asm_link/asm %{_includedir}/asm -exit 0 %files %defattr(-,root,root) %{_includedir}/* -%ghost %{_includedir}/asm %changelog -- 2.49.0 From f6ecedf7d4b391aa63fde4a49f4ec8f87b3d122bd3717e5f200d8e954fdbeabb Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 18 Sep 2019 14:54:51 +0000 Subject: [PATCH 095/129] OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=146 --- linux-glibc-devel.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index ceb3858..e688c7f 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,7 +1,7 @@ ------------------------------------------------------------------- Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab -- Update to kernel headers 5.2 +- Update to kernel headers 5.3 - Make it arch dependent due to difference in installed headers ------------------------------------------------------------------- -- 2.49.0 From 5778d53be96899bdf3215e06f38e94297ba6bb18aec4d473fa80aba30ea4f640 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 29 Nov 2019 17:54:08 +0000 Subject: [PATCH 096/129] Accepting request 752478 from home:Andreas_Schwab:Factory - Update to kernel headers 5.4 OBS-URL: https://build.opensuse.org/request/show/752478 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=148 --- linux-glibc-devel-5.3.tar.xz | 3 --- linux-glibc-devel-5.4.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 6 +++--- 4 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-5.3.tar.xz create mode 100644 linux-glibc-devel-5.4.tar.xz diff --git a/linux-glibc-devel-5.3.tar.xz b/linux-glibc-devel-5.3.tar.xz deleted file mode 100644 index 5355025..0000000 --- a/linux-glibc-devel-5.3.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:604a11dcb1d94d59c4f604ea5ac5cd1d8adb402422e1ec3d662e45f57872e81e -size 1600312 diff --git a/linux-glibc-devel-5.4.tar.xz b/linux-glibc-devel-5.4.tar.xz new file mode 100644 index 0000000..2e3074b --- /dev/null +++ b/linux-glibc-devel-5.4.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6d7d839768b28886c493ba2fc6d5cce1f335a5ef8ee9dc0543429d502d0ff1d +size 1628324 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index e688c7f..98db92a 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + ------------------------------------------------------------------- Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index fa08c0a..1615067 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.3 +Version: 5.4 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only @@ -35,7 +35,7 @@ PreReq: coreutils Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} -%global kernel_arch %target_cpu +%global kernel_arch %_target_cpu %ifarch x86_64 %ix86 %global kernel_arch x86 %endif -- 2.49.0 From a5b270e362171f995a6f1f23a594aa6b79cb501d230dbc75efcdfc058b0b1a5f Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 27 Jan 2020 15:08:15 +0000 Subject: [PATCH 097/129] Accepting request 767804 from home:Andreas_Schwab:Factory - Update to kernel headers 5.5 OBS-URL: https://build.opensuse.org/request/show/767804 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=150 --- linux-glibc-devel-5.4.tar.xz | 3 --- linux-glibc-devel-5.5.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-5.4.tar.xz create mode 100644 linux-glibc-devel-5.5.tar.xz diff --git a/linux-glibc-devel-5.4.tar.xz b/linux-glibc-devel-5.4.tar.xz deleted file mode 100644 index 2e3074b..0000000 --- a/linux-glibc-devel-5.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e6d7d839768b28886c493ba2fc6d5cce1f335a5ef8ee9dc0543429d502d0ff1d -size 1628324 diff --git a/linux-glibc-devel-5.5.tar.xz b/linux-glibc-devel-5.5.tar.xz new file mode 100644 index 0000000..3937c6a --- /dev/null +++ b/linux-glibc-devel-5.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcc34d053748460a9312c1869d7b1c8675ca24251331b290856a704483dbad80 +size 1636124 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 98db92a..361f252 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + ------------------------------------------------------------------- Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 1615067..c3d813d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.4 +Version: 5.5 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From d0ea7e4b6eb68756e081cac8d8ac93f1b561d8b9e376dc196f6bc2baa81a7bba Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 31 Mar 2020 19:30:01 +0000 Subject: [PATCH 098/129] Accepting request 790297 from home:Andreas_Schwab:Factory - Update to kernel headers 5.6 OBS-URL: https://build.opensuse.org/request/show/790297 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=152 --- linux-glibc-devel-5.5.tar.xz | 3 --- linux-glibc-devel-5.6.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.5.tar.xz create mode 100644 linux-glibc-devel-5.6.tar.xz diff --git a/linux-glibc-devel-5.5.tar.xz b/linux-glibc-devel-5.5.tar.xz deleted file mode 100644 index 3937c6a..0000000 --- a/linux-glibc-devel-5.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:fcc34d053748460a9312c1869d7b1c8675ca24251331b290856a704483dbad80 -size 1636124 diff --git a/linux-glibc-devel-5.6.tar.xz b/linux-glibc-devel-5.6.tar.xz new file mode 100644 index 0000000..2751b1c --- /dev/null +++ b/linux-glibc-devel-5.6.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ccdbabd27293f6a4f8e2b4fb2b12363d1ac341cc5722c7d696534376f4ffb0f +size 1645840 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 361f252..d180995 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + ------------------------------------------------------------------- Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c3d813d..c1c4380 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.5 +Version: 5.6 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 9a407f21eb47560e342384e404ebd7a6559790e2f595c0c0d6da7e84bcfb02f6 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 15 Jun 2020 20:32:15 +0000 Subject: [PATCH 099/129] Accepting request 814787 from home:Andreas_Schwab:Factory - Update to kernel headers 5.7 OBS-URL: https://build.opensuse.org/request/show/814787 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=154 --- linux-glibc-devel-5.6.tar.xz | 3 --- linux-glibc-devel-5.7.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.6.tar.xz create mode 100644 linux-glibc-devel-5.7.tar.xz diff --git a/linux-glibc-devel-5.6.tar.xz b/linux-glibc-devel-5.6.tar.xz deleted file mode 100644 index 2751b1c..0000000 --- a/linux-glibc-devel-5.6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ccdbabd27293f6a4f8e2b4fb2b12363d1ac341cc5722c7d696534376f4ffb0f -size 1645840 diff --git a/linux-glibc-devel-5.7.tar.xz b/linux-glibc-devel-5.7.tar.xz new file mode 100644 index 0000000..626d648 --- /dev/null +++ b/linux-glibc-devel-5.7.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b3c43fb05fa1c58d1dcac32079174dc832f01321ecef0d50b5bc00f7370eb2f +size 1664544 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index d180995..c0a4af3 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + ------------------------------------------------------------------- Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c1c4380..9bdb213 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.6 +Version: 5.7 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From fc3b2742297639ec2ec87f0f7d828891fecccf678831fef0a4149173399231e8 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 3 Aug 2020 11:11:16 +0000 Subject: [PATCH 100/129] Accepting request 824107 from home:Andreas_Schwab:Factory - Update to kernel headers 5.8 OBS-URL: https://build.opensuse.org/request/show/824107 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=156 --- linux-glibc-devel-5.7.tar.xz | 3 --- linux-glibc-devel-5.8.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.7.tar.xz create mode 100644 linux-glibc-devel-5.8.tar.xz diff --git a/linux-glibc-devel-5.7.tar.xz b/linux-glibc-devel-5.7.tar.xz deleted file mode 100644 index 626d648..0000000 --- a/linux-glibc-devel-5.7.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8b3c43fb05fa1c58d1dcac32079174dc832f01321ecef0d50b5bc00f7370eb2f -size 1664544 diff --git a/linux-glibc-devel-5.8.tar.xz b/linux-glibc-devel-5.8.tar.xz new file mode 100644 index 0000000..82bd578 --- /dev/null +++ b/linux-glibc-devel-5.8.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d907e268cf0d7536b3c3eb8d8ecc51f5be4eac1b560c72ae9b9e7127f706ea +size 1690168 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index c0a4af3..42197bb 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + ------------------------------------------------------------------- Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9bdb213..e02a6c5 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.7 +Version: 5.8 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 847396250d8bae1cd5505e667a3f17144bf02d06796aad486055659f68c68de2 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 12 Oct 2020 08:53:47 +0000 Subject: [PATCH 101/129] Accepting request 841231 from home:Andreas_Schwab:Factory - Update to kernel headers 5.9 OBS-URL: https://build.opensuse.org/request/show/841231 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=158 --- linux-glibc-devel-5.8.tar.xz | 3 --- linux-glibc-devel-5.9.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.8.tar.xz create mode 100644 linux-glibc-devel-5.9.tar.xz diff --git a/linux-glibc-devel-5.8.tar.xz b/linux-glibc-devel-5.8.tar.xz deleted file mode 100644 index 82bd578..0000000 --- a/linux-glibc-devel-5.8.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:35d907e268cf0d7536b3c3eb8d8ecc51f5be4eac1b560c72ae9b9e7127f706ea -size 1690168 diff --git a/linux-glibc-devel-5.9.tar.xz b/linux-glibc-devel-5.9.tar.xz new file mode 100644 index 0000000..3e30991 --- /dev/null +++ b/linux-glibc-devel-5.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:387ac7257e43125d529a52dd311a9589bc58bfa57ba66fb70c92cd1230e8e138 +size 1687980 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 42197bb..2cd5f9c 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + ------------------------------------------------------------------- Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index e02a6c5..ee831e3 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.8 +Version: 5.9 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 396deb35308f8244e6d9bd6351cd0c36c73e9433b60f9ce9b8cddcd6449984c8 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 14 Dec 2020 10:56:00 +0000 Subject: [PATCH 102/129] Accepting request 855713 from home:Andreas_Schwab:Factory - Update to kernel headers 5.10 OBS-URL: https://build.opensuse.org/request/show/855713 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=160 --- linux-glibc-devel-5.10.tar.xz | 3 +++ linux-glibc-devel-5.9.tar.xz | 3 --- linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 +--- 4 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 linux-glibc-devel-5.10.tar.xz delete mode 100644 linux-glibc-devel-5.9.tar.xz diff --git a/linux-glibc-devel-5.10.tar.xz b/linux-glibc-devel-5.10.tar.xz new file mode 100644 index 0000000..1f61d48 --- /dev/null +++ b/linux-glibc-devel-5.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:adb95b2f149f7f026285a41e1d56c5f8416847d41f0f0796b531228b8cb905d2 +size 1706556 diff --git a/linux-glibc-devel-5.9.tar.xz b/linux-glibc-devel-5.9.tar.xz deleted file mode 100644 index 3e30991..0000000 --- a/linux-glibc-devel-5.9.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:387ac7257e43125d529a52dd311a9589bc58bfa57ba66fb70c92cd1230e8e138 -size 1687980 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 2cd5f9c..15fae2a 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + ------------------------------------------------------------------- Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index ee831e3..b144cc9 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.9 +Version: 5.10 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only @@ -120,8 +120,6 @@ cat version.h cd %{kernel_arch} cp -a usr %{buildroot}/ cp -a version.h %{buildroot}%{_includedir}/linux/ -# resolve file conflict with glibc for now -rm -fv %{buildroot}/%{_includedir}/scsi/scsi.h %fdupes %{buildroot}%{_includedir} %pre -- 2.49.0 From 62ed1976813260640606d4df59ef8fa167eae821a721c481e66241b21c26b28a Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 17 Feb 2021 19:45:54 +0000 Subject: [PATCH 103/129] Accepting request 873216 from home:Andreas_Schwab:Factory - Update to kernel headers 5.11 OBS-URL: https://build.opensuse.org/request/show/873216 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=162 --- linux-glibc-devel-5.10.tar.xz | 3 --- linux-glibc-devel-5.11.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-5.10.tar.xz create mode 100644 linux-glibc-devel-5.11.tar.xz diff --git a/linux-glibc-devel-5.10.tar.xz b/linux-glibc-devel-5.10.tar.xz deleted file mode 100644 index 1f61d48..0000000 --- a/linux-glibc-devel-5.10.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:adb95b2f149f7f026285a41e1d56c5f8416847d41f0f0796b531228b8cb905d2 -size 1706556 diff --git a/linux-glibc-devel-5.11.tar.xz b/linux-glibc-devel-5.11.tar.xz new file mode 100644 index 0000000..ffb67e7 --- /dev/null +++ b/linux-glibc-devel-5.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3869d669604dda80abcfb499700ef1f6807478afd2aa6de74523cc6601a778 +size 1718360 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 15fae2a..a4e946d 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + ------------------------------------------------------------------- Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index b144cc9..578c1bb 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.10 +Version: 5.11 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 0fe826e2dc5e2efe639ef56132ab39c6dfa89c26ebdaa24ceb374ba8fd405720 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 27 Apr 2021 09:26:18 +0000 Subject: [PATCH 104/129] Accepting request 888718 from home:Andreas_Schwab:Factory - Update to kernel headers 5.12 OBS-URL: https://build.opensuse.org/request/show/888718 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=164 --- linux-glibc-devel-5.11.tar.xz | 3 --- linux-glibc-devel-5.12.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.11.tar.xz create mode 100644 linux-glibc-devel-5.12.tar.xz diff --git a/linux-glibc-devel-5.11.tar.xz b/linux-glibc-devel-5.11.tar.xz deleted file mode 100644 index ffb67e7..0000000 --- a/linux-glibc-devel-5.11.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8f3869d669604dda80abcfb499700ef1f6807478afd2aa6de74523cc6601a778 -size 1718360 diff --git a/linux-glibc-devel-5.12.tar.xz b/linux-glibc-devel-5.12.tar.xz new file mode 100644 index 0000000..7afca37 --- /dev/null +++ b/linux-glibc-devel-5.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0154ba57d0cdec6e3004f57e6ed81ec4707285b2bb57663b366dc92fcf3c106 +size 1737044 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index a4e946d..88bf4db 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + ------------------------------------------------------------------- Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 578c1bb..9d7dce8 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.11 +Version: 5.12 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From d560d3bdd7d5e14489f2c20324d0a5d391706b91fa729772dc4e59e952ad6a3c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 20 May 2021 10:24:44 +0000 Subject: [PATCH 105/129] Accepting request 894596 from home:Andreas_Schwab:Factory - Add cross-*-linux-glibc-devel packages OBS-URL: https://build.opensuse.org/request/show/894596 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=165 --- linux-glibc-devel.changes | 5 ++ linux-glibc-devel.spec | 116 ++++++++++++++++++++++++++------------ 2 files changed, 86 insertions(+), 35 deletions(-) diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 88bf4db..6f35634 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + ------------------------------------------------------------------- Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9d7dce8..21f5d51 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -25,7 +25,6 @@ Group: Development/Libraries/C and C++ URL: http://www.kernel.org/ Source: %{name}-%{version}.tar.xz Source1: install_all.sh -BuildRequires: fdupes BuildRequires: xz # rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) #!BuildIgnore: gettext-tools @@ -35,31 +34,42 @@ PreReq: coreutils Provides: kernel-headers Provides: linux-kernel-headers = %{version} Obsoletes: linux-kernel-headers < %{version} -%global kernel_arch %_target_cpu -%ifarch x86_64 %ix86 -%global kernel_arch x86 -%endif -%ifarch ppc ppc64 ppc64le -%global kernel_arch powerpc -%endif -%ifarch %arm -%global kernel_arch arm -%endif -%ifarch aarch64 -%global kernel_arch arm64 -%endif -%ifarch riscv64 -%global kernel_arch riscv -%endif -%ifarch s390x -%global kernel_arch s390 -%endif -%ifarch hppa -%global kernel_arch parisc -%endif -%ifarch sparc64 -%global kernel_arch sparc -%endif + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} %description This package provides Linux kernel headers, the kernel API description @@ -68,12 +78,28 @@ interface; compiling external kernel modules requires kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, packages, instead. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + %prep %setup -q -n linux-glibc-devel-%{version} %build -cd %{kernel_arch} -cat > version.h <<\BOGUS +for karch in *; do + cd $karch + cat > version.h <<\BOGUS #ifdef __KERNEL__ #error "=======================================================" #error "You should not include %{_includedir}/{linux,asm}/ header" @@ -109,18 +135,31 @@ cat > version.h <<\BOGUS #error "=======================================================" #else BOGUS -# Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel -cat usr/include/linux/version.h >> version.h -cat >> version.h <<\BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS #endif BOGUS -cat version.h + cd .. +done %install -cd %{kernel_arch} +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} cp -a usr %{buildroot}/ cp -a version.h %{buildroot}%{_includedir}/linux/ -%fdupes %{buildroot}%{_includedir} +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} %pre if test -L %{_includedir}/asm; then @@ -128,7 +167,14 @@ if test -L %{_includedir}/asm; then fi %files -%defattr(-,root,root) %{_includedir}/* +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + %changelog -- 2.49.0 From 39cdb132198e48046facdadadc8f475f0d9e1f0cdca656c02c1ac6c205bcd5ef Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 28 Jun 2021 12:36:14 +0000 Subject: [PATCH 106/129] Accepting request 902814 from home:Andreas_Schwab:Factory - Update to kernel headers 5.13 OBS-URL: https://build.opensuse.org/request/show/902814 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=166 --- linux-glibc-devel-5.12.tar.xz | 3 --- linux-glibc-devel-5.13.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.12.tar.xz create mode 100644 linux-glibc-devel-5.13.tar.xz diff --git a/linux-glibc-devel-5.12.tar.xz b/linux-glibc-devel-5.12.tar.xz deleted file mode 100644 index 7afca37..0000000 --- a/linux-glibc-devel-5.12.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c0154ba57d0cdec6e3004f57e6ed81ec4707285b2bb57663b366dc92fcf3c106 -size 1737044 diff --git a/linux-glibc-devel-5.13.tar.xz b/linux-glibc-devel-5.13.tar.xz new file mode 100644 index 0000000..9489653 --- /dev/null +++ b/linux-glibc-devel-5.13.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30a244c3c62d2fb17bba78f494fa67cfe94ddec3d71101da3460c720ec3bc8ac +size 1749116 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 6f35634..0c7b74b 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + ------------------------------------------------------------------- Thu May 20 09:46:11 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 21f5d51..06b1f48 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.12 +Version: 5.13 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 90a26b08a1d93eac94b32248aed44a44dbde43457a39c0ed3a58a81795bfc844 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 1 Sep 2021 21:06:26 +0000 Subject: [PATCH 107/129] Accepting request 915622 from home:Andreas_Schwab:Factory - Update to kernel headers 5.14 OBS-URL: https://build.opensuse.org/request/show/915622 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=167 --- linux-glibc-devel-5.13.tar.xz | 3 --- linux-glibc-devel-5.14.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.13.tar.xz create mode 100644 linux-glibc-devel-5.14.tar.xz diff --git a/linux-glibc-devel-5.13.tar.xz b/linux-glibc-devel-5.13.tar.xz deleted file mode 100644 index 9489653..0000000 --- a/linux-glibc-devel-5.13.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:30a244c3c62d2fb17bba78f494fa67cfe94ddec3d71101da3460c720ec3bc8ac -size 1749116 diff --git a/linux-glibc-devel-5.14.tar.xz b/linux-glibc-devel-5.14.tar.xz new file mode 100644 index 0000000..ac268a4 --- /dev/null +++ b/linux-glibc-devel-5.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2d15f38d79a7f72898bdb1562d873ecdf9b99ff017969379c8aa76e6ad91a7c +size 1757476 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 0c7b74b..9d79c44 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + ------------------------------------------------------------------- Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 06b1f48..5ec3bc1 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.13 +Version: 5.14 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 6bbab95d0848d4d4e87710241bee4f5629d1a3ccd312f343c2f5eb4d64576ed7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 2 Nov 2021 13:52:49 +0000 Subject: [PATCH 108/129] Accepting request 928799 from home:Andreas_Schwab:Factory - Update to kernel headers 5.15 OBS-URL: https://build.opensuse.org/request/show/928799 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=168 --- linux-glibc-devel-5.14.tar.xz | 3 --- linux-glibc-devel-5.15.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.14.tar.xz create mode 100644 linux-glibc-devel-5.15.tar.xz diff --git a/linux-glibc-devel-5.14.tar.xz b/linux-glibc-devel-5.14.tar.xz deleted file mode 100644 index ac268a4..0000000 --- a/linux-glibc-devel-5.14.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a2d15f38d79a7f72898bdb1562d873ecdf9b99ff017969379c8aa76e6ad91a7c -size 1757476 diff --git a/linux-glibc-devel-5.15.tar.xz b/linux-glibc-devel-5.15.tar.xz new file mode 100644 index 0000000..f3d23ea --- /dev/null +++ b/linux-glibc-devel-5.15.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:578e3e9d92268a632f2571c85c3a7803efa1682a7b3f791e44c599f85d6e7e38 +size 1765152 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 9d79c44..b7135f3 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + ------------------------------------------------------------------- Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 5ec3bc1..8bd8dbc 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.14 +Version: 5.15 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 86676cf0172cbedf0539dec85870916d14adbe2d1aacd8a91d577515cff04db7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 10 Jan 2022 17:32:08 +0000 Subject: [PATCH 109/129] Accepting request 945382 from home:Andreas_Schwab:Factory - Update to kernel headers 5.16 OBS-URL: https://build.opensuse.org/request/show/945382 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=169 --- linux-glibc-devel-5.15.tar.xz | 3 --- linux-glibc-devel-5.16.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-5.15.tar.xz create mode 100644 linux-glibc-devel-5.16.tar.xz diff --git a/linux-glibc-devel-5.15.tar.xz b/linux-glibc-devel-5.15.tar.xz deleted file mode 100644 index f3d23ea..0000000 --- a/linux-glibc-devel-5.15.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:578e3e9d92268a632f2571c85c3a7803efa1682a7b3f791e44c599f85d6e7e38 -size 1765152 diff --git a/linux-glibc-devel-5.16.tar.xz b/linux-glibc-devel-5.16.tar.xz new file mode 100644 index 0000000..0e4048d --- /dev/null +++ b/linux-glibc-devel-5.16.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2af8ac2a39b0fd18adf914fd104e73c4bf3585613a0597c3fd120d3e74aeb38 +size 1779832 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index b7135f3..4132704 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + ------------------------------------------------------------------- Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 8bd8dbc..69db388 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.15 +Version: 5.16 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 45ede8575aa2b8a765e1ef68db884b3301ac0839a8c6062ad30cd6b845048288 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 22 Mar 2022 17:20:01 +0000 Subject: [PATCH 110/129] Accepting request 964041 from home:Andreas_Schwab:Factory - Update to kernel headers 5.17 OBS-URL: https://build.opensuse.org/request/show/964041 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=170 --- linux-glibc-devel-5.16.tar.xz | 3 --- linux-glibc-devel-5.17.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.16.tar.xz create mode 100644 linux-glibc-devel-5.17.tar.xz diff --git a/linux-glibc-devel-5.16.tar.xz b/linux-glibc-devel-5.16.tar.xz deleted file mode 100644 index 0e4048d..0000000 --- a/linux-glibc-devel-5.16.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:e2af8ac2a39b0fd18adf914fd104e73c4bf3585613a0597c3fd120d3e74aeb38 -size 1779832 diff --git a/linux-glibc-devel-5.17.tar.xz b/linux-glibc-devel-5.17.tar.xz new file mode 100644 index 0000000..f6628fb --- /dev/null +++ b/linux-glibc-devel-5.17.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86f1b03cfeb937c9b5c4f6f4360d648f2931807e0fb67d5d412c46c6715f0b17 +size 1802024 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 4132704..5b5cf8e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + ------------------------------------------------------------------- Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 69db388..fa590a5 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.16 +Version: 5.17 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From fab87c9e62a52e94f8b60c590433b39929551bad6fe6f041299da0a0c51a2037 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 24 May 2022 14:35:36 +0000 Subject: [PATCH 111/129] Accepting request 979005 from home:Andreas_Schwab:Factory - Update to kernel headers 5.18 OBS-URL: https://build.opensuse.org/request/show/979005 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=172 --- install_all.sh | 2 +- linux-glibc-devel-5.17.tar.xz | 3 --- linux-glibc-devel-5.18.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 5 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-5.17.tar.xz create mode 100644 linux-glibc-devel-5.18.tar.xz diff --git a/install_all.sh b/install_all.sh index 530aec5..b27fe1b 100644 --- a/install_all.sh +++ b/install_all.sh @@ -25,7 +25,7 @@ if ! mkdir "$header_dir"; then exit 1 fi git clone --single-branch -b "$2" "$1" "$kernel_dir" -remove="arc c6x csky h8300 hexagon microblaze nds32 nios2 openrisc sh unicore32 xtensa um" +remove="arc csky h8300 hexagon microblaze nds32 nios2 openrisc sh xtensa um" archs=$(cd "$kernel_dir/arch" && for arch in *; do test -d $arch || continue diff --git a/linux-glibc-devel-5.17.tar.xz b/linux-glibc-devel-5.17.tar.xz deleted file mode 100644 index f6628fb..0000000 --- a/linux-glibc-devel-5.17.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:86f1b03cfeb937c9b5c4f6f4360d648f2931807e0fb67d5d412c46c6715f0b17 -size 1802024 diff --git a/linux-glibc-devel-5.18.tar.xz b/linux-glibc-devel-5.18.tar.xz new file mode 100644 index 0000000..2575ae2 --- /dev/null +++ b/linux-glibc-devel-5.18.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2623ba16149e6cc42ac8d9a7510b8496660012ae7b52a5b007e363478fa94de4 +size 1813116 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 5b5cf8e..dedbce2 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + ------------------------------------------------------------------- Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index fa590a5..83dd3ce 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.17 +Version: 5.18 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 7b0c3235a2e2afb21b2b79dcddfbbbeb044e6ef492ff86848acab3e9b67e3737 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 2 Aug 2022 08:57:59 +0000 Subject: [PATCH 112/129] Accepting request 992203 from home:Andreas_Schwab:Factory - Update to kernel headers 5.19 OBS-URL: https://build.opensuse.org/request/show/992203 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=173 --- linux-glibc-devel-5.18.tar.xz | 3 --- linux-glibc-devel-5.19.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-5.18.tar.xz create mode 100644 linux-glibc-devel-5.19.tar.xz diff --git a/linux-glibc-devel-5.18.tar.xz b/linux-glibc-devel-5.18.tar.xz deleted file mode 100644 index 2575ae2..0000000 --- a/linux-glibc-devel-5.18.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2623ba16149e6cc42ac8d9a7510b8496660012ae7b52a5b007e363478fa94de4 -size 1813116 diff --git a/linux-glibc-devel-5.19.tar.xz b/linux-glibc-devel-5.19.tar.xz new file mode 100644 index 0000000..dc28ba3 --- /dev/null +++ b/linux-glibc-devel-5.19.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6b1be493cf8631d06a5a36e84cb1cd120ef8dcd3507936c12a4798d371ad7f5 +size 1871232 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index dedbce2..25f5d2e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + ------------------------------------------------------------------- Tue May 24 14:14:20 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 83dd3ce..088d7e6 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.18 +Version: 5.19 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 306d4ffa6dff5b02a13b9e37b286d09bd2d493dfc6140b499f8beae566301cac Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 3 Oct 2022 18:05:20 +0000 Subject: [PATCH 113/129] Accepting request 1007739 from home:Andreas_Schwab:Factory - Update to kernel headers 6.0 OBS-URL: https://build.opensuse.org/request/show/1007739 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=174 --- install_all.sh | 6 +++++- linux-glibc-devel-5.19.tar.xz | 3 --- linux-glibc-devel-6.0.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 5 files changed, 14 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-5.19.tar.xz create mode 100644 linux-glibc-devel-6.0.tar.xz diff --git a/install_all.sh b/install_all.sh index b27fe1b..7eb6e19 100644 --- a/install_all.sh +++ b/install_all.sh @@ -25,6 +25,8 @@ if ! mkdir "$header_dir"; then exit 1 fi git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 remove="arc csky h8300 hexagon microblaze nds32 nios2 openrisc sh xtensa um" archs=$(cd "$kernel_dir/arch" && for arch in *; do @@ -66,5 +68,7 @@ for arch in $archs; do done popd du -sh "$header_dir" -tar -cJf "$header_dir.tar.xz" --owner=root --group=root "${header_dir##*/}" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-5.19.tar.xz b/linux-glibc-devel-5.19.tar.xz deleted file mode 100644 index dc28ba3..0000000 --- a/linux-glibc-devel-5.19.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:a6b1be493cf8631d06a5a36e84cb1cd120ef8dcd3507936c12a4798d371ad7f5 -size 1871232 diff --git a/linux-glibc-devel-6.0.tar.xz b/linux-glibc-devel-6.0.tar.xz new file mode 100644 index 0000000..1be9322 --- /dev/null +++ b/linux-glibc-devel-6.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9dc3cb3b21ffa236ebb0632c1ae1944108d2f81ba226c64d0df9689e336a5446 +size 1854540 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 25f5d2e..12b5354 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + ------------------------------------------------------------------- Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 088d7e6..b73225d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 5.19 +Version: 6.0 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 41857888b38047ef9261e148076328f63732100e2c03137b4f9e819361407e70 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 12 Dec 2022 18:19:53 +0000 Subject: [PATCH 114/129] Accepting request 1042444 from home:Andreas_Schwab:Factory - Update to kernel headers 6.1 OBS-URL: https://build.opensuse.org/request/show/1042444 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=176 --- linux-glibc-devel-6.0.tar.xz | 3 --- linux-glibc-devel-6.1.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.0.tar.xz create mode 100644 linux-glibc-devel-6.1.tar.xz diff --git a/linux-glibc-devel-6.0.tar.xz b/linux-glibc-devel-6.0.tar.xz deleted file mode 100644 index 1be9322..0000000 --- a/linux-glibc-devel-6.0.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9dc3cb3b21ffa236ebb0632c1ae1944108d2f81ba226c64d0df9689e336a5446 -size 1854540 diff --git a/linux-glibc-devel-6.1.tar.xz b/linux-glibc-devel-6.1.tar.xz new file mode 100644 index 0000000..83b2f94 --- /dev/null +++ b/linux-glibc-devel-6.1.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629d359cf289a10137915409f00aef87ec43b835cee04e5103ddb92844114132 +size 1863004 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 12b5354..c98b0be 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + ------------------------------------------------------------------- Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index b73225d..d5295ad 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.0 +Version: 6.1 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 8972901c5595a8e00ae26eff1fa3bf9d12c7e271c6a10e9cbe4abc1457ba7d9b Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 20 Feb 2023 17:15:49 +0000 Subject: [PATCH 115/129] Accepting request 1066862 from home:Andreas_Schwab:Factory - Update to kernel headers 6.2 OBS-URL: https://build.opensuse.org/request/show/1066862 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=178 --- linux-glibc-devel-6.1.tar.xz | 3 --- linux-glibc-devel-6.2.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 4 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 linux-glibc-devel-6.1.tar.xz create mode 100644 linux-glibc-devel-6.2.tar.xz diff --git a/linux-glibc-devel-6.1.tar.xz b/linux-glibc-devel-6.1.tar.xz deleted file mode 100644 index 83b2f94..0000000 --- a/linux-glibc-devel-6.1.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:629d359cf289a10137915409f00aef87ec43b835cee04e5103ddb92844114132 -size 1863004 diff --git a/linux-glibc-devel-6.2.tar.xz b/linux-glibc-devel-6.2.tar.xz new file mode 100644 index 0000000..14e7850 --- /dev/null +++ b/linux-glibc-devel-6.2.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:483d9e42dc9cabf96a1b47e765a7dd20f7d31f2b414884074c8b03f7872c212f +size 1877424 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index c98b0be..cfdc07e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + ------------------------------------------------------------------- Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index d5295ad..8737e77 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.1 +Version: 6.2 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 88ff1391d05792b5f3422d1702a9adb924c2a6e0a700feb6bebbf5a22471f70a Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 27 Apr 2023 21:23:06 +0000 Subject: [PATCH 116/129] Accepting request 1083336 from home:Andreas_Schwab:Factory - Update to kernel headers 6.3 OBS-URL: https://build.opensuse.org/request/show/1083336 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=180 --- linux-glibc-devel-6.2.tar.xz | 3 --- linux-glibc-devel-6.3.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.2.tar.xz create mode 100644 linux-glibc-devel-6.3.tar.xz diff --git a/linux-glibc-devel-6.2.tar.xz b/linux-glibc-devel-6.2.tar.xz deleted file mode 100644 index 14e7850..0000000 --- a/linux-glibc-devel-6.2.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:483d9e42dc9cabf96a1b47e765a7dd20f7d31f2b414884074c8b03f7872c212f -size 1877424 diff --git a/linux-glibc-devel-6.3.tar.xz b/linux-glibc-devel-6.3.tar.xz new file mode 100644 index 0000000..e6934e5 --- /dev/null +++ b/linux-glibc-devel-6.3.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2464648e8f0dc1d47b756b3bfb7c6b2e48ea4f9b9c3bac447983a62f6dc08a8 +size 1864956 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index cfdc07e..31bc20e 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + ------------------------------------------------------------------- Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 8737e77..07409fd 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.2 +Version: 6.3 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 9edd00dab6bf09f5faf21cccdd2c775b7245391791fb991051e1927ed8ba865c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 26 Jun 2023 08:18:32 +0000 Subject: [PATCH 117/129] Accepting request 1095350 from home:Andreas_Schwab:Factory - Update to kernel headers 6.4 OBS-URL: https://build.opensuse.org/request/show/1095350 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=182 --- linux-glibc-devel-6.3.tar.xz | 3 --- linux-glibc-devel-6.4.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.3.tar.xz create mode 100644 linux-glibc-devel-6.4.tar.xz diff --git a/linux-glibc-devel-6.3.tar.xz b/linux-glibc-devel-6.3.tar.xz deleted file mode 100644 index e6934e5..0000000 --- a/linux-glibc-devel-6.3.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2464648e8f0dc1d47b756b3bfb7c6b2e48ea4f9b9c3bac447983a62f6dc08a8 -size 1864956 diff --git a/linux-glibc-devel-6.4.tar.xz b/linux-glibc-devel-6.4.tar.xz new file mode 100644 index 0000000..0295798 --- /dev/null +++ b/linux-glibc-devel-6.4.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94818dc7bed52db2a632c0c75485dca70ae8ec6cf2728b85317e7b56b32fdf02 +size 1875400 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 31bc20e..516cd73 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + ------------------------------------------------------------------- Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 07409fd..c30ed66 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.3 +Version: 6.4 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 71c3014f0f596b36829c1fc091bd89763938fe6450fcf5021d92420b8e4059b0 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Wed, 30 Aug 2023 13:16:59 +0000 Subject: [PATCH 118/129] Accepting request 1108117 from home:Andreas_Schwab:Factory - Update to kernel headers 6.5 OBS-URL: https://build.opensuse.org/request/show/1108117 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=184 --- linux-glibc-devel-6.4.tar.xz | 3 --- linux-glibc-devel-6.5.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.4.tar.xz create mode 100644 linux-glibc-devel-6.5.tar.xz diff --git a/linux-glibc-devel-6.4.tar.xz b/linux-glibc-devel-6.4.tar.xz deleted file mode 100644 index 0295798..0000000 --- a/linux-glibc-devel-6.4.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:94818dc7bed52db2a632c0c75485dca70ae8ec6cf2728b85317e7b56b32fdf02 -size 1875400 diff --git a/linux-glibc-devel-6.5.tar.xz b/linux-glibc-devel-6.5.tar.xz new file mode 100644 index 0000000..330e2e4 --- /dev/null +++ b/linux-glibc-devel-6.5.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f478ad7f00da6876cdfbb8aea91e413c7dcd0798117f48487774d11e31140969 +size 1896688 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 516cd73..447da3b 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + ------------------------------------------------------------------- Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index c30ed66..743328a 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.4 +Version: 6.5 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From fb11081161179e69b2f53733254555fd0b4da1ccce92794431dd303444c73883 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 30 Oct 2023 10:12:02 +0000 Subject: [PATCH 119/129] Accepting request 1121131 from home:Andreas_Schwab:Factory - Update to kernel headers 6.6 OBS-URL: https://build.opensuse.org/request/show/1121131 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=186 --- linux-glibc-devel-6.5.tar.xz | 3 --- linux-glibc-devel-6.6.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.5.tar.xz create mode 100644 linux-glibc-devel-6.6.tar.xz diff --git a/linux-glibc-devel-6.5.tar.xz b/linux-glibc-devel-6.5.tar.xz deleted file mode 100644 index 330e2e4..0000000 --- a/linux-glibc-devel-6.5.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f478ad7f00da6876cdfbb8aea91e413c7dcd0798117f48487774d11e31140969 -size 1896688 diff --git a/linux-glibc-devel-6.6.tar.xz b/linux-glibc-devel-6.6.tar.xz new file mode 100644 index 0000000..4b60605 --- /dev/null +++ b/linux-glibc-devel-6.6.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd7fa3d0bd1fcf01abe979183a7533cf7195f255b27a688a456f0ff167825cb3 +size 1902724 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 447da3b..84d443f 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + ------------------------------------------------------------------- Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 743328a..b29e340 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.5 +Version: 6.6 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 02b5344f3d6aa5dc035bc537b9528979cf36e8be346baa25dfd5897e0b050826 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Thu, 11 Jan 2024 19:23:55 +0000 Subject: [PATCH 120/129] Accepting request 1138172 from home:Andreas_Schwab:Factory - Update to kernel headers 6.7 OBS-URL: https://build.opensuse.org/request/show/1138172 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=188 --- install_all.sh | 2 +- linux-glibc-devel-6.6.tar.xz | 3 --- linux-glibc-devel-6.7.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 4 ++-- 5 files changed, 11 insertions(+), 6 deletions(-) delete mode 100644 linux-glibc-devel-6.6.tar.xz create mode 100644 linux-glibc-devel-6.7.tar.xz diff --git a/install_all.sh b/install_all.sh index 7eb6e19..b6eff56 100644 --- a/install_all.sh +++ b/install_all.sh @@ -27,7 +27,7 @@ fi git clone --single-branch -b "$2" "$1" "$kernel_dir" date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') date -d "@$date" || exit 1 -remove="arc csky h8300 hexagon microblaze nds32 nios2 openrisc sh xtensa um" +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" archs=$(cd "$kernel_dir/arch" && for arch in *; do test -d $arch || continue diff --git a/linux-glibc-devel-6.6.tar.xz b/linux-glibc-devel-6.6.tar.xz deleted file mode 100644 index 4b60605..0000000 --- a/linux-glibc-devel-6.6.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dd7fa3d0bd1fcf01abe979183a7533cf7195f255b27a688a456f0ff167825cb3 -size 1902724 diff --git a/linux-glibc-devel-6.7.tar.xz b/linux-glibc-devel-6.7.tar.xz new file mode 100644 index 0000000..a765cd6 --- /dev/null +++ b/linux-glibc-devel-6.7.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6f8fb83b039d3a995684ec5ff07b05bf018ecb0befeaece5bd51b1914831ae +size 1859616 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 84d443f..f3aab83 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + ------------------------------------------------------------------- Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index b29e340..4f717f9 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -1,7 +1,7 @@ # # spec file for package linux-glibc-devel # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.6 +Version: 6.7 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 01ca35b8d16c07a6d7e9b09f86ba7cda9015ec12e58baeb5d1312fe450842cff Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 11 Mar 2024 20:03:00 +0000 Subject: [PATCH 121/129] Accepting request 1157025 from home:Andreas_Schwab:Factory - Update to kernel headers 6.8 OBS-URL: https://build.opensuse.org/request/show/1157025 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=190 --- linux-glibc-devel-6.7.tar.xz | 3 --- linux-glibc-devel-6.8.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.7.tar.xz create mode 100644 linux-glibc-devel-6.8.tar.xz diff --git a/linux-glibc-devel-6.7.tar.xz b/linux-glibc-devel-6.7.tar.xz deleted file mode 100644 index a765cd6..0000000 --- a/linux-glibc-devel-6.7.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9d6f8fb83b039d3a995684ec5ff07b05bf018ecb0befeaece5bd51b1914831ae -size 1859616 diff --git a/linux-glibc-devel-6.8.tar.xz b/linux-glibc-devel-6.8.tar.xz new file mode 100644 index 0000000..68eefdf --- /dev/null +++ b/linux-glibc-devel-6.8.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9480077f2ae43a079d31f82b3dbe8425923de4a8d0981fe15fbaff08c3635c8 +size 1872924 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index f3aab83..08001f4 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + ------------------------------------------------------------------- Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 4f717f9..9cc92c7 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.7 +Version: 6.8 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From fb704c4b8dfc121ff47915188cde65bcdeb4e7d3a71f24351a78a268fec779b7 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 13 May 2024 08:34:04 +0000 Subject: [PATCH 122/129] Accepting request 1173601 from home:Andreas_Schwab:Factory - Update to kernel headers 6.9 OBS-URL: https://build.opensuse.org/request/show/1173601 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=192 --- linux-glibc-devel-6.8.tar.xz | 3 --- linux-glibc-devel-6.9.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.8.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz diff --git a/linux-glibc-devel-6.8.tar.xz b/linux-glibc-devel-6.8.tar.xz deleted file mode 100644 index 68eefdf..0000000 --- a/linux-glibc-devel-6.8.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c9480077f2ae43a079d31f82b3dbe8425923de4a8d0981fe15fbaff08c3635c8 -size 1872924 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index 08001f4..420ac1f 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + ------------------------------------------------------------------- Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 9cc92c7..ec9637d 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.8 +Version: 6.9 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 6c3e07a40cfde4a67c1344069d57a1ffafa0ea965badfd86a902203447777520 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Fri, 26 Jul 2024 10:41:52 +0000 Subject: [PATCH 123/129] - Update to kernel headers 6.10 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=194 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 4979 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 180 ++ 7 files changed, 5263 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..d36b6c0 --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,4979 @@ +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..4f21b7d --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,180 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.10 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n linux-glibc-devel-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm +fi + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0 From 02bcc6b7f0bfba12c5009ab22e36279161fe7f157cbc1c0c49488d1178de403d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 18 Nov 2024 16:08:08 +0000 Subject: [PATCH 124/129] - Update to kernel headers 6.12 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=198 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.11.tar.xz | 3 + linux-glibc-devel-6.12.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 4989 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 180 ++ 9 files changed, 5279 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.11.tar.xz create mode 100644 linux-glibc-devel-6.12.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.11.tar.xz b/linux-glibc-devel-6.11.tar.xz new file mode 100644 index 0000000..b27db95 --- /dev/null +++ b/linux-glibc-devel-6.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0802cbaa8f277e86426f4b492bc70c24a7116058634f5e10d03c69ba75d4d8a +size 1892520 diff --git a/linux-glibc-devel-6.12.tar.xz b/linux-glibc-devel-6.12.tar.xz new file mode 100644 index 0000000..09d0c1b --- /dev/null +++ b/linux-glibc-devel-6.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb44ae42c80b22b6327e451b1c8853356ab26692a0bfe2d932f78272f4a2d71 +size 1907512 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..7d5fa3b --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,4989 @@ +------------------------------------------------------------------- +Mon Nov 18 15:57:13 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.12 + +------------------------------------------------------------------- +Sun Sep 15 18:03:24 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.11 + +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..9253db7 --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,180 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.12 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n linux-glibc-devel-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm +fi + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0 From 06e1ea77ff7e90d4748a160f7c6b20d075b9177f5d69a893766707a4d2b9ac4c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 2 Dec 2024 13:47:52 +0000 Subject: [PATCH 125/129] - Add loongarch64 as new target OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=200 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.11.tar.xz | 3 + linux-glibc-devel-6.12.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 4994 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 181 ++ 9 files changed, 5285 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.11.tar.xz create mode 100644 linux-glibc-devel-6.12.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.11.tar.xz b/linux-glibc-devel-6.11.tar.xz new file mode 100644 index 0000000..b27db95 --- /dev/null +++ b/linux-glibc-devel-6.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0802cbaa8f277e86426f4b492bc70c24a7116058634f5e10d03c69ba75d4d8a +size 1892520 diff --git a/linux-glibc-devel-6.12.tar.xz b/linux-glibc-devel-6.12.tar.xz new file mode 100644 index 0000000..09d0c1b --- /dev/null +++ b/linux-glibc-devel-6.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb44ae42c80b22b6327e451b1c8853356ab26692a0bfe2d932f78272f4a2d71 +size 1907512 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..e1975af --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,4994 @@ +------------------------------------------------------------------- +Mon Nov 18 18:20:00 UTC 2024 - John Paul Adrian Glaubitz + +- Add loongarch64 as new target + +------------------------------------------------------------------- +Mon Nov 18 15:57:13 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.12 + +------------------------------------------------------------------- +Sun Sep 15 18:03:24 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.11 + +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..05d6fdf --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,181 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2024 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.12 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "loongarch64", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["loongarch64"] = "loongarch", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n linux-glibc-devel-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm +fi + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0 From 1d0040081249859ef938aa9d7d49b2173f6d1d2ce9be9d87c39cf2f603cd4337 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 21 Jan 2025 08:54:20 +0000 Subject: [PATCH 126/129] Accepting request 1239202 from home:Andreas_Schwab:Factory - Update to kernel headers 6.13 OBS-URL: https://build.opensuse.org/request/show/1239202 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=202 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.11.tar.xz | 3 + linux-glibc-devel-6.12.tar.xz | 3 + linux-glibc-devel-6.13.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 4999 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 181 ++ 10 files changed, 5293 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.11.tar.xz create mode 100644 linux-glibc-devel-6.12.tar.xz create mode 100644 linux-glibc-devel-6.13.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.11.tar.xz b/linux-glibc-devel-6.11.tar.xz new file mode 100644 index 0000000..b27db95 --- /dev/null +++ b/linux-glibc-devel-6.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0802cbaa8f277e86426f4b492bc70c24a7116058634f5e10d03c69ba75d4d8a +size 1892520 diff --git a/linux-glibc-devel-6.12.tar.xz b/linux-glibc-devel-6.12.tar.xz new file mode 100644 index 0000000..09d0c1b --- /dev/null +++ b/linux-glibc-devel-6.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb44ae42c80b22b6327e451b1c8853356ab26692a0bfe2d932f78272f4a2d71 +size 1907512 diff --git a/linux-glibc-devel-6.13.tar.xz b/linux-glibc-devel-6.13.tar.xz new file mode 100644 index 0000000..2a52b85 --- /dev/null +++ b/linux-glibc-devel-6.13.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f23e792ede2fec4fc6d6cb4b82c3d66f8d455f70f598bfc24929559e92f30d +size 1911824 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..f0318e8 --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,4999 @@ +------------------------------------------------------------------- +Tue Jan 21 08:31:24 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.13 + +------------------------------------------------------------------- +Mon Nov 18 18:20:00 UTC 2024 - John Paul Adrian Glaubitz + +- Add loongarch64 as new target + +------------------------------------------------------------------- +Mon Nov 18 15:57:13 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.12 + +------------------------------------------------------------------- +Sun Sep 15 18:03:24 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.11 + +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..5e14090 --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,181 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2025 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.13 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "loongarch64", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["loongarch64"] = "loongarch", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n linux-glibc-devel-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm +fi + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0 From 5d96d2170390025d88d36a26a966e4eca1ec9cb72b0432d9f65888f0c7bb0fce Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Tue, 25 Mar 2025 16:00:00 +0000 Subject: [PATCH 127/129] - Update to kernel headers 6.14 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=204 --- linux-glibc-devel-6.13.tar.xz | 3 --- linux-glibc-devel-6.14.tar.xz | 3 +++ linux-glibc-devel.changes | 5 +++++ linux-glibc-devel.spec | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) delete mode 100644 linux-glibc-devel-6.13.tar.xz create mode 100644 linux-glibc-devel-6.14.tar.xz diff --git a/linux-glibc-devel-6.13.tar.xz b/linux-glibc-devel-6.13.tar.xz deleted file mode 100644 index 2a52b85..0000000 --- a/linux-glibc-devel-6.13.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c2f23e792ede2fec4fc6d6cb4b82c3d66f8d455f70f598bfc24929559e92f30d -size 1911824 diff --git a/linux-glibc-devel-6.14.tar.xz b/linux-glibc-devel-6.14.tar.xz new file mode 100644 index 0000000..0607788 --- /dev/null +++ b/linux-glibc-devel-6.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79d857b851d97a2db376f4852953c5f0cd4a944888a5801ee09677a100e49a3 +size 1921004 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes index f0318e8..619efc3 100644 --- a/linux-glibc-devel.changes +++ b/linux-glibc-devel.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Mar 25 11:36:47 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.14 + ------------------------------------------------------------------- Tue Jan 21 08:31:24 UTC 2025 - Andreas Schwab diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec index 5e14090..0a0e74a 100644 --- a/linux-glibc-devel.spec +++ b/linux-glibc-devel.spec @@ -17,7 +17,7 @@ Name: linux-glibc-devel -Version: 6.13 +Version: 6.14 Release: 0 Summary: Linux headers for userspace development License: GPL-2.0-only -- 2.49.0 From 7a969666b4a0f036e0dfcd6988da18840665768e529c8c612a9461e882b2a91c Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 26 May 2025 07:45:09 +0000 Subject: [PATCH 128/129] - Update to kernel headers 6.15 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=206 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.11.tar.xz | 3 + linux-glibc-devel-6.12.tar.xz | 3 + linux-glibc-devel-6.14.tar.xz | 3 + linux-glibc-devel-6.15.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 5009 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 181 ++ 11 files changed, 5306 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.11.tar.xz create mode 100644 linux-glibc-devel-6.12.tar.xz create mode 100644 linux-glibc-devel-6.14.tar.xz create mode 100644 linux-glibc-devel-6.15.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.11.tar.xz b/linux-glibc-devel-6.11.tar.xz new file mode 100644 index 0000000..b27db95 --- /dev/null +++ b/linux-glibc-devel-6.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0802cbaa8f277e86426f4b492bc70c24a7116058634f5e10d03c69ba75d4d8a +size 1892520 diff --git a/linux-glibc-devel-6.12.tar.xz b/linux-glibc-devel-6.12.tar.xz new file mode 100644 index 0000000..09d0c1b --- /dev/null +++ b/linux-glibc-devel-6.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb44ae42c80b22b6327e451b1c8853356ab26692a0bfe2d932f78272f4a2d71 +size 1907512 diff --git a/linux-glibc-devel-6.14.tar.xz b/linux-glibc-devel-6.14.tar.xz new file mode 100644 index 0000000..0607788 --- /dev/null +++ b/linux-glibc-devel-6.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79d857b851d97a2db376f4852953c5f0cd4a944888a5801ee09677a100e49a3 +size 1921004 diff --git a/linux-glibc-devel-6.15.tar.xz b/linux-glibc-devel-6.15.tar.xz new file mode 100644 index 0000000..cb1b580 --- /dev/null +++ b/linux-glibc-devel-6.15.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7318343f80a5808c2f591390e7d2c784bb6666769105d1311f48aae0e55f7 +size 1932808 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..25ea1b6 --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,5009 @@ +------------------------------------------------------------------- +Mon May 26 07:37:31 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.15 + +------------------------------------------------------------------- +Tue Mar 25 11:36:47 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.14 + +------------------------------------------------------------------- +Tue Jan 21 08:31:24 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.13 + +------------------------------------------------------------------- +Mon Nov 18 18:20:00 UTC 2024 - John Paul Adrian Glaubitz + +- Add loongarch64 as new target + +------------------------------------------------------------------- +Mon Nov 18 15:57:13 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.12 + +------------------------------------------------------------------- +Sun Sep 15 18:03:24 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.11 + +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..e17f796 --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,181 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2025 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.15 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "loongarch64", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["loongarch64"] = "loongarch", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-linux-glibc-devel +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-linux-glibc-devel +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n linux-glibc-devel-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre +if test -L %{_includedir}/asm; then + rm -f %{_includedir}/asm +fi + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-linux-glibc-devel +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0 From c18b3f476c3bec41d4646ee2dd1f50f95b1fa587d0fdf0286f5fd6babc0bcd3e Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Mon, 28 Jul 2025 17:48:36 +0000 Subject: [PATCH 129/129] - Update to kernel headers 6.16 OBS-URL: https://build.opensuse.org/package/show/Base:System/linux-glibc-devel?expand=0&rev=208 --- .gitattributes | 23 + .gitignore | 1 + install_all.sh | 74 + linux-glibc-devel-6.10.tar.xz | 3 + linux-glibc-devel-6.11.tar.xz | 3 + linux-glibc-devel-6.12.tar.xz | 3 + linux-glibc-devel-6.14.tar.xz | 3 + linux-glibc-devel-6.15.tar.xz | 3 + linux-glibc-devel-6.16.tar.xz | 3 + linux-glibc-devel-6.9.tar.xz | 3 + linux-glibc-devel.changes | 5019 +++++++++++++++++++++++++++++++++ linux-glibc-devel.spec | 180 ++ 12 files changed, 5318 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 install_all.sh create mode 100644 linux-glibc-devel-6.10.tar.xz create mode 100644 linux-glibc-devel-6.11.tar.xz create mode 100644 linux-glibc-devel-6.12.tar.xz create mode 100644 linux-glibc-devel-6.14.tar.xz create mode 100644 linux-glibc-devel-6.15.tar.xz create mode 100644 linux-glibc-devel-6.16.tar.xz create mode 100644 linux-glibc-devel-6.9.tar.xz create mode 100644 linux-glibc-devel.changes create mode 100644 linux-glibc-devel.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,23 @@ +## Default LFS +*.7z filter=lfs diff=lfs merge=lfs -text +*.bsp filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.gem filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.jar filter=lfs diff=lfs merge=lfs -text +*.lz filter=lfs diff=lfs merge=lfs -text +*.lzma filter=lfs diff=lfs merge=lfs -text +*.obscpio filter=lfs diff=lfs merge=lfs -text +*.oxt filter=lfs diff=lfs merge=lfs -text +*.pdf filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.rpm filter=lfs diff=lfs merge=lfs -text +*.tbz filter=lfs diff=lfs merge=lfs -text +*.tbz2 filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.ttf filter=lfs diff=lfs merge=lfs -text +*.txz filter=lfs diff=lfs merge=lfs -text +*.whl filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/install_all.sh b/install_all.sh new file mode 100644 index 0000000..b6eff56 --- /dev/null +++ b/install_all.sh @@ -0,0 +1,74 @@ +#!/bin/bash +# bash -x $0 linux.git tag +set -e +kernel=$1 +if test $# -ne 2 || ! test -d "$1" || test "$2" = "${2#v}"; then + echo "Usage: ${0##*/} linux.git tag" + exit 1 +fi +case $PWD in + *:*) + echo "do not call this in a directory with : - make will fail" + exit 1 + ;; +esac + +version=${2#v} +kernel_dir=linux-$version +header_dir="$PWD/linux-glibc-devel-$version" +if test -d "$kernel_dir"; then + echo "$kernel_dir exists, remove it first." + exit 1 +fi +if ! mkdir "$header_dir"; then + echo "$header_dir exists, remove it first." + exit 1 +fi +git clone --single-branch -b "$2" "$1" "$kernel_dir" +date=$(git -C "$kernel_dir" cat-file -p "$2" | awk '/^tagger/ { print $(NF-1) }') +date -d "@$date" || exit 1 +remove="arc csky hexagon microblaze nios2 openrisc sh xtensa um" +archs=$(cd "$kernel_dir/arch" && + for arch in *; do + test -d $arch || continue + case " $remove " in *" $arch "*) continue;; esac + echo $arch + done) +pushd "$kernel_dir" +for arch in $archs; do + mkdir "$header_dir/$arch" + cp Makefile "$header_dir/$arch" + make O="$header_dir/$arch" headers_install ARCH=$arch +done +popd +pushd "$header_dir" +find -type f \( -name ".*.cmd" -o -name Makefile \) -exec rm {} + +for arch in $archs; do + cd $arch + #------------------------------------------------------------------- + #Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + + #- Remove the kernel version of drm headers, they conflict + # with the libdrm ones, and those are slightly newer. + # + rm -rf usr/include/drm/ + # Remove confusing empty uapi directory + test ! -d usr/include/uapi || rmdir usr/include/uapi + for dir in *; do + case "$dir" in + usr) ;; + *) + if test -d "$dir"; then + rm -rf "$dir" + fi + ;; + esac + done + cd .. +done +popd +du -sh "$header_dir" +tar -cJf "$header_dir.tar.xz" --owner=root --group=root --mtime="@$date" \ + --sort=name "${header_dir##*/}" +touch -d "@$date" "$header_dir.tar.xz" +rm -rf "$header_dir" "$kernel_dir" diff --git a/linux-glibc-devel-6.10.tar.xz b/linux-glibc-devel-6.10.tar.xz new file mode 100644 index 0000000..dbcba7d --- /dev/null +++ b/linux-glibc-devel-6.10.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6801025148f74219235fd757ebe5c5a441a1d51cd30c3b5f62b3888b3cdd428e +size 1873408 diff --git a/linux-glibc-devel-6.11.tar.xz b/linux-glibc-devel-6.11.tar.xz new file mode 100644 index 0000000..b27db95 --- /dev/null +++ b/linux-glibc-devel-6.11.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0802cbaa8f277e86426f4b492bc70c24a7116058634f5e10d03c69ba75d4d8a +size 1892520 diff --git a/linux-glibc-devel-6.12.tar.xz b/linux-glibc-devel-6.12.tar.xz new file mode 100644 index 0000000..09d0c1b --- /dev/null +++ b/linux-glibc-devel-6.12.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb44ae42c80b22b6327e451b1c8853356ab26692a0bfe2d932f78272f4a2d71 +size 1907512 diff --git a/linux-glibc-devel-6.14.tar.xz b/linux-glibc-devel-6.14.tar.xz new file mode 100644 index 0000000..0607788 --- /dev/null +++ b/linux-glibc-devel-6.14.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d79d857b851d97a2db376f4852953c5f0cd4a944888a5801ee09677a100e49a3 +size 1921004 diff --git a/linux-glibc-devel-6.15.tar.xz b/linux-glibc-devel-6.15.tar.xz new file mode 100644 index 0000000..cb1b580 --- /dev/null +++ b/linux-glibc-devel-6.15.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48e7318343f80a5808c2f591390e7d2c784bb6666769105d1311f48aae0e55f7 +size 1932808 diff --git a/linux-glibc-devel-6.16.tar.xz b/linux-glibc-devel-6.16.tar.xz new file mode 100644 index 0000000..48eb1ee --- /dev/null +++ b/linux-glibc-devel-6.16.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28a4a76691cd7eda3ced187e560f39a9b4ecc8d54ff59e6297e69655c612aacd +size 1944768 diff --git a/linux-glibc-devel-6.9.tar.xz b/linux-glibc-devel-6.9.tar.xz new file mode 100644 index 0000000..2aa5e8e --- /dev/null +++ b/linux-glibc-devel-6.9.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a44c9ec27922f30bba9874097cbbaa566361c436cd7f2d2e44a6e1d0182441 +size 1868572 diff --git a/linux-glibc-devel.changes b/linux-glibc-devel.changes new file mode 100644 index 0000000..96c7560 --- /dev/null +++ b/linux-glibc-devel.changes @@ -0,0 +1,5019 @@ +------------------------------------------------------------------- +Mon Jul 28 17:36:24 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.16 + +------------------------------------------------------------------- +Wed Jun 4 11:55:43 UTC 2025 - Andreas Schwab + +- Rewrite preinstall scriptlet in lua + +------------------------------------------------------------------- +Mon May 26 07:37:31 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.15 + +------------------------------------------------------------------- +Tue Mar 25 11:36:47 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.14 + +------------------------------------------------------------------- +Tue Jan 21 08:31:24 UTC 2025 - Andreas Schwab + +- Update to kernel headers 6.13 + +------------------------------------------------------------------- +Mon Nov 18 18:20:00 UTC 2024 - John Paul Adrian Glaubitz + +- Add loongarch64 as new target + +------------------------------------------------------------------- +Mon Nov 18 15:57:13 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.12 + +------------------------------------------------------------------- +Sun Sep 15 18:03:24 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.11 + +------------------------------------------------------------------- +Fri Jul 26 10:11:43 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.10 + +------------------------------------------------------------------- +Mon May 13 08:16:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.9 + +------------------------------------------------------------------- +Mon Mar 11 18:52:23 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.8 + +------------------------------------------------------------------- +Thu Jan 11 19:11:15 UTC 2024 - Andreas Schwab + +- Update to kernel headers 6.7 + +------------------------------------------------------------------- +Mon Oct 30 09:42:22 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.6 + +------------------------------------------------------------------- +Wed Aug 30 12:38:32 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.5 + +------------------------------------------------------------------- +Mon Jun 26 08:03:11 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.4 + +------------------------------------------------------------------- +Thu Apr 27 20:46:41 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.3 + +------------------------------------------------------------------- +Mon Feb 20 17:04:40 UTC 2023 - Andreas Schwab + +- Update to kernel headers 6.2 + +------------------------------------------------------------------- +Mon Dec 12 17:56:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.1 + +------------------------------------------------------------------- +Mon Oct 3 16:28:11 UTC 2022 - Andreas Schwab + +- Update to kernel headers 6.0 + +------------------------------------------------------------------- +Tue Aug 2 08:14:14 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.19 + +------------------------------------------------------------------- +Tue May 24 14:14:20 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.18 + +------------------------------------------------------------------- +Tue Mar 22 17:02:02 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.17 + +------------------------------------------------------------------- +Mon Jan 10 17:20:30 UTC 2022 - Andreas Schwab + +- Update to kernel headers 5.16 + +------------------------------------------------------------------- +Tue Nov 2 10:28:17 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.15 + +------------------------------------------------------------------- +Wed Sep 1 20:53:18 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.14 + +------------------------------------------------------------------- +Mon Jun 28 12:19:57 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.13 + +------------------------------------------------------------------- +Thu May 20 09:46:11 UTC 2021 - Andreas Schwab + +- Add cross-*-linux-glibc-devel packages + +------------------------------------------------------------------- +Tue Apr 27 09:22:59 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.12 + +------------------------------------------------------------------- +Wed Feb 17 19:23:12 UTC 2021 - Andreas Schwab + +- Update to kernel headers 5.11 + +------------------------------------------------------------------- +Mon Dec 14 10:42:29 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.10 + +------------------------------------------------------------------- +Mon Oct 12 08:46:47 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.9 + +------------------------------------------------------------------- +Mon Aug 3 10:22:16 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.8 + +------------------------------------------------------------------- +Mon Jun 15 20:26:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.7 + +------------------------------------------------------------------- +Tue Mar 31 08:15:32 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.6 + +------------------------------------------------------------------- +Mon Jan 27 14:42:13 UTC 2020 - Andreas Schwab + +- Update to kernel headers 5.5 + +------------------------------------------------------------------- +Fri Nov 29 17:42:30 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.4 + +------------------------------------------------------------------- +Wed Sep 18 08:25:47 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.3 +- Make it arch dependent due to difference in installed headers + +------------------------------------------------------------------- +Mon Jul 8 10:01:19 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.2 + +------------------------------------------------------------------- +Tue May 7 08:29:09 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.1 + +------------------------------------------------------------------- +Tue Apr 9 15:06:20 UTC 2019 - Andreas Schwab + +- Update to kernel headers 5.0 + +------------------------------------------------------------------- +Mon Jan 7 08:32:43 UTC 2019 - schwab@suse.de + +- Update to kernel headers 4.20 +- netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch: remove + +------------------------------------------------------------------- +Wed Oct 24 14:51:55 UTC 2018 - Jiri Slaby + +- fix netfilter builds with 4.19 + * add netfilter-bridge-define-INT_MIN-INT_MAX-in-userspace.patch + +------------------------------------------------------------------- +Mon Oct 22 09:18:57 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.19 + +------------------------------------------------------------------- +Mon Aug 13 07:41:51 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.18 + +------------------------------------------------------------------- +Mon Jul 16 08:00:26 UTC 2018 - schwab@suse.de + +- Don't do any expansion on the version.h contents + +------------------------------------------------------------------- +Thu Jul 12 20:25:24 UTC 2018 - bwiedemann@suse.com + +- Don't embed build system's kernel version in rpm + to make package build reproducible (boo#1101107) + +------------------------------------------------------------------- +Mon Jun 4 10:18:10 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.17 + +------------------------------------------------------------------- +Sun Apr 1 22:25:52 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.16 + +------------------------------------------------------------------- +Mon Jan 29 10:17:33 UTC 2018 - schwab@suse.de + +- Update to kernel headers 4.15 +- Add support for riscv + +------------------------------------------------------------------- +Tue Nov 14 16:34:15 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.14 + +------------------------------------------------------------------- +Mon Sep 4 15:23:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.13 + +------------------------------------------------------------------- +Mon Jul 17 12:12:09 UTC 2017 - dimstar@opensuse.org + +- BuildIgnore linux-kernel-headers: the symbol will only exist once + the package was built in a bootstrap cycle. +- BuildIgnore gettext-tools: required by rpm-build, but we can + build without it, allowing to shorten a bootstrap cycle. + +------------------------------------------------------------------- +Mon Jul 3 08:04:22 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.12 + +------------------------------------------------------------------- +Tue May 16 12:49:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.11 + +------------------------------------------------------------------- +Fri Mar 10 20:53:44 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.10 + +------------------------------------------------------------------- +Wed Jan 11 13:23:25 UTC 2017 - schwab@suse.de + +- Update to kernel headers 4.9 +- Remove empty /usr/include/uapi directory + +------------------------------------------------------------------- +Thu Oct 6 14:38:51 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.8 + +------------------------------------------------------------------- +Thu Aug 4 14:31:13 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.7 + +------------------------------------------------------------------- +Wed May 18 15:07:32 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.6 + +------------------------------------------------------------------- +Thu Mar 17 15:31:34 UTC 2016 - schwab@suse.de + +- Update to kernel headers 4.5 + +------------------------------------------------------------------- +Fri Jan 15 14:14:05 UTC 2016 - mmarek@suse.cz + +- Update to kernel headers 4.4 + +------------------------------------------------------------------- +Mon Nov 9 11:40:06 UTC 2015 - schwab@suse.de + +- Update to kernel headers 4.3 + +------------------------------------------------------------------- +Tue Oct 13 16:03:38 UTC 2015 - dvaleev@suse.com + +- package back i2c-dev.h the one from i2c-tools is outdated + +------------------------------------------------------------------- +Mon Oct 12 14:56:38 UTC 2015 - dvaleev@suse.com + +- Update to kernel headers 4.2 + +------------------------------------------------------------------- +Fri Jul 3 18:19:17 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.1 + +------------------------------------------------------------------- +Thu Apr 23 21:02:23 UTC 2015 - crrodriguez@opensuse.org + +- Update to kernel headers 4.0 + +------------------------------------------------------------------- +Fri Jan 24 06:39:31 UTC 2015 - jjolly@suse.com + +- Only removing /usr/include/scsi/scsi.h (bnc#834498) + +------------------------------------------------------------------- +Sun Oct 5 22:03:03 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.17 + +------------------------------------------------------------------- +Sun Aug 10 19:44:00 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.16 + +------------------------------------------------------------------- +Mon Jun 23 02:43:56 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.15.1 + +------------------------------------------------------------------- +Mon Mar 31 16:07:48 UTC 2014 - crrodriguez@opensuse.org + +- Update to kernel headers 3.14 + +------------------------------------------------------------------- +Tue Mar 4 16:14:59 UTC 2014 - mmarek@suse.cz + +- Update to kernel headers 3.13. +- Drop the never-upstreamed SO_BSDCOMPAT patch. The kernel does + issue a warning when a process uses this socket option. + +------------------------------------------------------------------- +Wed Oct 9 11:36:05 UTC 2013 - schwab@suse.de + +- Don't remove asm-m68k, make link for m68k + +------------------------------------------------------------------- +Fri Aug 23 03:23:51 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.11rc6: not final but + matches current factory kernel. + +------------------------------------------------------------------- +Mon Jul 1 21:18:27 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.10 final. + +------------------------------------------------------------------- +Fri May 3 01:49:47 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9 final. + +------------------------------------------------------------------- +Tue Mar 26 00:07:04 UTC 2013 - crrodriguez@opensuse.org + +- Update to kernel headers from 3.9rc4 +- linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch: needed refresh + and update due to the addition of SOREUSEPORT + +------------------------------------------------------------------- +Sun Feb 3 09:49:21 UTC 2013 - schwab@suse.de + +- Add asm_link for aarch64 + +------------------------------------------------------------------- +Fri Dec 21 03:57:05 UTC 2012 - jengelh@inai.de + +- Update to new upstream release 3.7.1, use xz format +- Remove unneeded %clean section +- Also remove sparc's SO_BSDCOMPAT in + linux-glibc-devel.SuSE.SO_BSDCOMPAT.patch + +------------------------------------------------------------------- +Thu Sep 27 08:03:00 UTC 2012 - coolo@suse.com + +- unfuzzy patch to fix build + +------------------------------------------------------------------- +Fri Sep 21 19:37:38 UTC 2012 - crrodriguez@opensuse.org + +- Update to Linux 3.6.x headers. + +------------------------------------------------------------------- +Tue May 22 07:43:50 UTC 2012 - aj@suse.de + +- Update to Linux 3.4 headers. + * Remove merged patch getsetattr.patch. + +------------------------------------------------------------------- +Wed May 16 11:06:03 UTC 2012 - aj@suse.de + +- Fix typo in version.h (bnc#762486) + +------------------------------------------------------------------- +Wed Apr 25 18:35:49 UTC 2012 - aj@suse.de + +- Fix typo: it's __NR_mq_getsetattr + +------------------------------------------------------------------- +Mon Mar 19 12:24:26 UTC 2012 - aj@suse.de + +- Update to Linux 3.3 headers. + +------------------------------------------------------------------- +Fri Mar 16 08:28:51 UTC 2012 - aj@suse.de + +- Update version.h text (bnc#751668). + +------------------------------------------------------------------- +Thu Jan 5 15:15:12 CET 2012 - dmueller@suse.de + +- update to Linux 3.2.0 headers + * KVM_CAP_TSC_DEADLINE_TIMER added + +------------------------------------------------------------------- +Mon Dec 26 12:54:18 UTC 2011 - aj@suse.de + +- Update to Linux 3.2-rc7 headers. + +------------------------------------------------------------------- +Wed Dec 21 13:20:59 CET 2011 - dmueller@suse.de + +- update to 3.1 headers: + * fixes missing REQ_META + +------------------------------------------------------------------- +Wed Sep 7 08:07:24 UTC 2011 - aj@suse.de + +- Fix LINUX_VERSION_CODE + +------------------------------------------------------------------- +Tue Sep 6 13:47:10 UTC 2011 - aj@suse.de + +- Update to Linux 3.1 rc5 headers. + +------------------------------------------------------------------- +Mon Jul 25 09:17:32 UTC 2011 - aj@suse.de + +- Update to headers from kernel 3.0. + +------------------------------------------------------------------- +Wed Jun 29 07:51:04 UTC 2011 - aj@suse.de + +- Update kernel headers to 3.0 (from 3.0-rc5). +- Remove linux-glibc-devel.SuSE.TIOCGDEV.patch since it's upstream + now. +- Fix obsoletes. +- Use fdupes. + +------------------------------------------------------------------- +Tue Nov 16 16:28:52 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.36 +- update ioctl patch + +------------------------------------------------------------------- +Sun Nov 14 01:44:29 UTC 2010 - jengelh@medozas.de + +- Augment description that not kernel-source is required for + KMP compilation, but kernel-*-devel. + +------------------------------------------------------------------- +Mon Sep 13 14:16:42 UTC 2010 - coolo@novell.com + +- update kernel headers to 2.6.35 for xtables ALIGN + +------------------------------------------------------------------- +Sun Jul 4 01:45:44 CEST 2010 - dmueller@suse.de + +- update kernel headers to 2.6.34 for proper O_SYNC support + +------------------------------------------------------------------- +Wed Jun 30 15:14:03 UTC 2010 - jengelh@medozas.de + +- add TIOCGDEV define to SPARC definitions + +------------------------------------------------------------------- +Tue May 11 16:18:13 CEST 2010 - pbaudis@suse.cz + +- Fix /usr/include/asm symlink loss during upgrade from + linux-kernel-headers [bnc#591082, bnc#571604] + +------------------------------------------------------------------- +Sun Jan 10 19:09:12 UTC 2010 - coolo@novell.com + +- remove -release suffix from provides + +------------------------------------------------------------------- +Sun Dec 13 20:27:15 CET 2009 - jengelh@medozas.de + +- reword Summary line [bnc#340720] + +------------------------------------------------------------------- +Tue Dec 8 14:05:50 CET 2009 - jengelh@medozas.de + +- update to 2.6.32 final (F_OWNER_GID -> F_OWNER_PGRP and other tweaks) +- package header files for SPARC + +------------------------------------------------------------------- +Tue Nov 24 12:09:16 CET 2009 - rguenther@suse.de + +- fix provides and obsoletes fields for linux-kernel-headers + +------------------------------------------------------------------- +Mon Nov 16 14:43:50 CET 2009 - pbaudis@suse.cz + +- add %ghost entry for /usr/include/asm [bnc#504778] + +------------------------------------------------------------------- +Mon Nov 16 12:19:24 CET 2009 - pbaudis@suse.cz + +- fix provides and obsoletes fields for linux-kernel-headers<=2.6.32-1 + +------------------------------------------------------------------- +Sat Nov 14 11:57:27 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc7 + +------------------------------------------------------------------- +Sat Nov 14 01:35:24 CET 2009 - pbaudis@suse.cz + +- remove debug prints [bnc#532066] + +------------------------------------------------------------------- +Fri Nov 13 23:23:20 CET 2009 - pbaudis@suse.cz + +- rename linux-kernel-headers to linux-glibc-devel [bnc#340720] + +------------------------------------------------------------------- +Fri Oct 30 15:00:35 CET 2009 - dmueller@suse.de + +- update to 2.6.32-rc5, matching kernel-source + +------------------------------------------------------------------- +Mon Sep 14 15:11:25 CEST 2009 - coolo@novell.com + +- update to 2.6.31-final tar ball - almost no changes + +------------------------------------------------------------------- +Mon Aug 3 21:14:05 CEST 2009 - coolo@novell.com + +- avoid conflicting files between glibc-devel and l-k-h + +------------------------------------------------------------------- +Sun Aug 2 20:10:49 CEST 2009 - coolo@novell.com + +- update to 2.6.31-rc4 tar ball + +------------------------------------------------------------------- +Thu Jul 9 23:11:28 CEST 2009 - pbaudis@suse.cz + +- Remove unnecessary verbosity from %post phase [bnc#517179] + +------------------------------------------------------------------- +Wed Jun 17 07:27:28 CEST 2009 - coolo@novell.com + +- update to 2.6.30 + +------------------------------------------------------------------- +Fri May 15 22:27:02 CEST 2009 - pbaudis@suse.cz + +- Remove misleading instructions in /usr/include/linux/version.h + [bnc#498388] + +------------------------------------------------------------------- +Fri May 8 15:38:37 CEST 2009 - coolo@suse.de + +- update to 2.6.29 +- install with SRCARCH=x86 to get kvm support in qemu + (detected by presence of kvm.h) + +------------------------------------------------------------------- +Mon Feb 23 13:36:12 CET 2009 - dmueller@suse.de + +- update to 2.6.29rc6 + +------------------------------------------------------------------- +Wed Feb 18 04:10:37 CET 2009 - dmueller@suse.de + +- update to 2.6.28 + +------------------------------------------------------------------- +Fri Sep 5 10:43:49 CEST 2008 - matz@suse.de + +- Remove the kernel version of drm headers, they conflict + with the libdrm ones, and those are slightly newer. + +------------------------------------------------------------------- +Thu Sep 4 19:41:31 CEST 2008 - matz@suse.de + +- update to 2.6.27-rc5, includes new syscalls [bnc #423122] + +------------------------------------------------------------------- +Fri Apr 25 14:45:56 CEST 2008 - pbaudis@suse.cz + +- update to 2.6.25 + +------------------------------------------------------------------- +Mon Jan 28 08:23:09 CET 2008 - coolo@suse.de + +- fixing changelog + +------------------------------------------------------------------- +Sat Jan 26 08:54:45 CET 2008 - coolo@suse.de + +- fix the x86 path + +------------------------------------------------------------------- +Fri Jan 25 18:58:58 CET 2008 - olh@suse.de + +- update to 2.6.24 + no interface changes + x86 merge + +------------------------------------------------------------------- +Fri Nov 2 16:38:36 CET 2007 - dmueller@suse.de + +- update to 2.6.23 + +------------------------------------------------------------------- +Fri Oct 19 02:18:44 CEST 2007 - ro@suse.de + +- bring back i2c.h, i2c-tools only brings i2c-dev.h + but linux/fb.h needs linux/i2c.h + +------------------------------------------------------------------- +Wed Oct 17 11:56:48 CEST 2007 - jdelvare@suse.de + +- Don't include i2c header files, they don't contain everything + applications need. The proper user-space i2c header files comes + from the i2c-tools package for now. In the long run, they should + of course come from sanitized kernel header files as is the case + for all the other header files, but we're not there yet. + +------------------------------------------------------------------- +Mon Aug 13 20:45:13 CEST 2007 - olh@suse.de + +- add triggerpostun to get asm symlink during update (299670) + +------------------------------------------------------------------- +Fri Aug 10 09:21:42 CEST 2007 - olh@suse.de + +- include linux/types.h in linux/if_fddi.h to get __be16 + +------------------------------------------------------------------- +Thu Aug 9 08:53:17 CEST 2007 - olh@suse.de + +- export linux/netfilter/xt_statistic.h for new iptables + remove __STRICT_ANSI__ check from asm/types to provide __u64 + remove CHILD_MAX again from limits.h + add a few defines from 2.6.23 to various headers + +------------------------------------------------------------------- +Tue Aug 7 16:55:24 CEST 2007 - olh@suse.de + +- really create linux/serial_reg.h + +------------------------------------------------------------------- +Tue Aug 7 14:41:35 CEST 2007 - ro@suse.de + +- added coreutils as prereq + +------------------------------------------------------------------- +Mon Aug 6 18:25:14 CEST 2007 - olh@suse.de + +- reexport /usr/include/linux/serial_reg.h for xosview (from 2.6.23) + +------------------------------------------------------------------- +Mon Aug 6 15:00:39 CEST 2007 - olh@suse.de + +- remove /usr/include/scsi because glibc provides it (297716) + +------------------------------------------------------------------- +Sat Jul 14 16:01:36 CEST 2007 - olh@suse.de + +- use linux-2.6.22 as base +- use make headers_install_all to reduce installed package size +- drop all patches except TIOCGDEV and SO_BSDCOMPAT +- mark as noarch and link asm at install time + +------------------------------------------------------------------- +Tue May 22 00:46:55 CEST 2007 - dmueller@suse.de + +- Update to match kernel 2.6.21 + +------------------------------------------------------------------- +Fri Mar 2 14:51:56 CET 2007 - pbaudis@suse.cz + +- Fix in-tarball paths + +------------------------------------------------------------------- +Fri Mar 2 04:47:59 CET 2007 - pbaudis@suse.cz + +- Update to match kernel 2.6.20 +- All architectures are included now + +------------------------------------------------------------------- +Fri Nov 17 05:12:13 CET 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18.2 + +------------------------------------------------------------------- +Sat Oct 28 12:21:02 CEST 2006 - olh@suse.de + +- prevent clueless userspace from trying to get syscall macros + by defining __KERNEL__ in userland + +------------------------------------------------------------------- +Fri Oct 13 15:57:10 CEST 2006 - schwab@suse.de + +- Fix definition of PAGE_SIZE. + +------------------------------------------------------------------- +Mon Oct 2 02:39:45 CEST 2006 - pbaudis@suse.cz + +- Update to match kernel 2.6.18 + +------------------------------------------------------------------- +Fri Sep 29 03:42:56 CEST 2006 - pbaudis@suse.cz + +- Split linux-kernel-headers from glibc (or glibc-devel, if you want) + +------------------------------------------------------------------- +Tue Sep 26 18:10:38 CEST 2006 - pbaudis@suse.cz + +- Fix mistake when removing some patches + +------------------------------------------------------------------- +Mon Sep 25 21:15:15 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 23 04:36:58 CEST 2006 - pbaudis@suse.cz + +- Fix 64bit-cleanliness gcc warnings + +------------------------------------------------------------------- +Thu Sep 21 23:52:13 CEST 2006 - pbaudis@suse.cz + +- Add /usr/lib{,64}/Xaw3d to /etc/ld.so.conf (by schwab@suse.de, + from original STABLE) [#205169] +- Fix chown() instead of lchown() called in fchownat() emulation + [#201751] +- Fix glob() overflowing stack when producing massive number of + matches [#190458] +- Update to current CVS + +------------------------------------------------------------------- +Wed Sep 20 23:48:20 CEST 2006 - pbaudis@suse.cz + +- Fix cut'n'paste error in a last-minute change + +------------------------------------------------------------------- +Wed Sep 20 22:07:59 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS +- Fix powerpc-cpu tarball extension +- Move crypt-blowfish to a patch so that quilt works on the tree + +------------------------------------------------------------------- +Sat Sep 2 19:01:21 CEST 2006 - schwab@suse.de + +- Use asm-powerpc for ppc and ppc64. +- Fix chroot check in glibc_post_upgrade. + +------------------------------------------------------------------- +Mon Aug 28 01:24:24 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS, should fix false positive heap overflow + trigger from malloc() causing gcc to hang [#201724] + +------------------------------------------------------------------- +Wed Aug 23 23:56:35 CEST 2006 - pbaudis@suse.cz + +- Update the powerpc cpu-tuned environment to v0.02 [#199274] +- Update to current CVS +- Drop pthread_mutexattr_getprioceiling() out of range fix + +------------------------------------------------------------------- +Thu Aug 10 20:10:04 CEST 2006 - pbaudis@suse.cz + +Ported from STABLE: +- Remove libc5 reference from /etc/ld.so.conf, shlibs5 is no longer + supported [#181947] +- Fix name of a dummy ia64 header from offsets.h to asm-offsets.h + [#191394] + +------------------------------------------------------------------- +Sun Jul 30 23:33:04 CEST 2006 - pbaudis@suse.cz + +- Update to current CVS snapshot (highlight: support for .gnu.hash + fast linking support) + +------------------------------------------------------------------- +Wed Jul 12 03:15:08 CEST 2006 - pbaudis@suse.cz + +- pthread_mutexattr_getprioceiling() was returning prioceiling out + of range [#182782] + +------------------------------------------------------------------- +Wed Jul 12 02:39:22 CEST 2006 - pbaudis@suse.cz + +- Fix the HTML documentation missing an index [#190585] + +------------------------------------------------------------------- +Sat Jun 24 18:32:42 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot +- Update to kernel-headers 2.6.17 +- Remove HZ define (sysconf(_SC_CLK_TCK) instead) + +------------------------------------------------------------------- +Tue Jun 13 11:49:43 CEST 2006 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue May 2 14:10:41 CEST 2006 - pbaudis@suse.cz + +- Fix bad memset() size in NTPL code [#159184] + +------------------------------------------------------------------- +Tue May 2 10:42:55 CEST 2006 - kukuk@suse.de + +- asm-powerpc/page.h: Don't move #ifdef __KERNEL__ [#171010] +- bits/mman.h: Fix value of MADV_REMOVE [#170734] + +------------------------------------------------------------------- +Mon Apr 24 12:04:12 CEST 2006 - kukuk@suse.de + +- Fix china timezone mess [#163674] +- Don't include linux/stddef.h [#167964] + +------------------------------------------------------------------- +Tue Apr 18 14:38:57 CEST 2006 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Thu Apr 13 13:34:07 CEST 2006 - kukuk@suse.de + +- Add /usr/include/linux/taskstats.h [#141936] + +------------------------------------------------------------------- +Tue Apr 11 12:20:57 CEST 2006 - kukuk@suse.de + +- nptl/init.c (sigcancel_handler): Compare with correct PID even + if the thread is in the middle of a fork call. + (sighandler_setxid): Likewise. + +------------------------------------------------------------------- +Sun Apr 9 16:27:20 CEST 2006 - ihno@suse.de + +- S390 fix for startupcode. Part of it was not PIC. + +------------------------------------------------------------------- +Fri Apr 7 13:42:20 CEST 2006 - kukuk@suse.de + +- Don't hardcode syscall numbers at our own + +------------------------------------------------------------------- +Tue Apr 4 22:10:47 CEST 2006 - schwab@suse.de + +- Fix readlink declaration. + +------------------------------------------------------------------- +Mon Apr 3 13:40:54 CEST 2006 - kukuk@suse.de + +- Update from CVS: + - nscd bug fixes + - Match return value of readlink to what POSIX says + - Fix NIS+ checks for NULL pointer + +------------------------------------------------------------------- +Sun Apr 2 20:53:17 CEST 2006 - dmueller@suse.de + +- Fix clients crash if nscd is unresponsive (glibc-#2501) +- Fix fd leak in nscd daemon (glibc-#2498) + +------------------------------------------------------------------- +Sat Apr 1 21:48:54 CEST 2006 - schwab@suse.de + +- Fix on ppc64. + +------------------------------------------------------------------- +Fri Mar 31 15:50:25 CEST 2006 - schwab@suse.de + +- Extend last change also to ppc64. + +------------------------------------------------------------------- +Sun Mar 26 21:08:58 CEST 2006 - schwab@suse.de + +- Terminate FDE before clone syscall. + +------------------------------------------------------------------- +Fri Mar 24 14:58:29 CET 2006 - ro@suse.de + +- kernel-headers: asm-powerpc: define PAGE_MASK in page.h + +------------------------------------------------------------------- +Mon Mar 20 13:57:27 CET 2006 - kukuk@suse.de + +- Update to final 2.6.16 kernel headers +- Update to current CVS: + - Don't use TLS before setting it up. + - Fix rounding of long doubles on ppc64. + - Correct usage of cfi_offset on ppc/ppc64. + - Fix memory leak in dlopen. + +------------------------------------------------------------------- +Tue Mar 14 17:08:27 CET 2006 - schwab@suse.de + +- Update fnmatch patch. + +------------------------------------------------------------------- +Fri Mar 10 13:36:38 CET 2006 - kukuk@suse.de + +- Disable unshare() syscall (request of kernel developer) + +------------------------------------------------------------------- +Fri Mar 10 08:30:53 CET 2006 - kukuk@suse.de + +- Don't include linux/interrupt.h from linux/rtc.h +- Revert last change to linux/input.h, disable struct +- Update to current CVS (nptl/ia64 fix) + +------------------------------------------------------------------- +Thu Mar 9 07:58:20 CET 2006 - kukuk@suse.de + +- Fix linux/input.h for userspace inclusion + +------------------------------------------------------------------- +Wed Mar 8 22:06:11 CET 2006 - kukuk@suse.de + +- Update kernel headers to 2.6.16-rc5 + +------------------------------------------------------------------- +Mon Mar 6 13:41:08 CET 2006 - kukuk@suse.de + +- Update to 2.4 CVS + - official release + - Fix free on ppc [#155374] + - Various sysconf() fixes + +------------------------------------------------------------------- +Sat Mar 4 18:12:36 CET 2006 - kukuk@suse.de + +- Update to CVS + - ldconfig/prelink fixes + +------------------------------------------------------------------- +Fri Mar 3 17:32:56 CET 2006 - aj@suse.de + +- Do not leave hyphens in defines in create_biarch_asm.sh (Bug 154998). + +------------------------------------------------------------------- +Fri Mar 3 10:58:02 CET 2006 - kukuk@suse.de + +- Update to CVS + - Fix ftw test suite failures + - Fix alignment of malloc for long double + +------------------------------------------------------------------- +Thu Mar 2 09:56:59 CET 2006 - kukuk@suse.de + +- Update to 2.3.91 CVS + - Fix 6arg syscall on s390x + - memccpy fix on IA64 + +------------------------------------------------------------------- +Wed Mar 1 08:54:53 CET 2006 - kukuk@suse.de + +- Update to CVS + - New linkat interface + - Update from tzdata2006b + - Define MADV_DONTFORK and MADV_DOFORK. + - Add robust mutex to NPTL + +------------------------------------------------------------------- +Thu Feb 23 15:26:29 CET 2006 - kukuk@suse.de + +- Reenable power optimized code again [#142839] + +------------------------------------------------------------------- +Sun Feb 12 09:45:39 CET 2006 - kukuk@suse.de + +- Disable power optimized code + +------------------------------------------------------------------- +Thu Feb 9 10:50:12 CET 2006 - kukuk@suse.de + +- Update to CVS + - Add unshare prototype + - Add memory barrier on i386/NPTL + +------------------------------------------------------------------- +Wed Feb 8 10:50:07 CET 2006 - kukuk@suse.de + +- Remove glibc-2.4-ppc-dl-procinfo-20060111.diff [#142839] + +------------------------------------------------------------------- +Mon Feb 6 16:58:50 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Fix alternate locale search path patch [#147685] + +------------------------------------------------------------------- +Thu Feb 2 12:13:19 CET 2006 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Mon Jan 30 16:10:35 CET 2006 - schwab@suse.de + +- Fix the fix. + +------------------------------------------------------------------- +Sat Jan 28 18:42:08 CET 2006 - kukuk@suse.de + +- Fix seg.fault in __atfct_seterrno if called from futimesat() +- Apply patches for CPU-Tuned Environment on Power [#142839] + +------------------------------------------------------------------- +Fri Jan 27 12:10:55 CET 2006 - kukuk@suse.de + +- Cleanup ld.so.conf + +------------------------------------------------------------------- +Thu Jan 26 08:53:33 CET 2006 - kukuk@suse.de + +- Add alternate directory for translations [#144073] + +------------------------------------------------------------------- +Thu Jan 26 00:41:37 CET 2006 - mls@suse.de + +- converted neededforbuild to BuildRequires + +------------------------------------------------------------------- +Mon Jan 23 17:44:50 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix build_locales + +------------------------------------------------------------------- +Sat Jan 21 10:24:02 CET 2006 - kukuk@suse.de + +- Update to CVS +- Fix inclusion of sys/poll.h with _GNU_SOURCE defined + +------------------------------------------------------------------- +Fri Jan 20 15:02:35 CET 2006 - kukuk@suse.de + +- Update to CVS + +------------------------------------------------------------------- +Sun Jan 15 08:28:26 CET 2006 - kukuk@suse.de + +- Update to CVS (fix long double configure check) + +------------------------------------------------------------------- +Sun Jan 15 01:59:54 CET 2006 - schwab@suse.de + +- Readd , , . + +------------------------------------------------------------------- +Sun Jan 15 01:08:22 CET 2006 - schwab@suse.de + +- Readd . + +------------------------------------------------------------------- +Sat Jan 14 22:33:32 CET 2006 - kukuk@suse.de + +- Update to current CVS (long double support) + +------------------------------------------------------------------- +Fri Jan 13 09:17:17 CET 2006 - aj@suse.de + +- Fix x86-64 w_exp to not use extra plt. + +------------------------------------------------------------------- +Thu Jan 12 22:39:01 CET 2006 - kukuk@suse.de + +- Fix asm-s390/setup.h for userspace inclusion +- nsswitch.conf: Add nis to netgroup and automount entry +- Fix sys/procfs.h for ppc64 + +------------------------------------------------------------------- +Mon Jan 9 23:20:14 CET 2006 - kukuk@suse.de + +- Update to current CVS (fix for pthread.h with -std=c99) +- Define PAGE_SIZE on POWER +- Don't include linux/sched.h in asm-power/elf.h + +------------------------------------------------------------------- +Sun Jan 8 17:58:11 CET 2006 - kukuk@suse.de + +- Fix linux/acct.h for userland inclusion + +------------------------------------------------------------------- +Sun Jan 8 11:48:58 CET 2006 - kukuk@suse.de + +- Update to current CVS +- Remove CHILD_MAX from kernel-headers +- Copy subdirectories of asm-power, too. +- Remove da_DK@euro (does not exist) + +------------------------------------------------------------------- +Sat Jan 7 10:02:43 CET 2006 - kukuk@suse.de + +- Fix ext2 kernel headers +- Update to current CVS + +------------------------------------------------------------------- +Fri Jan 6 12:28:10 CET 2006 - kukuk@suse.de + +- Update to kernel headers 2.6.15 + +------------------------------------------------------------------- +Fri Jan 6 00:58:28 CET 2006 - kukuk@suse.de + +- Update crypt_blowfish to version 1.0 +- Update to current CVS +- Adjust nscd patches + +------------------------------------------------------------------- +Tue Jan 3 17:19:36 CET 2006 - aj@suse.de + +- Update to current CVS to fix pthread.h on 64-bit systems for C++. + +------------------------------------------------------------------- +Tue Jan 3 06:04:26 CET 2006 - aj@suse.de + +- Enable string patch again. +- Update to current CVS. + +------------------------------------------------------------------- +Wed Dec 21 15:11:14 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix ldconfig + +------------------------------------------------------------------- +Sat Dec 17 09:49:18 CET 2005 - kukuk@suse.de + +- Remove /usr/lib/zoneinfo +- Add /etc/localtime to filelist +- Update to current CVS +- Fix glibc #1978: statvfs does not know about current filesystems +- Fix wrong error return code of time() on x86 +- Remove nscd_nischeck +- Remove audit from nfb +- Remove LinuxThreads + +------------------------------------------------------------------- +Wed Dec 14 18:00:59 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Remove nscd_nischeck +- Remove audit from nfb + +------------------------------------------------------------------- +Mon Dec 5 12:07:05 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable SELinux + +------------------------------------------------------------------- +Thu Nov 24 15:54:27 CET 2005 - kukuk@suse.de + +- Remove obsolete patches: + - glibc-2.3.asprintf-error_handling.diff + - glibc-2.3.90-missing-string_h.diff + +------------------------------------------------------------------- +Wed Nov 23 17:20:10 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Don't install in parallel + +------------------------------------------------------------------- +Fri Nov 18 13:42:43 CET 2005 - kukuk@suse.de + +- Update to current CVS to fix compiling with new binutils + +------------------------------------------------------------------- +Wed Nov 16 18:33:57 CET 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Nov 5 14:44:07 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Disable linuxthreads on POWER and Itanium +- Fix kernel-headers for userland inclusion + +------------------------------------------------------------------- +Wed Nov 2 17:12:36 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Update to kernel-headers 2.6.14 + +------------------------------------------------------------------- +Tue Oct 18 17:37:08 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Sat Oct 1 23:00:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs. +- Fix limit in getcwd. + +------------------------------------------------------------------- +Thu Sep 15 16:13:50 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Update to final 2.6.13 kernel headers +- Adjust bindresvport.blacklist patch to check already ports >= 512 + +------------------------------------------------------------------- +Fri Aug 26 16:41:56 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- init.d/nscd: Remove -S support (was removed from nscd) + +------------------------------------------------------------------- +Fri Aug 19 18:28:24 CEST 2005 - schwab@suse.de + +- Fix comment. + +------------------------------------------------------------------- +Fri Aug 19 16:36:24 CEST 2005 - matz@suse.de + +- Change .note.SuSE format [#105825]. + +------------------------------------------------------------------- +Fri Aug 19 15:13:21 CEST 2005 - kukuk@suse.de + +- Update to current CVS +- Move all obsolete libraries into own subpackage and document + them as obsolete + +------------------------------------------------------------------- +Fri Aug 5 10:32:38 CEST 2005 - schwab@suse.de + +- -mno-tls-direct-seg-refs is x86-only + +------------------------------------------------------------------- +Tue Aug 2 14:54:01 CEST 2005 - kukuk@suse.de + +- Update to 2.3.x CVS branch +- Compile with -mno-tls-direct-seg-refs + +------------------------------------------------------------------- +Fri Jul 29 11:12:02 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Wed Jul 27 23:13:04 CEST 2005 - schwab@suse.de + +- Update libm ULPs for ia64. +- Add linuxthreads stack guard support for ia64. + +------------------------------------------------------------------- +Sat Jul 23 10:05:16 CEST 2005 - kukuk@suse.de + +- Update to current CVS head (adds bits/wchar2.h) +- Move LinuxThreads version to obsolete/linuxthreads + +------------------------------------------------------------------- +Thu Jul 21 15:04:31 CEST 2005 - kukuk@suse.de + +- Update to current CVS head + +------------------------------------------------------------------- +Fri Jul 15 15:45:35 CEST 2005 - schwab@suse.de + +- Fix file list. + +------------------------------------------------------------------- +Fri Jul 15 12:09:08 CEST 2005 - aj@suse.de + +- Fix amd64 string routines and math routines. + +------------------------------------------------------------------- +Fri Jul 15 08:45:27 CEST 2005 - kukuk@suse.de + +- Use old LinuxThreads only for runtime and remove static version + and headers +- Update to current CVS head +- Remove own texi2html + +------------------------------------------------------------------- +Mon Jul 11 11:00:47 CEST 2005 - kukuk@suse.de + +- Install generic stdio-lock.h header file + +------------------------------------------------------------------- +Sat Jul 9 18:46:46 CEST 2005 - kukuk@suse.de + +- Temporary disable AMD64 string optimization + +------------------------------------------------------------------- +Wed Jul 6 09:58:39 CEST 2005 - kukuk@suse.de + +- Build and install ja_JP.SHIFT_JISX0213 locale [Bug #84030] + +------------------------------------------------------------------- +Mon Jul 4 20:41:47 CEST 2005 - kukuk@suse.de + +- nss_compat: Preserve original return value [Bug #95033] +- Cleanup old Obsoletes/Requires + +------------------------------------------------------------------- +Mon Jun 27 13:49:38 CEST 2005 - kukuk@suse.de + +- Update to current gilbc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 23 23:25:42 CEST 2005 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Adjust nscd patch +- Enable SELinux/audit support for nscd +- Update .note.SuSE version + +------------------------------------------------------------------- +Mon Jun 20 12:35:20 CEST 2005 - kukuk@suse.de + +- Update to final 2.6.12 kernel headers +- Update to current glibc CVS snapshot + +------------------------------------------------------------------- +Thu Jun 16 17:03:43 CEST 2005 - kukuk@suse.de + +- Update linux/audit.h header +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jun 13 14:48:53 CEST 2005 - kukuk@suse.de + +- Don't terminate strings twice in nis/netgroup code. +- netinet/if_tr.h: don't include kernel headers. + +------------------------------------------------------------------- +Wed Jun 8 16:26:21 CEST 2005 - kukuk@suse.de + +- Update to kernel-headers 2.6.12-rc6 +- Fix build on s390 and s390x + +------------------------------------------------------------------- +Wed Jun 8 12:08:49 CEST 2005 - matz@suse.de + +- Don't strip .symtab from libpthread.so.0 (and other libs). + Fixes debugging of threaded programs (#81253). + +------------------------------------------------------------------- +Mon Jun 6 18:47:22 CEST 2005 - kukuk@suse.de + +- Update to current CVS head +- Update to kernel-headers 2.6.12-rc5 + +------------------------------------------------------------------- +Thu May 26 20:07:11 CEST 2005 - schwab@suse.de + +- No longer build loadlocale.c with -fno-unit-at-a-time. + +------------------------------------------------------------------- +Tue May 24 11:09:00 CEST 2005 - kukuk@suse.de + +- Update to current CVS head, obsoletes: + - glibc-2.3.90-libm.diff + - glibc-2.3.90-i386-sysdep.diff + - warn.diff + - dl-osinfo.diff + Adjusted: + - glibc-2.3.90-bindresvport.blacklist.diff + +------------------------------------------------------------------- +Sun May 22 01:53:44 CEST 2005 - schwab@suse.de + +- Fix missing include. + +------------------------------------------------------------------- +Tue May 17 23:46:19 CEST 2005 - schwab@suse.de + +- Fix warning. + +------------------------------------------------------------------- +Fri Apr 29 15:11:22 CEST 2005 - kukuk@suse.de + +- Update to latest CVS snapshost + +------------------------------------------------------------------- +Sat Apr 23 17:05:58 CEST 2005 - kukuk@suse.de + +- Fix all the archs using wrong FLAGS + +------------------------------------------------------------------- +Sat Apr 23 08:02:31 CEST 2005 - kukuk@suse.de + +- Remove -D_FORTIFY_SOURCE from RPM_OPT_FLAGS + +------------------------------------------------------------------- +Fri Apr 22 13:05:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS + +------------------------------------------------------------------- +Fri Apr 22 12:45:26 CEST 2005 - kukuk@suse.de + +- Check if nice value does not conflict with test suite + +------------------------------------------------------------------- +Tue Apr 19 13:54:03 CEST 2005 - mls@suse.de + +- resolv: trigger re-read of /etc/resolv.conf for all threads if + a change is detected +- nscd: support a negative timeout of zero, used by hosts cache + +------------------------------------------------------------------- +Mon Apr 18 17:31:23 CEST 2005 - meissner@suse.de + +- Enable fortify possibility even for GCC 4.0, we apply + the necessary patch to the SUSE GCC 4.0. + +------------------------------------------------------------------- +Sat Apr 16 12:16:13 CEST 2005 - aj@suse.de + +- Apply amd64 string diff again. + +------------------------------------------------------------------- +Tue Apr 12 11:35:46 CEST 2005 - kukuk@suse.de + +- Update kernel-headers to 2.6.10 +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Apr 6 18:33:32 CEST 2005 - schwab@suse.de + +- Cleanup neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 22:02:25 CEST 2005 - aj@suse.de + +- Add gettext-devel to neededforbuild. + +------------------------------------------------------------------- +Tue Apr 5 16:45:06 CEST 2005 - aj@suse.de + +- Do not build on xen machines. +- Adjust libm ULPs for PowerPC. + +------------------------------------------------------------------- +Fri Apr 1 14:20:45 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Mar 29 10:57:40 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix compiler warnings on ix86 + +------------------------------------------------------------------- +Mon Mar 28 17:27:44 CEST 2005 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable Noversion Patch on i386 temporary + +------------------------------------------------------------------- +Fri Mar 18 14:33:22 CET 2005 - ro@suse.de + +- check-build.sh: require 2.6.11 on x86,x86_64 for build + +------------------------------------------------------------------- +Thu Mar 17 13:57:22 CET 2005 - mls@suse.de + +- nscd: enable hosts cache +- nscd: also watch /etc/resolv.conf +- nscd: check files every 3 seconds +- nscd: deal correctly with missing files + +------------------------------------------------------------------- +Tue Mar 15 15:50:12 CET 2005 - kukuk@suse.de + +- Update to current CVS snapshot. + +------------------------------------------------------------------- +Sat Feb 12 02:49:56 CET 2005 - schwab@suse.de + +- Remove const from __pthread_internal_tsd_address. + +------------------------------------------------------------------- +Fri Feb 11 15:44:31 CET 2005 - schwab@suse.de + +- Update to current CVS. +- Link glibc_post_upgrade against new libc. +- Fix build error with gcc4. + +------------------------------------------------------------------- +Wed Feb 9 10:40:29 CET 2005 - kukuk@suse.de + +- Update to current CVS +- Fix bindresvport blacklist handling. +- Increase buffer in tst-cancel17 to match new kernel buffer size + [#50277] +- Enable LinuxThreads again +- Remove ia64-audit patch (is upstream) + +------------------------------------------------------------------- +Mon Feb 7 13:15:58 CET 2005 - aj@suse.de + +- Add patch to allow compilation with gcc4. + +------------------------------------------------------------------- +Mon Jan 31 16:33:47 CET 2005 - schwab@suse.de + +- Readd support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Mon Jan 31 14:32:01 CET 2005 - kukuk@suse.de + +- Add memory clobber to string inline assemblies on s390 [#50284]. + +------------------------------------------------------------------- +Mon Jan 31 12:55:59 CET 2005 - kukuk@suse.de + +- Fix filelist on i686 if we build NPTL only version + +------------------------------------------------------------------- +Mon Jan 31 09:17:33 CET 2005 - aj@suse.de + +- Generate new ULPs file for i386 needed by GCC 4. + +------------------------------------------------------------------- +Sun Jan 30 12:43:56 CET 2005 - kukuk@suse.de + +- Include own copy of texi2html +- Add glibc_pst_upgrade program (based on version from FC3) +- Update to current CVS + +------------------------------------------------------------------- +Thu Jan 27 23:28:57 CET 2005 - kukuk@suse.de + +- Re-add patch for timezone/zic.c (got lost with last merge) + +------------------------------------------------------------------- +Wed Jan 26 11:34:36 CET 2005 - kukuk@suse.de + +- Update timezone data to 2005c release (fixes zdump crash on + 64bit architectures) + +------------------------------------------------------------------- +Sat Jan 22 15:45:25 CET 2005 - schwab@suse.de + +- Add basic (incomplete) support for LD_AUDIT on ia64. + +------------------------------------------------------------------- +Fri Jan 21 11:00:08 CET 2005 - kukuk@suse.de + +- Enable patch for [Bug #49833] +- Allow to build NPTL only glibc +- Update to CVS from Jan 16, 2005, containing: +- Fix execlp argument in SunRPC code [glibc #681] +- Fix errno return values for futimes [glibc #633] +- Update FPU function on PPC/PPC64 [Bug #49764] + +------------------------------------------------------------------- +Mon Jan 17 10:40:24 CET 2005 - aj@suse.de + +- Enable amd64 string patch again after fixing failing hunks. +- Handle missing cpuid better for amd64 string functions. [#49803] + +------------------------------------------------------------------- +Sat Jan 15 16:05:36 CET 2005 - aj@suse.de + +- Fix amd64 string patch to use correct datatype. + +------------------------------------------------------------------- +Fri Jan 14 14:06:43 CET 2005 - kukuk@suse.de + +- Fix memory corruption in getgrouplist function [Bug #49833] + +------------------------------------------------------------------- +Tue Jan 11 11:01:26 CET 2005 - kukuk@suse.de + +- Enable all LinuxThreads tests again +- Finalize getconf -a patch (make it compatible with Solaris) +- Rewrite getconf manual page and mention new option +- Merge GB18030 patches into one. + +------------------------------------------------------------------- +Thu Dec 30 10:57:40 CET 2004 - kukuk@suse.de + +- Merge kernel-headers.remove-SO_BSDCOMPAT.diff with + kernel-headers.SuSE.diff +- Revert nscd paths on old SuSE Linux distributions + +------------------------------------------------------------------- +Wed Dec 29 22:33:00 CET 2004 - kukuk@suse.de + +- Update to glibc 2.3.90 CVS branch +- Remove alarm-round.patch (merged upstream) + +------------------------------------------------------------------- +Thu Dec 9 14:19:05 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Move nscd persistent database files back to /var/run/nscd + +------------------------------------------------------------------- +Mon Dec 6 15:43:08 CET 2004 - kukuk@suse.de + +- Update to current CVS +- Fix more kernel headers for userland inclusion + +------------------------------------------------------------------- +Fri Nov 26 14:33:20 CET 2004 - ro@suse.de + +- kernel-headers.diff: define __force in compiler.h + +------------------------------------------------------------------- +Thu Nov 25 17:52:39 CET 2004 - schwab@suse.de + +- Add Intel libm update. + +------------------------------------------------------------------- +Thu Nov 25 12:08:17 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS +- Update kernel headers to 2.6.9 + +------------------------------------------------------------------- +Thu Nov 18 15:11:32 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 15 14:11:27 CET 2004 - kukuk@suse.de + +- Update to current glibc CVS + +------------------------------------------------------------------- +Mon Nov 8 10:50:27 CET 2004 - kukuk@suse.de + +- Blacklist port 921 (lwresd) for usage by bindresvport() +- Update to current glibc CVS +- Add /var/run/nscd/* files as ghost entries + +------------------------------------------------------------------- +Mon Oct 18 13:54:04 CEST 2004 - aj@suse.de + +- Don't use special fdim functions for x86-64 since those give + wrong results for fdim (inf,inf). +- Fix ppc64 rebuild issue with ppc32 system [#47325]. + +------------------------------------------------------------------- +Wed Oct 13 14:06:55 CEST 2004 - kukuk@suse.de + +- Fix symlink librt.so -> tls/librt.so.1 +- Backout last glob changes +- Disable nptl as default for linking + +------------------------------------------------------------------- +Tue Oct 12 21:12:15 CEST 2004 - kukuk@suse.de + +- Install kernel-headers after merging linuxthreads/NPTL headers + +------------------------------------------------------------------- +Tue Oct 12 09:36:48 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Oct 11 15:11:03 CEST 2004 - kukuk@suse.de + +- Make NPTL default for linking + +------------------------------------------------------------------- +Fri Oct 1 13:34:49 CEST 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Add workaround for linuxthreads/without-__threads bug +- Remove KDE/ldconfig workaround +- Set SuSE ABI note to 9.3 + +------------------------------------------------------------------- +Sun Sep 26 16:56:19 CEST 2004 - kukuk@suse.de + +- Add lib/nptl/librt.so symlink to tls/librt.so.1 +- Update to current CVS + +------------------------------------------------------------------- +Sat Sep 25 13:43:09 CEST 2004 - kukuk@suse.de + +- Implement mq support for rtkaio and enable it again + +------------------------------------------------------------------- +Fri Sep 24 15:37:08 CEST 2004 - kukuk@suse.de + +- Add zh_SG.UTF-8 [Bug #46024] + +------------------------------------------------------------------- +Thu Sep 23 16:22:33 CEST 2004 - kukuk@suse.de + +- Sync sys/mount.h and linux/fs.h + +------------------------------------------------------------------- +Wed Sep 22 15:33:10 CEST 2004 - kukuk@suse.de + +- Make mdns support configurable in /etc/host.conf + +------------------------------------------------------------------- +Mon Sep 20 17:58:13 CEST 2004 - kukuk@suse.de + +- Fix invalidating of nscd caches and getaddrinfo() + +------------------------------------------------------------------- +Fri Sep 17 07:13:01 CEST 2004 - kukuk@suse.de + +- Update to current CVS (nscd and glob.h fixes) + +------------------------------------------------------------------- +Thu Sep 16 16:37:45 CEST 2004 - kukuk@suse.de + +- Fix getaddrinfo/nscd support + +------------------------------------------------------------------- +Wed Sep 15 14:11:29 CEST 2004 - kukuk@suse.de + +- Update to current CVS, remove merged patches + +------------------------------------------------------------------- +Sun Sep 12 09:06:31 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix nscd crash if one service is disabled +- glob.h: Add workaround for invalid prototypes +- nss_compat: Check that buffer is larger than 0 bytes + +------------------------------------------------------------------- +Sat Sep 11 00:50:47 CEST 2004 - kukuk@suse.de + +- Update to CVS: Fix cdefs.h for C++ usage + +------------------------------------------------------------------- +Fri Sep 10 14:31:47 CEST 2004 - kukuk@suse.de + +- Add lwres to hosts search order in nsswitch.conf +- Update to current CVS +- Use new nscd paths for socket/pid file +- Enable NPTL on i586 +- Add --print-all option to getconf + +------------------------------------------------------------------- +Thu Sep 2 11:13:48 CEST 2004 - kukuk@suse.de + +- Fix NPTL header files on x86-64 for 32bit compilation +- Apply various fixes from CVS +- Remove pre-Install for -devel package (no longer necessary) + +------------------------------------------------------------------- +Wed Aug 25 16:16:32 CEST 2004 - kukuk@suse.de + +- Don't compile in eval.c + +------------------------------------------------------------------- +Mon Aug 23 10:20:09 CEST 2004 - kukuk@suse.de + +- Update to current CVS: + - Use CVS version for last fix. + - Add malloc sanity checks for double free. + +------------------------------------------------------------------- +Sat Aug 21 00:06:58 CEST 2004 - schwab@suse.de + +- Fix cancellable syscalls in librt w/ linuxthreads. + +------------------------------------------------------------------- +Fri Aug 20 20:40:38 CEST 2004 - kukuk@suse.de + +- Update to current CVS [#43993] + +------------------------------------------------------------------- +Thu Aug 19 13:56:15 CEST 2004 - schwab@suse.de + +- Better fix for asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Wed Aug 18 14:53:47 CEST 2004 - kukuk@suse.de + +- Update to current CVS +- Workaround linux/ixjuser.h problem not including compiler.h +- Workaround linux/capi.h problem not including compiler.h + +------------------------------------------------------------------- +Tue Aug 17 18:32:29 CEST 2004 - schwab@suse.de + +- Fix asm-ia64/gcc_intrin.h. + +------------------------------------------------------------------- +Tue Aug 17 12:13:41 CEST 2004 - kukuk@suse.de + +- Workaround broken linux/crc-ccitt.h for usage from glibc [#43884] + +------------------------------------------------------------------- +Mon Aug 16 11:51:37 CEST 2004 - kukuk@suse.de + +- Update to current CVS version and update to + kernel-headers 2.6.8.1 to fix NPTL deadlock problems +- Disable linuxthreads/tst-clock1, does not work on i586 and lower + +------------------------------------------------------------------- +Fri Aug 13 14:45:31 CEST 2004 - kukuk@suse.de + +- Update to current CVS version +- Cleanup/adjust all patches + +------------------------------------------------------------------- +Thu Jun 17 12:12:31 CEST 2004 - kukuk@suse.de + +- Fix sched_setaffinity return/errno code in error case [#42124] + +------------------------------------------------------------------- +Wed Jun 16 07:45:07 CEST 2004 - meissner@suse.de + +- Updated altivec set/get/swapcontext patch to fix + more problems on altivec capable machines [#42039]. +- glibc is also able to build on -pmac64 kernels. + +------------------------------------------------------------------- +Mon Jun 14 20:12:00 CEST 2004 - kukuk@suse.de + +- Add fixes from CVS: + - sysconf return value fixes + - nscd host caching deadlock + - backtrace for s390/s390x/ia64 static linked binaries + +------------------------------------------------------------------- +Mon Jun 14 18:54:05 CEST 2004 - kukuk@suse.de + +- Increase listen backlog in RPC code [#41955] + +------------------------------------------------------------------- +Wed Jun 9 16:21:30 CEST 2004 - meissner@suse.de + +- Fixed typos in powerpc* *context functions to not destroy the r19 + register and save the v19 register correctly. [#41790] + +------------------------------------------------------------------- +Sat Jun 5 08:40:29 CEST 2004 - aj@suse.de + +- Fix makecontext with more than 6 arguments on x86-64 [#40546]. + +------------------------------------------------------------------- +Mon May 24 18:04:38 CEST 2004 - kukuk@suse.de + +- Update to kernel-headers 2.6.6 +- Update to current glibc CVS +- Disable rtkaio temporary + +------------------------------------------------------------------- +Sun May 23 21:44:19 CEST 2004 - kukuk@suse.de + +- Fix pthread_cond_wait on not ix86 and x86-64 architectures + +------------------------------------------------------------------- +Thu May 20 14:11:47 CEST 2004 - kukuk@suse.de + +- Add PPC64 kernel header file fixes [#40831,#40870] + +------------------------------------------------------------------- +Wed May 19 16:18:37 CEST 2004 - kukuk@suse.de + +- Add additional NPTL fixes from CVS + +------------------------------------------------------------------- +Tue May 18 10:52:27 CEST 2004 - schwab@suse.de + +- Fix mapping of DSOs with holes. + +------------------------------------------------------------------- +Fri May 14 13:50:37 CEST 2004 - schwab@suse.de + +- Fix rounding in alarm [#40552]. + +------------------------------------------------------------------- +Wed May 12 11:43:38 CEST 2004 - schwab@suse.de + +- Fix uninitialized array in regexp compiler [#40009]. + +------------------------------------------------------------------- +Tue May 11 11:45:08 CEST 2004 - kukuk@suse.de + +- Apply lot of fixes from current CVS +- Fix alignment of stack for makecontext on x86-64 [Bug #39413] +- Make XTABS identical to TABDLY on PPC + +------------------------------------------------------------------- +Wed May 5 13:50:51 CEST 2004 - kukuk@suse.de + +- Add some header fixes to match POSIX + +------------------------------------------------------------------- +Tue May 4 11:27:15 CEST 2004 - meissner@suse.de + +- Fix INLINE_SYSCALL on ppc and ppc64 (see #38399) + +------------------------------------------------------------------- +Mon May 3 13:42:12 CEST 2004 - kukuk@suse.de + +- Port --mlock option for ld.so from UL1 [Bug #39569] + +------------------------------------------------------------------- +Tue Apr 20 11:23:55 CEST 2004 - kukuk@suse.de + +- Add execstack fix for s390 + +------------------------------------------------------------------- +Mon Apr 19 13:11:27 CEST 2004 - kukuk@suse.de + +- Update to current CVS version (fix problems with new binutils + and gcc) + +------------------------------------------------------------------- +Mon Apr 19 08:29:42 CEST 2004 - kukuk@suse.de + +- Add pthread_getattr_np and syslog fixes from CVS +- Update gb18030 and big5hkscs gconv modules [Bug #39080] + +------------------------------------------------------------------- +Sat Apr 17 17:42:48 CEST 2004 - schwab@suse.de + +- Pacify autobuild. + +------------------------------------------------------------------- +Thu Apr 15 10:07:19 CEST 2004 - kukuk@suse.de + +- Add /etc/ld.so.conf.d/*.conf to /etc/ld.so.conf +- Disable FUTEX_REQUEUE support in NPTL library [Bug #38882] + +------------------------------------------------------------------- +Thu Apr 15 00:37:28 CEST 2004 - schwab@suse.de + +- Remove /usr/i386-linux from ld.so.conf, + +------------------------------------------------------------------- +Wed Apr 14 11:49:05 CEST 2004 - kukuk@suse.de + +- Fix linux/compiler.h for glibc inclusion +- Really fix ffsl on s390x + +------------------------------------------------------------------- +Sat Apr 10 00:42:04 CEST 2004 - schwab@suse.de + +- Fix syntax error in memcmp. + +------------------------------------------------------------------- +Fri Apr 9 16:22:31 CEST 2004 - kukuk@suse.de + +- Update from CVS: linuxthread debug fixes +- Fix INLINE_SYSCALL on x86-64 and ia64 (fixes #38399) +- Fix ffsl weak alias on s390x +- Update to 2.6.5 kernel headers + +------------------------------------------------------------------- +Thu Apr 8 00:24:46 CEST 2004 - meissner@suse.de + +- forward umount to umount2 on ppc64 because umount syscall + does not exist + +------------------------------------------------------------------- +Mon Apr 5 14:40:18 CEST 2004 - kukuk@suse.de + +- Sync with current CVS (which is nearly identical with most of + our latest patches) + +------------------------------------------------------------------- +Fri Apr 2 14:18:11 CEST 2004 - kukuk@suse.de + +- Make fstatvfs64 working on 32bit architectures +- Add fwrite LFS fix from aj +- Add powerpc fixes from CVS +- Fix wrong errno code for shm_unlink [Bug #38013] + +------------------------------------------------------------------- +Wed Mar 31 09:31:56 CEST 2004 - kukuk@suse.de + +- Add three fixes from CVS: + - Call __nptl_deallocate_tsd for main thread, too + - setgroups: optimizations for huge number of groups + - initgroups: Limit the initial allocation to 64 entries + +------------------------------------------------------------------- +Tue Mar 30 17:36:18 CEST 2004 - kukuk@suse.de + +- Add IUTF8 to bits/termios.h [Bug #34725] +- *affinitiy.c: Prepend GLIBC_ to version names + +------------------------------------------------------------------- +Sat Mar 27 09:52:53 CET 2004 - kukuk@suse.de + +- Fix wrong return value of getXXbyYY_r in case key was not + found [Bug #37181] +- Fix typo in dl-open +- Don't set errno in NSS NIS module if group was not found + +------------------------------------------------------------------- +Fri Mar 26 12:39:27 CET 2004 - aj@suse.de + +- Add pow10/pow10f aliases for AMD64. + +------------------------------------------------------------------- +Thu Mar 25 16:42:57 CET 2004 - kukuk@suse.de + +- Update to latest CVS snapshot + +------------------------------------------------------------------- +Sat Mar 20 07:49:49 CET 2004 - aj@suse.de + +- Fix further problems with sched_[sg]etaffinity calls. + +------------------------------------------------------------------- +Fri Mar 19 19:57:35 CET 2004 - aj@suse.de + +- Fix sched_setaffinity compile problem. + +------------------------------------------------------------------- +Fri Mar 19 19:44:32 CET 2004 - kukuk@suse.de + +- Remove conflict with special aaa_base version (rpm will handle + this with file conflict) + +------------------------------------------------------------------- +Fri Mar 19 15:43:19 CET 2004 - kukuk@suse.de + +- Add SuSE abi note +- Add madvise patch +- Update to current CVS + +------------------------------------------------------------------- +Wed Mar 17 13:59:14 CET 2004 - kukuk@suse.de + +- Use official NPTL version fix +- Add LD_DEBUG=statistic for x86-64 +- Fix two JB_SIZE redefinitions on PPC +- Add two fixes for execstack + +------------------------------------------------------------------- +Mon Mar 15 08:11:33 CET 2004 - kukuk@suse.de + +- Require kernel 2.6.4 for glibc/NPTL +- Remove siginfo_t/si_band patch (needs to be fixed in kernel) +- Update linuxthreads_db and nptl_db +- Add libidn fixes from CVS + +------------------------------------------------------------------- +Sat Mar 13 19:53:58 CET 2004 - kukuk@suse.de + +- Adjust filelist (remove libcidn.a and libcidn_p.a) + +------------------------------------------------------------------- +Sat Mar 13 16:01:42 CET 2004 - kukuk@suse.de + +- Update to current CVS (merge of patches) +- Fix siginfo_t/si_band [Bug #34330] + +------------------------------------------------------------------- +Thu Mar 11 18:35:05 CET 2004 - mls@suse.de + +- Add mdns support to resolver library + +------------------------------------------------------------------- +Thu Mar 11 16:01:43 CET 2004 - kukuk@suse.de + +- Update kernel headers to 2.6.4 +- Update to current glibc CVS + +------------------------------------------------------------------- +Wed Mar 10 15:44:25 CET 2004 - bg@suse.de + +- Update hppa patches. + +------------------------------------------------------------------- +Mon Mar 8 15:19:01 CET 2004 - kukuk@suse.de + +- Fix vDSO on IA64 + +------------------------------------------------------------------- +Mon Mar 8 13:25:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Add libidn + - Lot of dynamic loader changes + +------------------------------------------------------------------- +Thu Mar 4 10:50:09 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix posix_fadvise vs. posix_fadvise64 + +------------------------------------------------------------------- +Tue Mar 2 16:51:44 CET 2004 - kukuk@suse.de + +- Fix PPC kernel header files +- Update from glibc CVS + - NPTL fixes + - nscd fixes + +------------------------------------------------------------------- +Tue Mar 2 12:11:38 CET 2004 - schwab@suse.de + +- Fix ppc32 to always use stat64 syscall. + +------------------------------------------------------------------- +Sat Feb 28 17:30:17 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Fix compiler warnings + - NPTL: Don't use CLONE_STOPPED + - Revert vDSO changes + +------------------------------------------------------------------- +Fri Feb 27 10:05:48 CET 2004 - kukuk@suse.de + +- Update from glibc CVS: + - Real NGROUP_MAX fix + - Lot of NPTL fixes + - clock_settime fix +- Add no_NO back (required by OpenI18N spec and [Bug #34745]) + +------------------------------------------------------------------- +Thu Feb 26 14:52:07 CET 2004 - kukuk@suse.de + +- Workaround broken NGROUP_MAX function + +------------------------------------------------------------------- +Thu Feb 26 12:10:37 CET 2004 - kukuk@suse.de + +- Add insserv PreRequires for nscd +- Update from CVS: NPTL and getaddrinfo memory leak fixes, + Get NGROUP_MAX from /proc filesystem + +------------------------------------------------------------------- +Sat Feb 21 06:22:23 CET 2004 - kukuk@suse.de + +- Update from CVS: IA64 relo fix, lot of PPC fixes +- Fix linux/mod_devicetable.h for userland inclusion +- Enable NPTL on Alpha + +------------------------------------------------------------------- +Fri Feb 20 01:08:26 CET 2004 - schwab@suse.de + +- Fix pthread_barrier_wait. + +------------------------------------------------------------------- +Thu Feb 19 09:46:46 CET 2004 - kukuk@suse.de + +- Update from CVS: More NPTL fixes +- nscd.init: Cleanups + +------------------------------------------------------------------- +Wed Feb 18 15:49:09 CET 2004 - kukuk@suse.de + +- Kernel Headers: Fix asm-ppc/unaliged.h, asm-ppc/types.h and + asm-ppc/bitops.h for userland inclusion. + +------------------------------------------------------------------- +Wed Feb 18 11:24:35 CET 2004 - bg@suse.de + +- Update hppa patches for current glibc +- Add workaround for ICE in hppa + +------------------------------------------------------------------- +Tue Feb 17 13:54:28 CET 2004 - kukuk@suse.de + +- Update from CVS: + - PPC nptl compatiblity fix + - NSCD patches merged + - ld.so.preload: Igreno missing files + - getaddrinfo: Fix problem with IPv6 addresses + +------------------------------------------------------------------- +Tue Feb 17 11:42:59 CET 2004 - aj@suse.de + +- Fix string optimizations init code on AMD64. + +------------------------------------------------------------------- +Sat Feb 14 07:10:42 CET 2004 - kukuk@suse.de + +- Update from CVS (for NPTL fixes and new PPC longjmp) +- Fix nscd deadlock with kernel 2.6 [Bug #34507] + +------------------------------------------------------------------- +Fri Feb 13 14:19:25 CET 2004 - aj@suse.de + +- Add more string/memory optimizations for AMD64. + +------------------------------------------------------------------- +Thu Feb 12 17:07:08 CET 2004 - kukuk@suse.de + +- Fix regex bug with invalid UTF-8 strings + +------------------------------------------------------------------- +Thu Feb 12 16:31:51 CET 2004 - aj@suse.de + +- Add more string optimizations for AMD64. + +------------------------------------------------------------------- +Wed Feb 11 16:14:53 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot +- Fix _IOC_TYPECHECK on s390/s390x/parisc +- Compile rtkaio only with NPTL +- Remove glibcbug (was dropped since glibc uses bugzilla now) +- Disable parallel build on s390x + +------------------------------------------------------------------- +Tue Feb 10 15:38:37 CET 2004 - schwab@suse.de + +- Work around invalid use of kernel headers in some packages. + +------------------------------------------------------------------- +Fri Feb 6 19:57:04 CET 2004 - kukuk@suse.de + +- Add kernel stat fix for PPC +- Add fix for off-by-one error in regex code + +------------------------------------------------------------------- +Thu Feb 5 18:04:45 CET 2004 - kukuk@suse.de + +- Update kernel header files to 2.6.2 + +------------------------------------------------------------------- +Tue Feb 3 17:14:38 CET 2004 - bg@suse.de + +- Update hppa patch + +------------------------------------------------------------------- +Tue Feb 3 16:24:47 CET 2004 - kukuk@suse.de + +- Fix ypclnt speedup patch +- Update to current CVS snapshot + +------------------------------------------------------------------- +Mon Jan 26 13:44:39 CET 2004 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Wed Jan 21 10:23:42 CET 2004 - aj@suse.de + +- Do not run in parallel on s390. + +------------------------------------------------------------------- +Mon Jan 19 15:49:51 CET 2004 - ro@suse.de + +- really fix linux/percpu.h to compile in userland + +------------------------------------------------------------------- +Fri Jan 16 11:14:49 CET 2004 - kukuk@suse.de + +- Update version.h to 2.6.1 +- Fix linux/percpu.h to compile in userland +- Update to current CVS snapshot +- Revert nscd path changes + +------------------------------------------------------------------- +Wed Jan 14 12:06:13 CET 2004 - kukuk@suse.de + +- Update to Kernel Headers 2.6.1 +- Update to current CVS snapshot +- Don't ignore make check on IA64 any longer + +------------------------------------------------------------------- +Sat Jan 10 01:56:48 CET 2004 - schwab@suse.de + +- Locale no_NO has been renamed to nb_NO. + +------------------------------------------------------------------- +Fri Jan 9 14:09:01 CET 2004 - kukuk@suse.de + +- Temporary ignore make check on IA64 and PPC + (known kernel/compiler bugs) + +------------------------------------------------------------------- +Fri Jan 9 00:36:51 CET 2004 - stepan@suse.de + +- fix v4l2 headers + +------------------------------------------------------------------- +Wed Jan 7 13:09:26 CET 2004 - kukuk@suse.de + +- Update to glibc CVS from 20040107 +- Remove manual pages which are now part of man-pages + +------------------------------------------------------------------- +Thu Dec 18 13:41:37 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031218 +- Update ot final 2.6.0 kernel headers +- Fix syntax error in spec file +- Update HPPA patch + +------------------------------------------------------------------- +Mon Dec 15 19:19:08 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031215 + +------------------------------------------------------------------- +Fri Dec 12 10:19:52 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031212 +- disable rtkaio (does not work with kernel 2.6 yet) + +------------------------------------------------------------------- +Fri Dec 5 10:00:28 CET 2003 - kukuk@suse.de + +- Update to glibc 2.3.3 CVS +- Make an extra sub package for nscd + +------------------------------------------------------------------- +Thu Nov 27 13:08:32 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031127 +- Add nsswitch.conf (moved from aaa_base) +- Add ld.so.conf (moved from aaa_base) [Bug #33277] +- Fix ceil on AMD64 + +------------------------------------------------------------------- +Fri Nov 21 14:40:29 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031121 +- Obsolete epoll (glibc-devel contains now this header files) + +------------------------------------------------------------------- +Wed Nov 19 15:54:58 CET 2003 - kukuk@suse.de + +- Add patch so that ld.so supports linuxthreads and nptl +- PPC64 requires kernel 2.4.21 +- Update to glibc CVS from 20031119 + +------------------------------------------------------------------- +Fri Nov 14 14:05:38 CET 2003 - bg@suse.de + +- Add hppa patches for current glibc. + +------------------------------------------------------------------- +Fri Nov 14 13:32:06 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031114 +- Remove PPC64 symbol version patch + +------------------------------------------------------------------- +Thu Nov 13 12:10:15 CET 2003 - schwab@suse.de + +- Fix last change covering libNoVersion. + +------------------------------------------------------------------- +Mon Nov 10 16:52:09 CET 2003 - schwab@suse.de + +- Specfile cleanup. + +------------------------------------------------------------------- +Thu Nov 6 14:10:17 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031106 + +------------------------------------------------------------------- +Wed Nov 5 15:26:06 CET 2003 - uli@suse.de + +- added a number of ARM fixes (glibc-2.3.2-armformat.patch, + glibc-armisa.patch, glibc-sjlj.patch) + +------------------------------------------------------------------- +Mon Oct 27 21:13:09 CET 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031027 +- kernel headers: update to 2.6.0-test9 +- nptl: Use -fno-unit-at-a-time on AMD64, too + +------------------------------------------------------------------- +Thu Oct 23 13:34:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Wed Oct 22 19:01:37 CEST 2003 - kukuk@suse.de + +- nptl: Fix prototype in configure script +- nptl: Use -fno-unit-at-a-time +- locale: Add nb_NO + +------------------------------------------------------------------- +Fri Oct 17 16:56:58 CEST 2003 - kukuk@suse.de + +- Increase timeout for make check on overloaded architectures + +------------------------------------------------------------------- +Thu Oct 16 18:19:13 CEST 2003 - kukuk@suse.de + +- Fix building as normal user + +------------------------------------------------------------------- +Wed Oct 15 16:31:32 CEST 2003 - kukuk@suse.de + +- Fix putpwent/putgrent +- Make build as normal user + +------------------------------------------------------------------- +Tue Oct 14 21:13:25 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031014 + +------------------------------------------------------------------- +Tue Oct 14 13:26:06 CEST 2003 - aj@suse.de + +- Fix w_acosf for AMD64. + +------------------------------------------------------------------- +Tue Oct 14 10:49:36 CEST 2003 - kukuk@suse.de + +- Fix asm-sparc/kbio.h to compile kbdrate/X11 + +------------------------------------------------------------------- +Mon Oct 13 12:11:53 CEST 2003 - kukuk@suse.de + +- Update to kernel header files from 2.6.0-test7 + +------------------------------------------------------------------- +Fri Oct 10 17:11:01 CEST 2003 - schwab@suse.de + +- Fix misnamed syscalls. + +------------------------------------------------------------------- +Tue Oct 7 21:13:09 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031007 + +------------------------------------------------------------------- +Fri Oct 3 09:12:38 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20031003 +- Fix kernel ioctl header files for PPC/PPC64 +- Removed dl-reloc.c fix, merged upstream + +------------------------------------------------------------------- +Wed Oct 1 16:49:19 CEST 2003 - kukuk@suse.de + +- Update to glibc cvs from 20031001 +- Remove sysmacros.h fix, merged upstream +- Add dl-reloc.c fix for compiler warnings + +------------------------------------------------------------------- +Mon Sep 29 11:49:19 CEST 2003 - kukuk@suse.de + +- Update kernel-headers to 2.6.0-test6 +- Fix sysmacros.h to compile with -ansi + +------------------------------------------------------------------- +Sat Sep 27 20:58:07 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030927 +- Remove SO_BSDCOMPAT (obsoleted by kernel) +- Make _IOC_TYPECHECK useable for userland programs + +------------------------------------------------------------------- +Fri Sep 26 10:01:15 CEST 2003 - kukuk@suse.de + +- Remove obsolete patches +- Update to crypt_blowfish 0.4.5 + +------------------------------------------------------------------- +Fri Sep 26 08:51:10 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030926 +- Update to nptl 0.60 + +------------------------------------------------------------------- +Sat Sep 20 21:13:04 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030920 +- Update to nptl 0.59 + +------------------------------------------------------------------- +Wed Sep 17 12:13:35 CEST 2003 - kukuk@suse.de + +- Disable TLS for i586 glibc [Bug #31034] + +------------------------------------------------------------------- +Tue Sep 16 15:38:19 CEST 2003 - kukuk@suse.de + +- Remove db1.85 + +------------------------------------------------------------------- +Mon Sep 15 21:30:51 CEST 2003 - kukuk@suse.de + +- Update to glibc CVS from 20030915 + +------------------------------------------------------------------- +Mon Sep 15 18:43:19 CEST 2003 - kukuk@suse.de + +- Update to kernel 2.6.0-test5 header files + +------------------------------------------------------------------- +Sat Sep 13 07:01:40 CEST 2003 - kukuk@suse.de + +- Add librtkaio, a librt using kernel aio + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Remove patches which are merged in CVS +- Update to nptl-0.58 +- Remove _POSIX_VERSION hack + +------------------------------------------------------------------- +Thu Sep 11 16:59:49 CEST 2003 - kukuk@suse.de + +- version.h: Fix comment how to compile kernel modules + +------------------------------------------------------------------- +Wed Sep 10 19:27:05 CEST 2003 - aj@suse.de + +- Install en_US.ISO-8859-15 under this name [#30373]. + +------------------------------------------------------------------- +Tue Sep 9 14:22:02 CEST 2003 - aj@suse.de + +- Fix last patch. + +------------------------------------------------------------------- +Mon Sep 8 18:20:56 CEST 2003 - aj@suse.de + +- Fix setting up of user signal handler in linuxthreads on x86_64. + +------------------------------------------------------------------- +Fri Sep 5 13:44:13 CEST 2003 - kukuk@suse.de + +- Add dl-tls.c to fix out of memory with static TLS errors + +------------------------------------------------------------------- +Wed Sep 3 21:03:13 CEST 2003 - kukuk@suse.de + +- Update glibc-linuxthreads +- Set _POSIX_VERSION back to 199209 + +------------------------------------------------------------------- +Mon Sep 1 18:23:49 CEST 2003 - kukuk@suse.de + +- Fix typo in nss_compat patch + +------------------------------------------------------------------- +Mon Sep 1 09:13:14 CEST 2003 - kukuk@suse.de + +- Add opendir fix for usage with NPTL +- Fix getspnam/getspent in nss_compat [Bug #29689] +- Set _POSIX2_VERSION back to 199209 + +------------------------------------------------------------------- +Wed Aug 27 15:22:40 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 25 09:35:41 CEST 2003 - kukuk@suse.de + +- Update to current CVS version + +------------------------------------------------------------------- +Mon Aug 18 21:17:25 CEST 2003 - aj@suse.de + +- increase stack size for linuxthreads/set-context. + +------------------------------------------------------------------ +Mon Aug 18 13:23:00 CEST 2003 - aj@suse.de + +- Fix mathinline.h for i386 to compile under C++ without warnings. + +------------------------------------------------------------------- +Sun Aug 17 09:59:25 CEST 2003 - ro@suse.de + +- kernel-headers.dif: don't include device.h from videodev.h + +------------------------------------------------------------------- +Fri Aug 15 10:39:49 CEST 2003 - kukuk@suse.de + +- Update to current cvs (fixes assert usage in C++ source code) + +------------------------------------------------------------------- +Thu Aug 14 10:34:27 CEST 2003 - kukuk@suse.de + +- Initialize fp->_mode for glibc 2.0 compatibility [Bug #28386] +- On i686, include glibc with and without floating stack enabled +- Update to current cvs +- Update to nptl 0.56 + +------------------------------------------------------------------- +Thu Jul 31 16:57:36 CEST 2003 - kukuk@suse.de + +- Reenable new quota.h + +------------------------------------------------------------------- +Wed Jul 30 09:59:21 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test2 +- Disable sys/quota.h update +- Enable TLS on AMD64 again + +------------------------------------------------------------------- +Mon Jul 28 17:18:33 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Disable TLS on AMD64 temporary +- Update sys/quota.h to match new kernel implementation + +------------------------------------------------------------------- +Fri Jul 25 10:14:44 CEST 2003 - kukuk@suse.de + +- Update to current cvs +- Update kernel headers to 2.6.0-test1 +- Update to nptl 0.55 +- Change minimal symbol version on PPC64 back to 2.2.5 + +------------------------------------------------------------------- +Wed Jul 23 18:13:40 CEST 2003 - meissner@suse.de + +- Fixed systemcall clobber lists for asm-ppc/unistd.h (by just + merging over the asm-ppc64 things). + +------------------------------------------------------------------- +Wed Jul 23 12:59:04 CEST 2003 - aj@suse.de + +- Handle in ldconfig konqueror.so and other similar KDE hacks that fail without + rpath. +- Fix bugs exposed by unit-at-a-time option. + +------------------------------------------------------------------- +Fri Jul 18 07:27:47 CEST 2003 - aj@suse.de + +- Fix compilation with unit-at-a-time enabled compiler. +- Enlarge stack for tst-setcontext test. + +------------------------------------------------------------------- +Mon Jun 30 13:09:25 CEST 2003 - kukuk@suse.de + +- Update to current CVS (includes if_arp.h and nss_compat changes) +- Update to nptl 0.50 +- Kernel header fixes for userland inclusion + +------------------------------------------------------------------- +Wed Jun 25 09:34:17 CEST 2003 - kukuk@suse.de + +- Update to current CVS +- Add target host and CVS checkout to glibc version printout +- Adjust fnmatch fix +- Update kernel headers to 2.5.73 + +------------------------------------------------------------------- +Tue Jun 24 23:09:11 CEST 2003 - kukuk@suse.de + +- Fix typos in syscalls.list on Alpha + +------------------------------------------------------------------- +Mon Jun 23 10:53:41 CEST 2003 - kukuk@suse.de + +- fix typo in linuxthreads on SPARC +- Update to current CVS +- Update to nptl 0.48 + +------------------------------------------------------------------- +Thu Jun 19 11:10:55 CEST 2003 - kukuk@suse.de + +- Disable nss_compat patch again + +------------------------------------------------------------------- +Wed Jun 18 10:51:07 CEST 2003 - kukuk@suse.de + +- Fix reading of locale.alias file +- Update to current CVS snapshot +- Update to nptl 0.47 +- Some kernel header file fixes for PPC64/IA64 +- Update nss_compat patch + +------------------------------------------------------------------- +Thu Jun 12 23:42:09 CEST 2003 - kukuk@suse.de + +- Update to current CVS snapshot +- Finish patch for printing linker warning + +------------------------------------------------------------------- +Wed Jun 11 11:45:42 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.45 +- Update to current CVS snapshot +- Add patch to print linker warning, if a static binary calls + functions using NSS + +------------------------------------------------------------------- +Tue Jun 10 16:46:47 CEST 2003 - kukuk@suse.de + +- Use %find_lang macro and cleanup glibc-locale filelist + +------------------------------------------------------------------- +Thu Jun 5 17:28:36 CEST 2003 - kukuk@suse.de + +- Complete mathinline.h fixes + +------------------------------------------------------------------- +Thu Jun 5 10:10:02 CEST 2003 - kukuk@suse.de + +- linux/compiler.h: Define all inline variants to __inline__ + +------------------------------------------------------------------- +Wed Jun 4 14:29:07 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.43 +- More kernel header fixes +- Make --no-archive default for localedef + +------------------------------------------------------------------- +Tue May 27 14:09:31 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.40 +- Disable nss_compat patch +- Update to kernel headers from 2.5.70 + +------------------------------------------------------------------- +Fri May 23 10:50:37 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patches to make nss_compat work with every service + +------------------------------------------------------------------- +Mon May 19 10:57:13 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Add patch for better binary compatibility (errno, h_errno) + +------------------------------------------------------------------- +Fri May 16 09:32:39 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Update to nptl 0.39 +- Add URL tag +- asm-i386/byteorder.h: fix asm vs. __asm__ + +------------------------------------------------------------------- +Wed May 14 22:31:52 CEST 2003 - schwab@suse.de + +- Fix missing syscall numbers on ia64. + +------------------------------------------------------------------- +Wed May 14 08:59:09 CEST 2003 - kukuk@suse.de + +- More kernel headers fixes for i386, ia64, ppc and s390 + +------------------------------------------------------------------- +Mon May 12 16:49:51 CEST 2003 - kukuk@suse.de + +- Update to current glibc CVS snapshot +- Fix lot of more kernel headers +- Adjust netinet/igmp.h patch +- Copy linux/version.h in place before compiling glibc + +------------------------------------------------------------------- +Fri May 9 13:25:08 CEST 2003 - kukuk@suse.de + +- Fix bits/stdio.h +- Fix lot of kernel headers to work in userspace +- Fix netinet/igmp.h +- Enable TLS on PPC + +------------------------------------------------------------------- +Wed May 7 10:58:25 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot +- Enable TLS on IA64 +- Update to nptl 0.37 +- Update kernel-headers to 2.5.69 + +------------------------------------------------------------------- +Thu Apr 24 12:20:23 CEST 2003 - ro@suse.de + +- fix install_info --delete call and move from preun to postun + +------------------------------------------------------------------- +Fri Apr 11 06:32:25 CEST 2003 - aj@suse.de + +- Do not build locales in parallel. + +------------------------------------------------------------------- +Tue Apr 8 16:12:36 CEST 2003 - kukuk@suse.de + +- Disable TLS for PPC + +------------------------------------------------------------------- +Mon Apr 7 14:16:03 CEST 2003 - kukuk@suse.de + +- Update CVS snapshot + +------------------------------------------------------------------- +Sat Apr 5 09:55:15 CEST 2003 - kukuk@suse.de + +- Disable TLS for ia64 +- Update to nptl 0.34 +- Update to CVS snapshot + +------------------------------------------------------------------- +Fri Apr 4 16:23:39 CEST 2003 - kukuk@suse.de + +- Remove libNoVersion from filelist on alpha +- Add nptl docu + +------------------------------------------------------------------- +Fri Apr 4 10:23:35 CEST 2003 - kukuk@suse.de + +- Update to nptl 0.33 +- Run ldconfig after installation +- Update to CVS snapshot + +------------------------------------------------------------------- +Sat Mar 29 17:47:56 CET 2003 - kukuk@suse.de + +- Update to CVS snapshot +- Add USAGI patches for kernel-headers +- Add nptl on i686 +- Enable --with-tls +- Implement NI_NUMSERICSCOPE for getnameinfo +- Implement AI_V4MAPPED/AI_ALL for getaddrinfo +- Implement AI_ADDRCONFIG for getaddrinfo +- Add USAGI patch for kernel headers + +------------------------------------------------------------------- +Mon Mar 24 21:46:45 CET 2003 - schwab@suse.de + +- Sanitize . + +------------------------------------------------------------------- +Mon Mar 17 08:45:27 CET 2003 - aj@suse.de + +- Fix tst-aio7 testcase and enable it again. +- Enable %fs for x86-64. +- Install en_US.ISO-8859-15 for libstdc++. +- Fix bits/syscalls.h for x86-64. + +------------------------------------------------------------------- +Thu Mar 13 10:36:24 CET 2003 - kukuk@suse.de + +- Revert tcgetattr change [Bug #25173/#25174] + +------------------------------------------------------------------- +Tue Mar 4 15:15:33 CET 2003 - aj@suse.de + +- Fix lround/lrint functions. + +------------------------------------------------------------------- +Sat Mar 1 07:24:22 CET 2003 - aj@suse.de + +- Update to 2.3.2 release. + +------------------------------------------------------------------- +Wed Feb 26 21:45:36 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (fixes OOo and mysql problems) + +------------------------------------------------------------------- +Mon Feb 24 17:52:02 CET 2003 - kukuk@suse.de + +- Disable aio7 test on s390(x), too. + +------------------------------------------------------------------- +Mon Feb 24 14:19:20 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot (post 2.3.2-pre1) +- Remove glibc-2.3-ppc32-textrel.patch, is included in CVS +- Remove libc23-ppc64-cvshead20021210.patch + +------------------------------------------------------------------- +Thu Feb 20 16:19:21 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot +- Remove glibc-2.3-ppc64-vfork-20030214.patch, seems to be + included already. + +------------------------------------------------------------------- +Wed Feb 19 11:45:35 CET 2003 - olh@suse.de + +- add glibc-2.3-ppc32-textrel.patch + glibc-2.3-ppc64-vfork-20030214.patch + +------------------------------------------------------------------- +Fri Feb 14 14:51:11 CET 2003 - kukuk@suse.de + +- Extend getent to print all IP addresses of one host + +------------------------------------------------------------------- +Thu Feb 13 18:34:50 CET 2003 - kukuk@suse.de + +- Update to current snapshot + +------------------------------------------------------------------- +Wed Feb 12 11:50:54 CET 2003 - kukuk@suse.de + +- Update to current snapshot (contains official fix for #23513) + +------------------------------------------------------------------- +Tue Feb 11 15:28:16 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Fix corruption of internal data in gethostbyname2 [Bug #23513] + +------------------------------------------------------------------- +Sun Feb 9 12:20:55 CET 2003 - aj@suse.de + +- Fix cancellation of system calls on x86-64. + +------------------------------------------------------------------- +Sat Feb 8 10:43:02 CET 2003 - kukuk@suse.de + +- Fix wrong logic in dynamic resolv.conf patch + +------------------------------------------------------------------- +Fri Feb 7 17:35:12 CET 2003 - kukuk@suse.de + +- Fix access of _res symbol in multithreaded programs +- Add "dynamic resolv.conf" patch to libnss_dns, too. +- Remove obsolete db2 manual pages +- Update to current snapshot (fixes [Bug #23363]) + +------------------------------------------------------------------- +Thu Feb 6 18:06:36 CET 2003 - kukuk@suse.de + +- Update to current snapshot +- Use install-info for info pages + +------------------------------------------------------------------- +Tue Feb 4 20:12:51 CET 2003 - schwab@suse.de + +- Fix regexp parsing. + +------------------------------------------------------------------- +Mon Feb 3 14:44:21 CET 2003 - meissner@suse.de + +- Merged a unistd.h gcc3.3 compliance patch from Franz Sirl for + ppc and ppc64 kernel headers. + +------------------------------------------------------------------- +Fri Jan 31 22:12:03 CET 2003 - schwab@suse.de + +- Fix building on s390[x]. + +------------------------------------------------------------------- +Fri Jan 31 15:20:00 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs + +------------------------------------------------------------------- +Thu Jan 30 16:05:32 CET 2003 - aj@suse.de + +- Fix one build problem on sparc. +- Fix asm-x86_64/mtrr.h. + +------------------------------------------------------------------- +Wed Jan 29 12:57:23 CET 2003 - kukuk@suse.de + +- Update to current glibc cvs +- Fix libm-ulps for x86-64 and ia64 + +------------------------------------------------------------------- +Thu Jan 23 16:47:33 CET 2003 - schwab@suse.de + +- Fix use of DT_FINI_ARRAY. +- Temporarily disable tst-aio7 test on ia64. + +------------------------------------------------------------------- +Tue Jan 14 22:41:33 CET 2003 - schwab@suse.de + +- Fix ia64 for non-tls build. + +------------------------------------------------------------------- +Tue Jan 14 21:51:24 CET 2003 - aj@suse.de + +- Package libpthread_nonshared.a. + +------------------------------------------------------------------- +Mon Jan 13 10:29:36 CET 2003 - kukuk@suse.de + +- Add fixed version of x86-64-linuxthreads-disable-fs.diff +- Readd parts of libm-x86-64.diff +- Update to current cvs snapshot +- Add fix for errno compatibility +- Add s390(x) vfork fixes + +------------------------------------------------------------------- +Sun Jan 12 19:16:13 CET 2003 - kukuk@suse.de + +- Update to current cvs snapshot + +------------------------------------------------------------------- +Fri Jan 3 19:09:36 CET 2003 - bg@suse.de + +- removed obsolete patch for hppa + +------------------------------------------------------------------- +Fri Dec 20 23:15:48 CET 2002 - kukuk@suse.de + +- Update to current cvs snapshot +- Obsoletes glibc-2.3-setjmp-ppc64.diff +- Obsoletes build-alpha.diff +- Obsoletes libm-x86-64.diff +- Disable activate-spinlocks.diff temporary +- Disable x86-64-linuxthreads-disable-fs.diff (breaks compilation) + +------------------------------------------------------------------- +Tue Dec 17 16:01:13 CET 2002 - olh@suse.de + +- remove glibc-2.2.5-ppc64-bits-socket_h.diff + add glibc-2.3-setjmp-ppc64.diff + add libc23-ppc64-cvshead20021210.patch + dont run configure in subshell, it can fail and rpm cant catch it + +------------------------------------------------------------------- +Fri Dec 13 20:01:30 CET 2002 - schwab@suse.de + +- Add more ia64 syscalls. + +------------------------------------------------------------------- +Fri Dec 6 22:06:41 CET 2002 - olh@suse.de + +- build also the locals parallel + do not fail with parallel calculation on lowmem systems + +------------------------------------------------------------------- +Tue Dec 3 11:16:30 CET 2002 - aj@suse.de + +- Build parallel on x86-64. +- Activate fast spinlocks in malloc for x86 and x86-64. +- Integrate new math library from AMD for x86-64. + +------------------------------------------------------------------- +Fri Nov 29 11:08:03 CET 2002 - bg@suse.de + +- Fix build on hppa. + +------------------------------------------------------------------- +Thu Nov 28 21:31:09 CET 2002 - aj@suse.de + +- Fix build on alpha. + +------------------------------------------------------------------- +Thu Nov 28 15:45:09 CET 2002 - aj@suse.de + +- Update to CVS version from 2002-11-28. +- Do not use %fs for threads for now on x86-64. +- Fix fnmatch bug with multibyte strings. + +------------------------------------------------------------------- +Tue Nov 12 12:41:17 CET 2002 - bg@suse.de + +- Updated hppa patches + +------------------------------------------------------------------- +Thu Nov 7 14:00:04 CET 2002 - kukuk@suse.de + +- getaddrinfo(): get host information for AF_INET and AF_INET6 only + from the same service [Bug #21237] + +------------------------------------------------------------------- +Thu Nov 7 12:11:29 CET 2002 - bg@suse.de + +- Fix build of linuxthreads for hppa + +------------------------------------------------------------------- +Tue Nov 5 16:31:11 CET 2002 - bg@suse.de + +- Use current kernel-headers for parisc +- Add support for hppa + +------------------------------------------------------------------- +Tue Nov 5 15:29:32 CET 2002 - kukuk@suse.de + +- Update to current CVS snapshot + +------------------------------------------------------------------- +Tue Oct 22 16:21:34 CEST 2002 - schwab@suse.de + +- Fix ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Oct 21 17:20:04 CEST 2002 - schwab@suse.de + +- Fix alignment in locale-archive. + +------------------------------------------------------------------- +Mon Oct 21 17:16:51 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021021 +- Remove nss_dns6 patch + +------------------------------------------------------------------- +Tue Oct 15 14:58:34 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3.1 cvs 20021015 + +------------------------------------------------------------------- +Wed Oct 2 14:06:31 CEST 2002 - kukuk@suse.de + +- Update to glibc 2.3 cvs 20021002 +- Update crypt_blowfish to 0.4.4 (manual page fix, hppa fix) + +------------------------------------------------------------------- +Wed Sep 25 11:43:08 CEST 2002 - mls@suse.de + +- build with -finline-limit=2000 on mips/armv4l + +------------------------------------------------------------------- +Tue Sep 17 14:54:26 CEST 2002 - schwab@suse.de + +- Add new ia64 syscall numbers. + +------------------------------------------------------------------- +Mon Sep 16 17:24:01 CEST 2002 - meissner@suse.de + +- Added AIO syscall numbers for ppc/ppc64, so libaio does not need them. +- Aligned powerpc bits/sem.h to be the same as the other 64bit + archs, keeping the 32bit layout. +- Added the faster ppc32 memset.S from glibc HEAD on request of IBM. + +------------------------------------------------------------------- +Thu Sep 12 15:56:07 CEST 2002 - meissner@suse.de + +- ppc/ppc64: added more biarch things to the SystemV IPC headers + which are needed to get 64bit ipc / IPC_STAT to work. + +------------------------------------------------------------------- +Mon Sep 9 18:52:53 CEST 2002 - bk@suse.de + +- s390x-biarch: use correct wordsize.h(move to main 32/64 directory) +- s390x: requires 64-bit kernel + +------------------------------------------------------------------- +Mon Sep 9 15:40:23 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET in libnss_dns, too + +------------------------------------------------------------------- +Mon Sep 9 14:31:04 CEST 2002 - uli@suse.de + +- all architectures are created equal, but some are more equal + than others; increased DB_FILE_ID_LEN in DB2 to 24 on x86-64, + ia64, s390x and ppc64 to fit 64 bit __ino_t type + +------------------------------------------------------------------- +Fri Sep 6 17:26:53 MEST 2002 - mls@suse.de + +- fix squeeze bug in db-1.85: set dirty flag after page modification + +------------------------------------------------------------------- +Fri Sep 6 15:44:17 CEST 2002 - kukuk@suse.de + +- Increase minimum value of MAXPACKET + +------------------------------------------------------------------- +Mon Sep 2 10:38:40 CEST 2002 - kukuk@suse.de + +- Fix asm header files for sparc/sparc64 + +------------------------------------------------------------------- +Fri Aug 30 13:18:51 CEST 2002 - aj@suse.de + +- Revert linuxthreads for x86-64 for now. + +------------------------------------------------------------------- +Wed Aug 28 16:15:18 CEST 2002 - aj@suse.de + +- Add optimized math routines for x86-64. + +------------------------------------------------------------------- +Tue Aug 27 15:52:49 CEST 2002 - olh@suse.de + +- BuildFlags="$(echo $RPM_OPT_FLAGS | sed 's#-mminimal-toc##')" + +------------------------------------------------------------------- +Mon Aug 26 21:56:22 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5_sunrpc-fix.patch + * sysdeps/unix/sysv/linux/powerpc/bits/socket.h: New file that adds + __powerpc64__ specific fields and adjust size/alignment for 64-bit. + +------------------------------------------------------------------- +Fri Aug 23 17:04:38 CEST 2002 - aj@suse.de + +- Use floating stacks for x86-64. +- Add LICENSE file. +- Fix profiling code on x86-64. +- Add strcspn, strpbrk and strspn optimizations for x86-64. +- Fix makecontext for x86-64. + +------------------------------------------------------------------- +Thu Aug 15 08:59:16 CEST 2002 - aj@suse.de + +- Use biarch headers already for building so that bits/syscalls.h is + build correctly. +- Fix bits/syscalls.h for x86-64. +- Remove *xattr patches. + +------------------------------------------------------------------- +Thu Aug 8 16:59:27 CEST 2002 - kukuk@suse.de + +- Update to current cvs (calloc variable overflow fixed) +- Apply fix for calloc fix +- Add *xattr system calls and error number + +------------------------------------------------------------------- +Tue Aug 6 12:45:06 CEST 2002 - kukuk@suse.de + +- Update to current cvs (IPv6 fixes) + +------------------------------------------------------------------- +Mon Aug 5 12:29:59 CEST 2002 - aj@suse.de + +- Implement *context functions for x86-64. + +------------------------------------------------------------------- +Sat Aug 3 16:01:07 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to version 2.4.19 +- Add PreRequires "filesystem". + +------------------------------------------------------------------- +Thu Aug 1 18:23:37 CEST 2002 - bk@suse.de + +- added s390-may2002.diff with some chunks from may2002 drop +- give make check a second chance on s390(x), but fail if not(race) + +------------------------------------------------------------------- +Tue Jul 30 11:40:41 CEST 2002 - kukuk@suse.de + +- sunrpc/xdr_array.c: Check for variable overflow +- Ignore failed make check on s390(x) + +------------------------------------------------------------------- +Tue Jul 30 08:31:24 CEST 2002 - aj@suse.de + +- Add optimisations for x86-64. + +------------------------------------------------------------------- +Mon Jul 29 09:38:04 CEST 2002 - kukuk@suse.de + +- Don't allocate/free category name in setlocale() unnecessarily + (for IBM Java [Bug #17065]). + +------------------------------------------------------------------- +Tue Jul 23 13:36:31 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs (pread/pwrite fixes) +- Remove extra de.po, is in official tarball now. + +------------------------------------------------------------------- +Sat Jul 20 07:14:26 CEST 2002 - aj@suse.de + +- Fix profiling for x86-64. + +------------------------------------------------------------------- +Fri Jul 19 16:26:26 CEST 2002 - meissner@suse.de + +- Fixed the PPC64 patch, several superflous files removed. +- Reenabled make check for ppc64. + +------------------------------------------------------------------- +Wed Jul 17 14:13:58 CEST 2002 - kukuk@suse.de + +- Update to current glibc cvs +- Fix kernel headers for s390/s390x +- Move some binaries/shell scripts and manual pages to the + correct subpackage + +------------------------------------------------------------------- +Tue Jul 16 14:51:48 CEST 2002 - meissner@suse.de + +- Merged latest PowerPC patch from IBM. + * Lots of ppc64 related fixes. + * Start of biarch support. + * Changed struct stat in 64bit ABI. + +------------------------------------------------------------------- +Fri Jul 12 18:29:17 CEST 2002 - aj@suse.de + +- Add biarch patch for s390 and s390x. + +------------------------------------------------------------------- +Mon Jul 8 10:45:49 CEST 2002 - aj@suse.de + +- Add some optimized x86-64 math routines and a fixed lgammal + implementation. +- Testsuite on x86-64 should pass now. +- Run ldconfig in postinstall. +- Fix memleak in catgets. + +------------------------------------------------------------------- +Sat Jul 6 13:38:48 CEST 2002 - kukuk@suse.de + +- Fix typo in create_biarch_asm.sh (asm-sparc path) + +------------------------------------------------------------------- +Thu Jul 4 21:59:43 CEST 2002 - kukuk@suse.de + +- Fix typo in manpages/Makefile +- Fix filelist (on some archs ld-linux.so.2 was missing) + +------------------------------------------------------------------- +Thu Jul 4 10:02:46 CEST 2002 - kukuk@suse.de + +- Revert mktime patch (check for year < 70) +- Replace ifarch i386 with ix86 +- Add patch for arm +- Include pt_chown again + +------------------------------------------------------------------- +Wed Jul 3 16:05:05 CEST 2002 - kukuk@suse.de + +- Add more new manual pages +- Fix spec file (renaming of ld-*, creating of include/asm header + files) +- Update to current CVS version +- Fix kernel-headers for x86-64 (don't overwrite patched version) +- Rename Equador -> Ecuador [Bug #16648] +- Add hint about security problem of host caching with nscd to + config file. + +------------------------------------------------------------------- +Tue Jun 25 14:29:14 CEST 2002 - aj@suse.de + +- Fix dl-machine.h for x86-64 to compile with new binutils. +- Fix mtrr.h header for x86-64. +- Do not package pt_chown. + +------------------------------------------------------------------- +Tue Jun 18 14:28:40 CEST 2002 - sf@suse.de + +- reverted changes from Tue Jun 11 10:04:55 CEST 2002 + (took the kernel-headers from before, readded patch9) +- add new archive with kernel-headers for x86_64 +- add autofs patch + +------------------------------------------------------------------- +Mon Jun 17 17:12:39 CEST 2002 - bk@suse.de + +- remove s390* from the list of archs that ignore check fail + +------------------------------------------------------------------- +Thu Jun 13 20:38:00 CEST 2002 - uli@suse.de + +- fixed typos in spec + +------------------------------------------------------------------- +Thu Jun 13 13:35:43 CEST 2002 - schwab@suse.de + +- Fix ssize_t and __ipc_pid_t for ppc64. + +------------------------------------------------------------------- +Wed Jun 12 09:47:12 CEST 2002 - uli@suse.de + +- fix errlist.c for ARM as well + +------------------------------------------------------------------- +Tue Jun 11 10:04:55 CEST 2002 - sf@suse.de + +- made new kernel-header archive from kernel-source +- added asm-ppc64 to kernel-headers +- removed patch9 as it is obsoleted by the new kernel-headers + +------------------------------------------------------------------- +Fri Jun 7 14:29:30 CEST 2002 - olh@suse.de + +- update asm-ppc64/ioctls.h, missing TIOCGDEV + +------------------------------------------------------------------- +Thu Jun 6 17:57:41 CEST 2002 - olh@suse.de + +- fix glibc-ppc64 patch + +------------------------------------------------------------------- +Thu Jun 6 15:09:16 CEST 2002 - olh@suse.de + +- update ppc64_glibc_ldconfig.diff + +------------------------------------------------------------------- +Thu Jun 6 10:09:24 CEST 2002 - ke@suse.de + +- Update de.po from + http://www.iro.umontreal.ca/contrib/po/teams/PO/de/libc-2.2.5.de.po. +- Use only translated entries to make the testsuite happy; call + msgattrib on de.po and hu.po [# 16438]. + +------------------------------------------------------------------- +Mon Jun 3 09:58:54 CEST 2002 - aj@suse.de + +- Clean up generation of asm includes for bi-arch systems. +- Enable profiling for x86-64. + +------------------------------------------------------------------- +Mon Jun 3 08:52:38 CEST 2002 - kukuk@suse.de + +- Add fix for weak declaration "_old_sys_nerr" +- Remove already disabled alpha patch +- Update to current CVS + +------------------------------------------------------------------- +Sat Jun 1 10:54:41 CEST 2002 - olh@suse.de + +- fix stat for real, wrong size for st_nlink + +------------------------------------------------------------------- +Wed May 29 18:24:57 CEST 2002 - olh@suse.de + +- add ppc64_glibc_2.2.5-types.diff, fixes stat() + +------------------------------------------------------------------- +Wed May 29 10:38:34 CEST 2002 - olh@suse.de + +- add ppc64_glibc_ldconfig.diff for elf32/elf64 coexistance + +------------------------------------------------------------------- +Thu May 23 08:32:00 MEST 2002 - aj@suse.de + +- Rename __thread to fix problems with GCC 3.2. + +------------------------------------------------------------------- +Mon May 20 11:37:42 CEST 2002 - olh@suse.de + +- add ppc64 kernel headers + add create_ppc_asm.sh + update ppc64 patch, use /lib64/ld64.so.1 + move generic syscalls.list to ppc64/32 + set/getrlimit GLIBC2.0 is ppc32 only + use parallel make on ppc and ppc64 + do not chroot as user + cleanup nested ifarch for dynamic linker + +------------------------------------------------------------------- +Wed May 15 10:25:45 CEST 2002 - aj@suse.de + +- Fix building of linuxthreads with current GCC. + +------------------------------------------------------------------- +Mon May 13 10:04:37 CEST 2002 - olh@suse.de + +- fix ppc64 RTLDLIST ld64.so rewrite + +------------------------------------------------------------------- +Sat May 11 02:09:06 CEST 2002 - schwab@suse.de + +- Add div/mod compatibility functions for ia64. + +------------------------------------------------------------------- +Fri May 10 13:56:59 CEST 2002 - olh@suse.de + +- add ppc64 support + +------------------------------------------------------------------- +Thu May 9 10:06:19 CEST 2002 - aj@suse.de + +- Add sys/io.h for x86-64. + +------------------------------------------------------------------- +Mon May 6 18:12:51 CEST 2002 - ihno@suse.de + +- corrected memory calculation for parallel build + +------------------------------------------------------------------- +Fri May 3 16:28:23 CEST 2002 - kukuk@suse.de + +- Add fix to compile math.h on SPARC with g++ + +------------------------------------------------------------------- +Thu May 2 11:29:29 CEST 2002 - kukuk@suse.de + +- Update to current CVS 2.2 branch +- Add x86-64 fix for crti.o and /usr/lib64 with libpthread + +------------------------------------------------------------------- +Fri Apr 26 16:51:48 CEST 2002 - kukuk@suse.de + +- define sqrtl alias for PowerPC + +------------------------------------------------------------------- +Mon Apr 22 07:56:00 CEST 2002 - aj@suse.de + +- Fix vfork for x86-64. +- Fix handling of ld.so.cache for x86-64. + +------------------------------------------------------------------- +Thu Apr 18 09:16:58 CEST 2002 - aj@suse.de + +- Allow testsuite to fail for x86-64. +- Add ULPs for x86-64. + +------------------------------------------------------------------- +Wed Apr 17 16:36:51 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (mktime and dl fixes) +- Update hu.po +- Do not build a profiled glibc for x86-64 + +------------------------------------------------------------------- +Fri Apr 12 10:33:31 CEST 2002 - kukuk@suse.de + +- Update to current snapshot (fix SPARC compile) +- Revert do-lookup.h patch on Alpha (does not work here) + +------------------------------------------------------------------- +Wed Apr 10 15:09:33 CEST 2002 - aj@suse.de + +- Fix linuxthreads for x86-64. + +------------------------------------------------------------------- +Wed Apr 10 13:02:48 CEST 2002 - aj@suse.de + +- Add x86-64.diff to fix glob64. + +------------------------------------------------------------------- +Wed Apr 10 10:26:22 CEST 2002 - kukuk@suse.de + +- Update kernel-headers to 2.4.19pre4 (with x86-64 support) +- Update glibc to current cvs snapshot +- Allow old currencies (before EUR) + +------------------------------------------------------------------- +Tue Apr 2 15:58:49 CEST 2002 - aj@suse.de + +- Update ULPs. + +------------------------------------------------------------------- +Thu Mar 21 16:18:58 CET 2002 - kukuk@suse.de + +- Create html pages after installation of info pages [Bug #15283] + +------------------------------------------------------------------- +Tue Mar 12 16:09:51 CET 2002 - kukuk@suse.de + +- Add db1 fix if blocksize is not ^2 + +------------------------------------------------------------------- +Sat Mar 2 18:18:15 CET 2002 - kukuk@suse.de + +- Add fix for format string bug + +------------------------------------------------------------------- +Sat Mar 2 10:44:31 CET 2002 - kukuk@suse.de + +- Fix return value of nice wrapper + +------------------------------------------------------------------- +Fri Mar 1 14:33:09 CET 2002 - kukuk@suse.de + +- Add fix for corrupt ut_line +- Add fix for current gcc 3.1 +- Add patch for nice return values + +------------------------------------------------------------------- +Thu Feb 28 14:53:42 CET 2002 - kukuk@suse.de + +- Add fix for rtime, swscanf and ia64 + +------------------------------------------------------------------- +Mon Feb 18 13:22:05 CET 2002 - kukuk@suse.de + +- When a dlopened module references a weak symbol from another + dlopened module (loaded with RTLD_GLOBAL) no dependency was + generated for this fact, so the second module was unloaded even + if the first one was still around. + +------------------------------------------------------------------- +Sun Feb 17 10:51:53 CET 2002 - kukuk@suse.de + +- Add pthread/signal bugfix [Bug #13280] +- Fix directory file list (don't include /usr/include) + +------------------------------------------------------------------- +Thu Feb 14 19:46:04 CET 2002 - kukuk@suse.de + +- Use defattr in spec file to avoid problems with not existing + UIDs and rpm. + +------------------------------------------------------------------- +Thu Feb 14 13:22:13 CET 2002 - aj@suse.de + +- Update ULPs for GCC 3.1. + +------------------------------------------------------------------- +Wed Feb 13 16:03:20 CET 2002 - kukuk@suse.de + +- Apply db1 patch from mls@suse.de to fix rpm problems + +------------------------------------------------------------------- +Tue Feb 12 02:01:42 CET 2002 - ro@suse.de + +- fix owner/group for kernel headers + +------------------------------------------------------------------- +Mon Feb 11 15:17:18 CET 2002 - kukuk@suse.de + +- Add another solution for the glob problem + +------------------------------------------------------------------- +Thu Feb 7 16:20:49 CET 2002 - kukuk@suse.de + +- Add fix for glob (glob should not call globfree) +- Add fix for innetgr + +------------------------------------------------------------------- +Wed Feb 6 22:01:29 CET 2002 - kukuk@suse.de + +- Use correct BuildRoot + +------------------------------------------------------------------- +Wed Feb 6 16:40:49 CET 2002 - kukuk@suse.de + +- Update hu.po + +------------------------------------------------------------------- +Wed Feb 6 15:36:56 CET 2002 - kukuk@suse.de + +- Set LC_CTYPE for error messages in localedef [Bug #12878] + +------------------------------------------------------------------- +Mon Feb 4 14:26:48 CET 2002 - kukuk@suse.de + +- Add fixes from CVS: dynamic loader, readv and writev seg.fault + and various architecture fixes for alpha and mips +- Don't compile with -g on Alpha +- Add fix for possible endless loop fix + +------------------------------------------------------------------- +Fri Feb 1 15:58:41 CET 2002 - bk@suse.de + +- merged s390x lib64 patch and spec file changes + +------------------------------------------------------------------- +Wed Jan 23 15:39:02 CET 2002 - kukuk@suse.de + +- Split glibc into glibc and glibc-locale +- Create more UTF8 locale + +------------------------------------------------------------------- +Mon Jan 21 10:45:19 CET 2002 - kukuk@suse.de + +- Update to official glibc 2.2.5 + +------------------------------------------------------------------- +Wed Jan 16 18:29:33 CET 2002 - kukuk@suse.de + +- Remove /var/adm/setup/setup.timeconfig + +------------------------------------------------------------------- +Wed Jan 16 17:22:52 CET 2002 - kukuk@suse.de + +- Apply S390 fix + +------------------------------------------------------------------- +Wed Jan 9 15:33:49 CET 2002 - kukuk@suse.de + +- Update to glibc 2.2.5pre1 + +------------------------------------------------------------------- +Tue Jan 8 18:41:29 CET 2002 - egmont@suselinux.hu + +- Added partial Hungarian translation + +------------------------------------------------------------------- +Tue Jan 8 13:52:51 CET 2002 - kukuk@suse.de + +- Add patch to pass math tests with gcc 3.x +- Update to current CVS version + +------------------------------------------------------------------- +Thu Jan 3 18:05:48 CET 2002 - kukuk@suse.de + +- Update kernel header files to 2.4.17 + +------------------------------------------------------------------- +Tue Jan 1 10:55:34 CET 2002 - kukuk@suse.de + +- Update current CVS version, add final fixes for LSB test suite + +------------------------------------------------------------------- +Tue Dec 18 15:27:42 CET 2001 - poeml@suse.de + +- Install ja_JP.SJIS locale. + +------------------------------------------------------------------- +Sat Dec 15 15:27:12 CET 2001 - schwab@suse.de + +- Fix missing declaration of md5_uintptr. + +------------------------------------------------------------------- +Fri Dec 14 10:11:17 CET 2001 - kukuk@suse.de + +- Update to correct CVS branch + +------------------------------------------------------------------- +Thu Dec 13 14:50:25 CET 2001 - kukuk@suse.de + +- Update to current CVS +- Increase PATH_MAX to 4096 (including the leading zero) +- Clear pointer if asprintf fails +- pthread_key_delete should not contact thread manager before it + is created. + +------------------------------------------------------------------- +Tue Dec 11 22:35:07 CET 2001 - kukuk@suse.de + +- Fix prelink patch + +------------------------------------------------------------------- +Tue Dec 11 18:53:12 CET 2001 - kukuk@suse.de + +- Add fixes for LSB.os test suite (ftw, grantpt and ftok) +- Update to current CVS +- Add prelink patch + +------------------------------------------------------------------- +Fri Dec 7 19:16:30 CET 2001 - kukuk@suse.de + +- Merge with current CVS +- Add blowfish crypt + +------------------------------------------------------------------- +Fri Nov 23 11:55:14 CET 2001 - uli@suse.de + +- added armv4l arch to spec +- added arm kernel headers +- added trivial fix for dl-machine.h from CVS (see arm.dif) + +------------------------------------------------------------------- +Thu Nov 15 10:29:33 CET 2001 - adrian@suse.de + +- add mips architecture to spec file +- apply further mips fixes for ld +- activate %clean again + +------------------------------------------------------------------- +Sun Nov 11 12:12:03 CET 2001 - kukuk@suse.de + +- Fix lost permissions of shell script on SPARC + +------------------------------------------------------------------- +Thu Nov 8 18:40:33 CET 2001 - kukuk@suse.de + +- Add 32bit UID fixes + +------------------------------------------------------------------- +Thu Nov 8 11:47:21 CET 2001 - kukuk@suse.de + +- More fixes for asm-ia64 header files + +------------------------------------------------------------------- +Thu Nov 8 10:50:13 CET 2001 - kukuk@suse.de + +- Fix asm-i386/processor.h (don't align struct) +- Fix asm-ia64/bitops.h (define CMPXCHG_BUGCHECK) +- Correct version number in version.h + +------------------------------------------------------------------- +Wed Nov 7 14:07:21 CET 2001 - uli@suse.de + +- fixed sys/io.h, sysmacros.h for icc + +------------------------------------------------------------------- +Tue Nov 6 16:53:04 CET 2001 - kukuk@suse.de + +- Update kernel-headers to 2.4.14 + +------------------------------------------------------------------- +Thu Nov 1 11:34:56 CET 2001 - kukuk@suse.de + +- Use again old rules to generate html files + +------------------------------------------------------------------- +Sun Oct 21 22:55:24 CEST 2001 - schwab@suse.de + +- Fix inttypes.h for C++. + +------------------------------------------------------------------- +Fri Oct 19 13:31:53 CEST 2001 - aj@suse.de + +- Fix typo in inttypes.h that presents compilation by non-GCC compilers. + +------------------------------------------------------------------- +Tue Oct 16 10:56:52 CEST 2001 - aj@suse.de + +- Update elf.h to include x86-64 defines since those are needed + by some other tools. + +------------------------------------------------------------------- +Fri Sep 28 15:59:19 CEST 2001 - schwab@suse.de + +- Readd patch from 2001-09-10 with corrections. +- Add compatibility patch for GCC 3. This allows to build glibc + with GCC 3. +- Require that make check succeeds on ia64. + +------------------------------------------------------------------- +Thu Sep 13 15:58:31 CEST 2001 - aj@suse.de + +- Add a better version of the threads-fork patch that fixes some + more places where interrupts can occur and does this a bit cleaner. + +------------------------------------------------------------------- +Tue Sep 11 13:50:37 CEST 2001 - aj@suse.de + +- Remove patch from 2001-09-10 since it breaks the dynamic linker. + +------------------------------------------------------------------- +Tue Sep 11 10:51:11 CEST 2001 - aj@suse.de + +- Fix bug in linuxthreads where manager and threads could + get out of synch due to an interrupted read call. + +------------------------------------------------------------------- +Mon Sep 10 18:20:32 CEST 2001 - schwab@suse.de + +- Fix handling of dependent dynamic objects for dlopen/dlclose. + +------------------------------------------------------------------- +Sat Sep 8 21:02:38 CEST 2001 - kukuk@suse.de + +- Don't create gconv cache (else iconv --list seg.faults) + +------------------------------------------------------------------- +Tue Aug 28 13:39:37 MEST 2001 - aj@suse.de + +- Improve dynamic linker to relocate dynamic objects faster. This + implies a small cache for symbol lookups and handling the ld -z combreloc + feature if binaries are linked this way. + +------------------------------------------------------------------- +Fri Aug 24 14:26:33 CEST 2001 - kukuk@suse.de + +- Add fix for handling of %l[] in vfscanf +- ldconfig removes stale links now +- Remove susehelp config files, now in susehelp itself + +------------------------------------------------------------------- +Wed Aug 22 15:26:06 CEST 2001 - aj@suse.de + +- Update s390 patch from IBM. + +------------------------------------------------------------------- +Fri Aug 17 14:11:16 CEST 2001 - kukuk@suse.de + +- Adjust dns6 patch for 2.2.4 +- Fix spec file (include lost libnss_dns6.so) +- Fix versionnumber in version.h [Bug #9759] +- Update kernel-header to 2.4.9 + +------------------------------------------------------------------- +Thu Aug 16 09:32:39 MEST 2001 - aj@suse.de + +- Update to 2.2.4 final. Add s390-ucontext patch. + +------------------------------------------------------------------- +Fri Aug 10 12:04:14 CEST 2001 - aj@suse.de + +- Update to current glibc version. Do not use the hardlink program + for compatification since localedef will do this itself now. + Create gconv cache. + +------------------------------------------------------------------- +Wed Aug 1 15:31:50 CEST 2001 - aj@suse.de + +- Add patch for zic to create copy of the timezone instead + of a symbolic link so that the file exists even if /usr is not + mounted. + Use i486 instead of i386 as default architecture for i386. + +------------------------------------------------------------------- +Sat Jul 28 08:36:27 CEST 2001 - kukuk@suse.de + +- Fix problem with linux/spinlock.h + +------------------------------------------------------------------- +Fri Jul 27 09:30:01 CEST 2001 - kukuk@suse.de + +- Update kernel-header files to 2.4.7 + +------------------------------------------------------------------- +Thu Jul 26 14:04:15 CEST 2001 - froh@suse.de + +- add fix for failing tst-setcontext on s390 + +------------------------------------------------------------------- +Wed Jul 25 09:29:38 CEST 2001 - aj@suse.de + +- Add patch to fix loading of dynamic libs in static programs for PPC. + +------------------------------------------------------------------- +Fri Jul 20 13:44:30 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Disable tst-regex and test-lfs + +------------------------------------------------------------------- +Fri Jul 6 15:26:54 CEST 2001 - kukuk@suse.de + +- Add da_DK@euro and da_DK.UTF-8 + +------------------------------------------------------------------- +Thu Jul 5 14:34:02 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Remove obsolete cvs patch +- Fix DNS/IPv6 patch +- Hardlink equal locale files + +------------------------------------------------------------------- +Fri Jun 22 15:59:21 CEST 2001 - olh@suse.de + +- add glibc-2.2.3-ppc_dlmachine.diff to fix binutils make check + +------------------------------------------------------------------- +Tue Jun 19 10:27:38 CEST 2001 - aj@suse.de + +- Fix profiling on PowerPC. + +------------------------------------------------------------------- +Tue Jun 19 06:41:03 CEST 2001 - bk@suse.de + +- added s390x support to spec file + +------------------------------------------------------------------- +Fri Jun 15 17:58:22 CEST 2001 - schwab@suse.de + +- Fixup asm-ia64/atomic.h for user-space inclusion. + +------------------------------------------------------------------- +Tue Jun 12 11:14:08 CEST 2001 - aj@suse.de + +- Fix testsuite for sparc. + +------------------------------------------------------------------- +Mon Jun 11 13:56:16 CEST 2001 - aj@suse.de + +- Fix testsuite for powerpc and S390, build again on alpha. + +------------------------------------------------------------------- +Tue May 22 15:43:24 CEST 2001 - kukuk@suse.de + +- Update to current CVS snapshot +- Rmove support for PF_LOCAL from getaddrinfo [Bug #8469] + +------------------------------------------------------------------- +Sun May 13 15:19:42 CEST 2001 - kukuk@suse.de + +- Don't use absolute paths in pre-install-section + +------------------------------------------------------------------- +Fri May 4 19:20:10 CEST 2001 - kukuk@suse.de + +- Add special version.h which fails on compiling kernel modules + +------------------------------------------------------------------- +Sat Apr 28 18:32:51 CEST 2001 - kukuk@suse.de + +- Update to glibc 2.2.3, kernel-headers-2.4.4 + +------------------------------------------------------------------- +Tue Apr 24 16:04:32 CEST 2001 - schwab@suse.de + +- Fix feenableexcept on ia64. + +------------------------------------------------------------------- +Tue Apr 24 15:48:34 CEST 2001 - aj@suse.de + +- Install some more UTF-8 locales, fix tr_TR locale. + +------------------------------------------------------------------- +Thu Apr 12 17:42:08 CEST 2001 - kukuk@suse.de + +- Include our own texi2html + +------------------------------------------------------------------- +Wed Apr 11 18:50:12 CEST 2001 - kukuk@suse.de + +- Add fixes from SuSE kernel header files +- Add patch to reload /etc/resolv.conf if there was changes +- Add glibc.conf for susehelp (glibc-html pages) + +------------------------------------------------------------------- +Mon Apr 9 17:39:18 CEST 2001 - schwab@suse.de + +- Fix ld.so for kernel 2.4.3 on ia64. + +------------------------------------------------------------------- +Thu Apr 5 17:39:44 CEST 2001 - kukuk@suse.de + +- Add more fixes from CVS + +------------------------------------------------------------------- +Tue Apr 3 15:40:58 CEST 2001 - kukuk@suse.de + +- Fix isdn header files from kernel-headers + +------------------------------------------------------------------- +Fri Mar 30 18:40:09 CEST 2001 - kukuk@suse.de + +- Update kernel header files to 2.4.3 + +------------------------------------------------------------------- +Fri Mar 30 17:22:54 CEST 2001 - kukuk@suse.de + +- Merge s390 patches +- Fix rcmd_af() (allow PF_UNSPEC) + +------------------------------------------------------------------- +Fri Mar 30 08:52:32 CEST 2001 - aj@suse.de + +- Add some small fixes, fix spec file for removal of man-pages. + +------------------------------------------------------------------- +Thu Mar 29 18:16:09 CEST 2001 - kukuk@suse.de + +- Don't provide kernel_headers any longer +- Remove some man-pages which are now official in the man-pages + package + +------------------------------------------------------------------- +Thu Mar 29 08:33:19 CEST 2001 - aj@suse.de + +- Fix shmfs recognition. + +------------------------------------------------------------------- +Thu Mar 29 01:18:52 CEST 2001 - ro@suse.de + +- added db-splitmask fix from mls (hopefully work around bug in db1) + +------------------------------------------------------------------- +Wed Mar 28 09:02:54 CEST 2001 - aj@suse.de + +- Fix s390 to not generate wrong relocations, work around compiler + error. + +------------------------------------------------------------------- +Wed Mar 21 14:46:25 CET 2001 - kukuk@suse.de + +- glibc-devel obsoletes and provides linclude + +------------------------------------------------------------------- +Tue Mar 20 12:38:28 CET 2001 - kukuk@suse.de + +- Add strtok and other fixes from CVS +- Add yp_all fix + +------------------------------------------------------------------- +Tue Mar 13 13:57:16 CET 2001 - kukuk@suse.de + +- Add more s390 string.h fixes + +------------------------------------------------------------------- +Mon Mar 12 10:05:30 CET 2001 - aj@suse.de + +- Add fixes for s390, don't run testsuite on s390 for now. + +------------------------------------------------------------------- +Fri Mar 9 17:05:27 CET 2001 - kukuk@suse.de + +- Fix linux/init.h header file + +------------------------------------------------------------------- +Fri Mar 9 16:01:15 CET 2001 - aj@suse.de + +- Handle new EM_S390 value. + +------------------------------------------------------------------- +Fri Mar 9 15:33:55 CET 2001 - kukuk@suse.de + +- kernel-heaer fixes to build on Alpha + +------------------------------------------------------------------- +Thu Mar 8 16:02:45 CET 2001 - ro@suse.de + +- update kernel-headers to 2.4.2 + +------------------------------------------------------------------- +Thu Mar 8 12:53:56 CET 2001 - ro@suse.de + +- kernel-header fixes to build on s390 + +------------------------------------------------------------------- +Thu Feb 22 11:22:08 CET 2001 - schwab@suse.de + +- More kernel header fixes for IA64. + +------------------------------------------------------------------- +Tue Feb 20 11:18:53 CET 2001 - kukuk@suse.de + +- Remove optimisation not supported on all plattforms + +------------------------------------------------------------------- +Mon Feb 19 09:48:02 CET 2001 - kukuk@suse.de + +- Fix Optimization of glibc build +- Add Optimization for alphaev6 and sparcv9 + +------------------------------------------------------------------- +Sat Feb 17 17:19:40 CET 2001 - kukuk@suse.de + +- Update to glibc 2.2.2 from CVS + +------------------------------------------------------------------- +Thu Feb 15 16:51:12 CET 2001 - kukuk@suse.de + +- kernel header fixes for SPARC and IA64 + +------------------------------------------------------------------- +Tue Feb 13 14:19:43 CET 2001 - kukuk@suse.de + +- Make optimization for i686 work +- Add manual page for ldd + +------------------------------------------------------------------- +Mon Feb 12 16:05:23 CET 2001 - kukuk@suse.de + +- Fix more kernel headers + +------------------------------------------------------------------- +Thu Feb 8 16:34:27 CET 2001 - kukuk@suse.de + +- Fix more kernel-headers + +------------------------------------------------------------------- +Wed Feb 7 17:17:03 CET 2001 - kukuk@suse.de + +- Delete links in pre install section for glibc-devel + +------------------------------------------------------------------- +Wed Feb 7 01:08:26 CET 2001 - kukuk@suse.de + +- Fix kernel-header includes + +------------------------------------------------------------------- +Tue Feb 6 09:29:04 CET 2001 - kukuk@suse.de + +- Fix creating of /usr/include/asm on SPARC +- Add more CVS patches + +------------------------------------------------------------------- +Mon Feb 5 18:58:08 CET 2001 - kukuk@suse.de + +- Add some patches from CVS +- Include our own kernel header files + +------------------------------------------------------------------- +Mon Jan 22 18:47:24 CET 2001 - aj@suse.de + +- Add elf patch to fix problems on ia64 and ppc with _dl_pagesize. + +------------------------------------------------------------------- +Mon Jan 22 10:26:42 CET 2001 - aj@suse.de + +- Fix mmap64 on powerpc. + +------------------------------------------------------------------- +Tue Jan 16 08:42:33 CET 2001 - aj@suse.de + +- Fix sunrpc-udp.diff, add mman.h fix for powerpc. + +------------------------------------------------------------------- +Wed Jan 10 14:49:30 CET 2001 - aj@suse.de + +- Add sunrpc-udp.diff to fix UDP timeouts with Linux 2.4 kernel. + +------------------------------------------------------------------- +Tue Jan 9 09:01:41 CET 2001 - aj@suse.de + +- Add glibc-2.2.secure.diff to close some security holes. + +------------------------------------------------------------------- +Wed Jan 3 15:26:45 CET 2001 - schwab@suse.de + +- Fix strtol and friends on 64 bit platforms. +- Use 8192 as default pagesize on ia64. +- Scan AUX vector also in statically linked programs. + +------------------------------------------------------------------- +Wed Jan 3 15:20:45 CET 2001 - aj@suse.de + +- Build some UTF-8 locales using a patch from Markus Kuhn. + +------------------------------------------------------------------- +Wed Dec 13 15:52:13 CET 2000 - aj@suse.de + +- Add compatibility patch for IPv6 and Linux 2.2. + +------------------------------------------------------------------- +Wed Dec 13 15:48:56 CET 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Sat Dec 9 13:30:23 CET 2000 - kukuk@suse.de + +- Fix resolver bug + +------------------------------------------------------------------- +Fri Dec 1 13:16:07 CET 2000 - kukuk@suse.de + +- Add bug fixes for setlocale and strncat +- strip gconv modules + +------------------------------------------------------------------- +Fri Nov 24 07:43:08 CET 2000 - kukuk@suse.de + +- Fix typo in spec file + +------------------------------------------------------------------- +Thu Nov 23 23:22:36 CET 2000 - kukuk@suse.de + +- Add hack for POWER3 + +------------------------------------------------------------------- +Wed Nov 22 13:03:19 CET 2000 - kukuk@suse.de + +- Add strncat bugfix for S/390 + +------------------------------------------------------------------- +Tue Nov 21 10:53:31 CET 2000 - kukuk@suse.de + +- Don't bulid 32bit compat packages + +------------------------------------------------------------------- +Mon Nov 20 15:46:44 CET 2000 - schwab@suse.de + +- Remove use of getpagesize syscall on ia64. +- Follow DT_INIT/DT_FINI change in compiler. + +------------------------------------------------------------------- +Sun Nov 19 22:43:40 CET 2000 - kukuk@suse.de + +- Minor specfile fixes + +------------------------------------------------------------------- +Thu Nov 16 17:38:47 CET 2000 - kukuk@suse.de + +- Add lot of more bug fixes + +------------------------------------------------------------------- +Tue Nov 14 16:52:59 CET 2000 - kukuk@suse.de + +- Add bugfix for static linked binaries/ld.so.cache from aj@suse.de + +------------------------------------------------------------------- +Mon Nov 13 14:52:05 CET 2000 - aj@suse.de + +- Fix noversion.diff and spec file. + +------------------------------------------------------------------- +Sat Nov 11 08:40:42 CET 2000 - kukuk@suse.de + +- Fix nssv1 on PowerPC +- no libNoVersion on SPARC + +------------------------------------------------------------------- +Fri Nov 10 21:47:16 CET 2000 - kukuk@suse.de + +- Disable make check on PowerPC and Alpha + +------------------------------------------------------------------- +Fri Nov 10 17:09:57 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.2 + +------------------------------------------------------------------- +Fri Nov 3 10:44:46 CET 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001103 (glibc-2.1.97) +- Don't install libNoVersion on PowerPC +- Rename nssv1 -> glibc-nssv1 +- Rename libd -> glibc-profile, move libg.a to libc +- Rename libcinfo -> glibc-info +- Rename libchtml -> glibc-html +- Rename localedb -> glibc-i18ndata +- Rename libc -> glibc-devel +- Rename shlibs -> glibc + +------------------------------------------------------------------- +Sat Oct 28 09:10:07 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001028 +- Enable more checks + +------------------------------------------------------------------- +Fri Oct 27 15:39:17 CEST 2000 - aj@suse.de + +- Fix NoVersion patch + +------------------------------------------------------------------- +Wed Oct 25 16:47:22 CEST 2000 - kukuk@suse.de + +- Update to glibc-2.2-20001025 + +------------------------------------------------------------------- +Sun Oct 22 16:31:32 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001021 +- Update glibc-db to 2.1.95 +- Update ia64 patch + +------------------------------------------------------------------- +Fri Oct 20 15:54:24 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20001020 +- Add s390 spec file changes + +------------------------------------------------------------------- +Tue Oct 10 13:46:03 CEST 2000 - schwab@suse.de + +- Update to glibc 2.2-20001009. +- Fix TRAMPOLINE_TEMPLATE for ia64. + +------------------------------------------------------------------- +Sun Oct 1 17:08:32 CEST 2000 - schwab@suse.de + +- Export more ia64 specific symbols. + +------------------------------------------------------------------- +Tue Sep 26 12:14:37 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000926 + +------------------------------------------------------------------- +Mon Sep 25 14:02:07 CEST 2000 - kukuk@suse.de + +- Update to glibc 2.2-20000925 snapshot + +------------------------------------------------------------------- +Thu Sep 14 11:43:51 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Fri Sep 8 19:44:17 CEST 2000 - bk@suse.de + +- added glibc-2.1.3-db2-s390.tar.gz from developerworks (db2 fix) + +------------------------------------------------------------------- +Wed Sep 6 09:44:36 CEST 2000 - fober@suse.de + +- merge s390-7.0 with STABLE: + - upgraded to glibc-linuxthreads-2.1.3.1-s390.diff from 2.1.3 + - added new changes from IBM s390 codedrop + - removed glibc-dlopen-2.1.3-s390.diff which is + incorporated in glibc-linuxthreads-2.1.3.1-s390.diff now + +------------------------------------------------------------------- +Tue Sep 5 18:19:46 CEST 2000 - kukuk@suse.de + +- Add glibc-2.1.security.dif + +------------------------------------------------------------------- +Fri Sep 1 11:14:25 CEST 2000 - olh@suse.de + +- add glibc-2.1-ppc_lfs.dif, enables (hopefully) lfs on ppc + +------------------------------------------------------------------- +Wed Aug 30 16:16:04 CEST 2000 - olh@suse.de + +- remove sysdeps/powerpc/memset.S on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 28 17:12:41 CEST 2000 - olh@suse.de + +- add glibc-2.1.sgi_fam.dif +- remove sysdeps/rs6000/memcopy.h on ppc for POWER3 + +------------------------------------------------------------------- +Mon Aug 21 19:56:06 CEST 2000 - garloff@suse.de + +- Fix race on cond_wait WRT owner of mutex (from olh@suse.de) + +------------------------------------------------------------------- +Tue Jul 25 08:41:48 CEST 2000 - kukuk@suse.de + +- Add mmap fix for PowerPC + +------------------------------------------------------------------- +Tue Jul 11 10:02:41 CEST 2000 - kukuk@suse.de + +- Remove "mutex is owned by current thread" bugfix for IBMs jdk + +------------------------------------------------------------------- +Mon Jun 26 16:47:54 CEST 2000 - schwab@suse.de + +- Update ia64 patch. + +------------------------------------------------------------------- +Tue Jun 20 15:33:43 CEST 2000 - kukuk@suse.de + +- Move html docu in extra package +- Update ia64 patch + +------------------------------------------------------------------- +Wed May 31 14:35:00 CEST 2000 - kukuk@suse.de + +- Remove LICENSE file, it's the same as COPYING.LIB +- Add libc docu as html + +------------------------------------------------------------------- +Sun May 28 14:44:42 CEST 2000 - kukuk@suse.de + +- Fix ldconfig on PPC and IA64 + +------------------------------------------------------------------- +Sat May 27 15:25:13 CEST 2000 - kukuk@suse.de + +- Merge new ldconfig fixes + +------------------------------------------------------------------- +Fri May 26 18:16:52 CEST 2000 - kukuk@suse.de + +- Update ia64 patch + +------------------------------------------------------------------- +Fri May 26 11:07:39 CEST 2000 - kukuk@suse.de + +- Fix (f)truncate64 and xdr_uint8_t + +------------------------------------------------------------------- +Wed May 24 22:23:12 CEST 2000 - kukuk@suse.de + +- Fix ldconfig.8 manual page + +------------------------------------------------------------------- +Thu May 18 17:53:09 CEST 2000 - bk@suse.de + +- added s390 dlopen fix + +------------------------------------------------------------------- +Tue May 16 16:48:13 CEST 2000 - bk@suse.de + +- updated s390 patches to match IBM_codedrop_2000_05_15 + +------------------------------------------------------------------- +Fri May 12 15:47:08 CEST 2000 - kukuk@suse.de + +- Fix netinet/in.h IPv6 compare + +------------------------------------------------------------------- +Fri May 12 14:47:15 CEST 2000 - schwab@suse.de + +- Update ia64 patches. + +------------------------------------------------------------------- +Fri May 12 14:22:11 CEST 2000 - kukuk@suse.de + +- Don't apply LFS patch + +------------------------------------------------------------------- +Tue May 9 22:21:23 CEST 2000 - kukuk@suse.de + +- Add LFS patches + +------------------------------------------------------------------- +Mon May 8 11:59:48 CEST 2000 - kukuk@suse.de + +- Add lot of bug fixes from CVS + +------------------------------------------------------------------- +Tue Apr 25 14:20:43 CEST 2000 - kukuk@suse.de + +- Fix nscd/getgrnam bug + +------------------------------------------------------------------- +Thu Apr 20 16:38:26 CEST 2000 - kukuk@suse.de + +- Remove /var/mail -> /var/spool/mail patch +- Update nscd.conf.5 manual page + +------------------------------------------------------------------- +Wed Apr 12 16:18:55 CEST 2000 - kukuk@suse.de + +- Add nscd patch from Chris Wing + +------------------------------------------------------------------- +Wed Apr 12 15:52:55 CEST 2000 - kukuk@suse.de + +- Add ldconfig fix from aj@suse.de + +------------------------------------------------------------------- +Wed Apr 12 11:33:02 CEST 2000 - schwab@suse.de + +- More ia64 patches. +- Use libc.so.0, libm.so.0, ld-linux-ia64.so.1 on ia64. + +------------------------------------------------------------------- +Mon Apr 10 17:55:46 CEST 2000 - kukuk@suse.de + +- Support asm-sparc64 and asm-sparc on SPARC + +------------------------------------------------------------------- +Mon Apr 10 15:46:35 CEST 2000 - kukuk@suse.de + +- Create /etc/ld.so.cache always with permissions 0644 +- Update ia64 patches + +------------------------------------------------------------------- +Thu Apr 6 11:27:20 CEST 2000 - schwab@suse.de + +- Fix dynamic linker bug in ia64. +- Add ia64 spinlocks for db2. + +------------------------------------------------------------------- +Tue Apr 4 16:16:21 CEST 2000 - schwab@suse.de + +- New IA64 patches. +- Fix ldconfig -p. + +------------------------------------------------------------------- +Mon Apr 3 14:42:03 MEST 2000 - bk@suse.de + +- s390 team added s390 patches + +------------------------------------------------------------------- +Wed Mar 22 12:10:02 CET 2000 - kukuk@suse.de + +- Fix last SPARC patch + +------------------------------------------------------------------- +Tue Mar 21 17:48:01 CET 2000 - kukuk@suse.de + +- Add SPARC patches +- Add IA64 patches + +------------------------------------------------------------------- +Wed Mar 15 14:35:47 CET 2000 - kukuk@suse.de + +- Remove personality call (problematic on Alpha) +- Fix typo in localeconv +- alpha/ioperm.c> Add entry for "Nautilus". + +------------------------------------------------------------------- +Tue Mar 7 18:17:07 CET 2000 - kukuk@suse.de + +- Add locale SIGSEGV fix +- Fix getdate bug + +------------------------------------------------------------------- +Fri Feb 25 10:53:47 CET 2000 - kukuk@suse.de + +- Update to final glibc 2.1.3 + fix for bigendian machines + +------------------------------------------------------------------- +Thu Feb 24 16:12:39 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot +- Add libnss_dns6.so.2, which makes IPv4 and IPv6 lookups. + Old libnss_dns.so.2 will only make IPv4 lookups. + +------------------------------------------------------------------- +Tue Feb 22 16:40:35 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot (2.1.3pre4) + +------------------------------------------------------------------- +Sat Feb 5 14:40:33 CET 2000 - kukuk@suse.de + +- Add missing defines for SPARC bits/termios.h + +------------------------------------------------------------------- +Thu Feb 3 18:25:12 CET 2000 - kukuk@suse.de + +- Add regex patch from Andreas Schwab + +------------------------------------------------------------------- +Wed Feb 2 11:37:52 CET 2000 - kukuk@suse.de + +- Add ldconfig fix +- Update to current glibc cvs snapshot +- Fix sys/io.h on Intel (C++) + +------------------------------------------------------------------- +Mon Jan 24 17:01:13 CET 2000 - kukuk@suse.de + +- Fix duplicate setrlimit + +------------------------------------------------------------------- +Mon Jan 24 12:01:27 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Wed Jan 19 15:53:18 CET 2000 - kukuk@suse.de + +- Update to current glibc cvs snapshot + +------------------------------------------------------------------- +Sat Jan 15 01:31:16 CET 2000 - ro@suse.de + +-fixed ppc db2-patch + +------------------------------------------------------------------- +Fri Jan 14 16:54:26 CET 2000 - kukuk@suse.de + +- Add patches for Intel and PPC + +------------------------------------------------------------------- +Fri Jan 14 00:27:03 CET 2000 - kukuk@suse.de + +- Add patch for SPARC + +------------------------------------------------------------------- +Thu Jan 13 15:23:54 CET 2000 - kukuk@suse.de + +- Move info pages to /usr/share/info + +------------------------------------------------------------------- +Mon Jan 10 14:49:14 CET 2000 - kukuk@suse.de + +- Add ipv6 patches for getent + +------------------------------------------------------------------- +Mon Jan 10 11:23:57 CET 2000 - kukuk@suse.de + +- Move manual pages for applications and config files into + shlibs package +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Dec 17 17:06:45 MET 1999 - kukuk@suse.de + +- Add new ldconfig patches +- Add aio patch +- Add fix for bits/string2.h + +------------------------------------------------------------------- +Wed Dec 15 16:37:02 MET 1999 - kukuk@suse.de + +- add ldconfig.8 + +------------------------------------------------------------------- +Wed Dec 15 10:00:53 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Fix get/setrlimit problems + +------------------------------------------------------------------- +Thu Dec 9 20:00:16 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot +- Add new ldconfig + +------------------------------------------------------------------- +Sun Dec 5 11:50:42 MET 1999 - kukuk@suse.de + +- Disable make check for SPARC (kernel bug) +- Add setrlimit patches +- Update to current glibc 2.1.3 snapshot + +------------------------------------------------------------------- +Fri Nov 26 12:09:07 MET 1999 - kukuk@suse.de + +- Update to current glibc 2.1.3 snapshot. + +------------------------------------------------------------------- +Tue Oct 26 13:54:55 MEST 1999 - kukuk@suse.de + +- Add fix for correct accounting of needed bytes (gethnamaddr.c) +- Remove not exported, public names from internal md5 functions + +------------------------------------------------------------------- +Mon Oct 25 19:03:56 MEST 1999 - kukuk@suse.de + +- Add fix for missing nexttowardl aliase + +------------------------------------------------------------------- +Tue Oct 19 09:56:47 MEST 1999 - kukuk@suse.de + +- Add security fix for iruserok + +------------------------------------------------------------------- +Sat Oct 16 16:29:44 MEST 1999 - kukuk@suse.de + +- Build libNoVersion.so.1 on every platform + +------------------------------------------------------------------- +Mon Oct 11 19:19:00 MEST 1999 - kukuk@suse.de + +- Add linuxthreads/signals.c fix from Andreas Schwab +- Remove dangling symlink (Bug #544) +- Add more bug fixes + +------------------------------------------------------------------- +Fri Oct 8 22:07:24 MEST 1999 - kukuk@suse.de + +- Add timezone update + +------------------------------------------------------------------- +Fri Oct 8 17:42:22 MEST 1999 - kukuk@suse.de + +- Add NIS+ shadow parser fix + +------------------------------------------------------------------- +Thu Oct 7 11:46:27 MEST 1999 - kukuk@suse.de + +- Update to official glibc 2.1.2, add important fixes +- Update nscd, add manual pages for it + +------------------------------------------------------------------- +Mon Sep 20 18:14:13 CEST 1999 - ro@suse.de + +- libc: added requires kernel_headers + +------------------------------------------------------------------- +Mon Sep 13 17:23:57 CEST 1999 - bs@suse.de + +- ran old prepare_spec on spec file to switch to new prepare_spec. + +------------------------------------------------------------------- +Mon Sep 6 10:25:03 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Remove use auf automake in spec file + +------------------------------------------------------------------- +Fri Sep 3 14:35:42 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot +- Use RPM macros for configure + +------------------------------------------------------------------- +Wed Aug 25 17:07:09 MEST 1999 - kukuk@suse.de + +- Update to current glibc 2.1.2 cvs snapshot + +------------------------------------------------------------------- +Thu Aug 19 15:20:26 MEST 1999 - kukuk@suse.de + +- Add PowerPC patches from Uli Hecht +- Cleanup of SPEC file +- Create a profiling version + +------------------------------------------------------------------- +Sat Aug 14 19:58:45 MEST 1999 - kukuk@suse.de + +- disable nscd hosts caching by default +- Apply patch from HJL for broken gethostbyname_r in libnss_dns + +------------------------------------------------------------------- +Fri Jul 16 17:01:51 MEST 1999 - kukuk@suse.de + +- Add header fix for autoconf/g++ +- Move pt_chown and gconv modules from libc to shlibs + +------------------------------------------------------------------- +Wed Jul 14 16:05:14 MEST 1999 - kukuk@suse.de + +- Remove /etc/localtime from filelist + +------------------------------------------------------------------- +Mon Jul 12 09:54:43 MEST 1999 - kukuk@suse.de + +- Add more bug fixes from cvs +- Add ld.so bug fix from Andreas Schwab + +------------------------------------------------------------------- +Thu Jul 8 17:25:43 MEST 1999 - kukuk@suse.de + +- configure for i386-unknown-linux + +------------------------------------------------------------------- +Wed Jul 7 12:28:43 MEST 1999 - kukuk@suse.de + +- Remove alpha patch, it's now in glibc 2.1.2 cvs +- Add more bug fixes from cvs +- Remove malloc patch (breaks StarOffice) + +------------------------------------------------------------------- +Tue Jul 6 18:08:26 MEST 1999 - kukuk@suse.de + +- Add openpty patch from Andreas Schwab + (openpty now works if /dev/pts is not mounted) + +------------------------------------------------------------------- +Fri Jul 2 12:04:47 MEST 1999 - kukuk@suse.de + +- Remove warning von zic about symlinks. + +------------------------------------------------------------------- +Mon Jun 28 19:49:44 MEST 1999 - kukuk@suse.de + +- Remove ndbm links, now in gdbm + +------------------------------------------------------------------- +Fri Jun 25 16:16:20 MEST 1999 - kukuk@suse.de + +- Add a lot of more fixes +- Add nscd fixes and enable nscd on alpha + +------------------------------------------------------------------- +Mon Jun 14 09:17:26 MEST 1999 - kukuk@suse.de + +- Add nss_dns and fget* fixes. +- Add nscd patches for NIS+ + +------------------------------------------------------------------- +Thu Jun 10 10:04:11 MEST 1999 - kukuk@suse.de + +- Fix daemon() for MT programs +- Add libio fixes + +------------------------------------------------------------------- +Fri May 28 08:53:20 MEST 1999 - kukuk@suse.de + +- Add fix for docu +- Disable nscd for alpha again + +------------------------------------------------------------------- +Wed May 26 09:42:54 MEST 1999 - kukuk@suse.de + +- Update to version 2.1.1 + +------------------------------------------------------------------- +Mon May 17 16:49:35 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 16.5.1999 +- Add manpages +- Add __setfpucw to libNoVersion (intel) +- Add COPYING and COPYING.LIB + +------------------------------------------------------------------- +Fri May 7 18:57:20 MEST 1999 - kukuk@suse.de + +- Update to snapshot from 6.5.1999 +- Add NoVersion patches from RedHat for miscompiled glibc 2.0 apps +- Add patch for Alpha RX164 +- Add workaround for nscd on Alpha + +------------------------------------------------------------------- +Wed Apr 28 17:48:51 MEST 1999 - kukuk@suse.de + +- Remove latest fnmatch patches from Uli Drepper + +------------------------------------------------------------------- +Tue Apr 27 11:48:46 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 26 1999 +- fix pmap_set/pmap_unset for DHCP clients +- Rename libdb1.so.2[.1] to libdb.so.2[.1] since we don't create + the symbolic links. + +------------------------------------------------------------------- +Tue Apr 20 13:57:07 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 20 1999 +- remove sunrpc.diff +- fix nssv1 package +- only include nscd on intel +- install /etc/nscd.conf + +------------------------------------------------------------------- +Mon Apr 12 09:52:58 MEST 1999 - kukuk@suse.de + +- update to cvs version of Apr 11 1999 +- Fix paths in paths.h +- install linuxthreads man pages and documentation +- Add sunrpc patch for Alpha and security fixes +- added links for el_GR and ru_RU.KOI8-R in usr/share/locale + +------------------------------------------------------------------- +Wed Mar 31 13:21:02 MEST 1999 - bs@suse.de + +- don't use lx_hack for build + +------------------------------------------------------------------- +Tue Mar 16 08:33:57 MET 1999 - ro@suse.de + +- libc.texinfo: changed to build with stable texinfo version + +------------------------------------------------------------------- +Mon Mar 15 23:49:51 MET 1999 - ro@suse.de + +- update to 2.1.1 (cvs of Mar 15 1999) +- update nssv1 to 2.0.2 + +------------------------------------------------------------------- +Sat Feb 20 19:29:32 MET 1999 - ro@suse.de + +- fixed specfile (lddlibc4 not built on alpha) + +------------------------------------------------------------------- +Sat Feb 20 18:41:22 MET 1999 - ro@suse.de + +- fixed specfile ... + +------------------------------------------------------------------- +Sat Feb 20 18:31:30 MET 1999 - ro@suse.de + +- added automake to neededforbuild + +------------------------------------------------------------------- +Sat Feb 20 18:15:44 MET 1999 - ro@suse.de + +- added nss-v1 modules (to keep old rpm happy with file owners) + +------------------------------------------------------------------- +Fri Feb 19 14:35:38 MET 1999 - ro@suse.de + +- update to cvs-version of 1999/02/18 + +------------------------------------------------------------------- +Fri Sep 25 18:58:28 MEST 1998 - ro@suse.de + +- fixed specfile + +------------------------------------------------------------------- +Fri Sep 25 12:15:13 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980925 + edited db/Makefile to ignore messed up target-dependency + +------------------------------------------------------------------- +Mon Sep 21 19:43:16 MEST 1998 - ro@suse.de + +- update: use cvs-version of 980921 + +------------------------------------------------------------------- +Mon Sep 14 14:28:21 MEST 1998 - ro@suse.de + +- update: use today's cvs-version + +------------------------------------------------------------------- +Wed Sep 2 16:56:04 MEST 1998 - ro@suse.de + +- build for 586 since egcs generates code for 686 that does NOT run + on 586 !!! (eg strtok) + +------------------------------------------------------------------- +Sat Aug 22 00:43:48 MEST 1998 - ro@suse.de + +- updated to cvs-version 20.8.98 + added gettext as neededforbuild (so configure shuts up) + glibc-linuxthreads is contained in main archive now + +------------------------------------------------------------------- +Tue Jun 16 18:41:51 MEST 1998 - ro@suse.de + +- added symlink usr/include/X11 + +------------------------------------------------------------------- +Thu May 28 11:36:49 MEST 1998 - ro@suse.de + +- added symlinks to linux include files + +------------------------------------------------------------------- +Thu May 28 10:58:09 MEST 1998 - bs@suse.de + +- moved ".so" Links to package libc. + +------------------------------------------------------------------- +Wed May 27 16:26:15 MEST 1998 - bs@suse.de + +- changed version do `date` + +------------------------------------------------------------------- +Wed May 27 12:16:14 MEST 1998 - ro@suse.de + +- created specfile to build libc, shlibs, libd, libcinfo + localedb, timezone, + +- former libc renamed to libc5. diff --git a/linux-glibc-devel.spec b/linux-glibc-devel.spec new file mode 100644 index 0000000..cfeaa7d --- /dev/null +++ b/linux-glibc-devel.spec @@ -0,0 +1,180 @@ +# +# spec file for package linux-glibc-devel +# +# Copyright (c) 2025 SUSE LLC +# +# All modifications and additions to the file contributed by third parties +# remain the property of their copyright owners, unless otherwise agreed +# upon. The license for this file, and modifications and additions to the +# file, is the same license as for the pristine package itself (unless the +# license for the pristine package is not an Open Source License, in which +# case the license is the MIT License). An "Open Source License" is a +# license that conforms to the Open Source Definition (Version 1.9) +# published by the Open Source Initiative. + +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# + + +Name: linux-glibc-devel +Version: 6.16 +Release: 0 +Summary: Linux headers for userspace development +License: GPL-2.0-only +Group: Development/Libraries/C and C++ +URL: http://www.kernel.org/ +Source: %{name}-%{version}.tar.xz +Source1: install_all.sh +BuildRequires: xz +# rpm-build requires gettext-tools; ignore this, in order to shorten cycles (we have no translations) +#!BuildIgnore: gettext-tools +# glibc-devel requires linux-kernel-headers, which we are in progress of building +#!BuildIgnore: linux-kernel-headers +PreReq: coreutils +Provides: kernel-headers +Provides: linux-kernel-headers = %{version} +Obsoletes: linux-kernel-headers < %{version} + +%{lua: +function cross_archs() + return "aarch64", "arm", "hppa", "i386", "loongarch64", "m68k", "mips", "ppc64", "ppc64le", "riscv64", "s390x", "sparc", "sparc64", "x86_64" +end + +function kernel_arch(arch) + local map = { + ["aarch64"] = "arm64", + ["armv6hl"] = "arm", + ["armv7hl"] = "arm", + ["hppa"] = "parisc", + ["i386"] = "x86", + ["i586"] = "x86", + ["i686"] = "x86", + ["loongarch64"] = "loongarch", + ["ppc"] = "powerpc", + ["ppc64"] = "powerpc", + ["ppc64le"] = "powerpc", + ["riscv64"] = "riscv", + ["s390x"] = "s390", + ["sparc64"] = "sparc", + ["x86_64"] = "x86", + } + return map[arch] or arch +end + +function gcc_target(arch) + local map = { + ["arm"] = "arm-suse-linux-gnueabi", + ["i386"] = "i586-suse-linux", + ["ppc64"] = "powerpc64-suse-linux", + ["ppc64le"] = "powerpc64le-suse-linux", + } + return map[arch] or arch.."-suse-linux" +end +} + +%description +This package provides Linux kernel headers, the kernel API description +required for compilation of almost all programs. This is the userspace +interface; compiling external kernel modules requires +kernel-(flavor)-devel, or kernel-syms to pull in all kernel-*-devel, +packages, instead. + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%package -n cross-]]..arch..[[-%{name} +Summary: Linux headers for ]]..arch..[[ userspace cross development +Group: Development/Libraries/C and C++ +BuildArch: noarch + +%description -n cross-]]..arch..[[-%{name} +This package provides Linux kernel headers for ]]..arch..[[, the kernel API description +required for compilation of almost all programs. +]])) + end} + +%prep +%setup -q -n %{name}-%{version} + +%build +for karch in *; do + cd $karch + cat > version.h <<\BOGUS +#ifdef __KERNEL__ +#error "=======================================================" +#error "You should not include %{_includedir}/{linux,asm}/ header" +#error "files directly for the compilation of kernel modules." +#error "" +#error "glibc now uses kernel header files from a well-defined" +#error "working kernel version (as recommended by Linus Torvalds)" +#error "These files are glibc internal and may not match the" +#error "currently running kernel. They should only be" +#error "included via other system header files - user space" +#error "programs should not directly include or" +#error " as well." +#error "" +#error "Since Linux 2.6, the kernel module build process has been" +#error "updated such that users building modules should not typically" +#error "need to specify additional include directories at all." +#error "" +#error "To build kernel modules, ensure you have the build environment " +#error "available either via the kernel-devel and kernel--devel " +#error "packages or a properly configured kernel source tree." +#error "" +#error "Then, modules can be built using:" +#error "make -C M=$PWD" +#error "" +#error "For the currently running kernel there will be a symbolic " +#error "link pointing to the build environment located at " +#error "/lib/modules/$(uname -r)/build for use as ." +#error "" +#error "If you are seeing this message, your environment is " +#error "not configured properly. " +#error "" +#error "Please adjust the Makefile accordingly." +#error "=======================================================" +#else +BOGUS + # Get LINUX_VERSION_CODE and KERNEL_VERSION directly from kernel + cat usr/include/linux/version.h >> version.h + cat >> version.h <<\BOGUS +#endif +BOGUS + cd .. +done + +%install +cd %{lua:print(kernel_arch(rpm.expand("%_target_cpu")))} +cp -a usr %{buildroot}/ +cp -a version.h %{buildroot}%{_includedir}/linux/ +cd .. +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ +sysroot=%{_prefix}/]]..gcc_target(arch)..[[/sys-root +mkdir -p %{buildroot}${sysroot}/%{_includedir}/linux/ +cd ]]..kernel_arch(arch)..[[ + +cp -a usr %{buildroot}${sysroot} +cp -a version.h %{buildroot}${sysroot}/%{_includedir}/linux/ +cd .. +]])) + end} + +%pre -p +link = "%{_includedir}/asm" +if posix.readlink(link) then os.remove(link) end + +%files +%{_includedir}/* + +%{lua: + for i,arch in ipairs({cross_archs()}) do + print(rpm.expand([[ + +%files -n cross-]]..arch..[[-%{name} +%{_prefix}/]]..gcc_target(arch).."\n")) + end} + +%changelog -- 2.49.0