This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
Re: glibc 2.8
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Arkadiusz Miskiewicz <arekm at maven dot pl>
- Cc: libc-alpha at sourceware dot org
- Date: Thu, 17 Apr 2008 10:43:44 +0200
- Subject: Re: glibc 2.8
- References: <48005C4B.8020006@redhat.com> <200804162135.26141.arekm@maven.pl>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Wed, Apr 16, 2008 at 09:35:26PM +0200, Arkadiusz Miskiewicz wrote:
> On Saturday 12 of April 2008, Ulrich Drepper wrote:
> > I've tagged the cvs tree for the release. We tested it on x86, x86-64,
> > ppc32, ppc64, ia64, and s390x.
>
> iconvdata/Makefile, one "\" too much at gen-8bit-modules.
And the problem is? There is an empty line after it, so it should make no
difference.
> sysdeps/unix/sysv/linux/dl-osinfo.h, does it build if
> ENABLE_STACKGUARD_RANDOMIZE is defined and __open is needed?
> (not for me).
Fixed thusly:
2008-04-17 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/sysv/linux/dl-osinfo.h: Include fcntl.h.
--- libc/sysdeps/unix/sysv/linux/dl-osinfo.h 8 Mar 2008 07:33:46 -0000 1.27
+++ libc/sysdeps/unix/sysv/linux/dl-osinfo.h 17 Apr 2008 08:04:35 -0000
@@ -19,6 +19,7 @@
#include <kernel-features.h>
#include <dl-sysdep.h>
+#include <fcntl.h>
#include <stdint.h>
#ifndef MIN
Jakub