Re: [PATCH] On linux require the libc to have large file support

2015-01-25 Thread Felix Janda
Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 18.01.2015 19:18, Felix Janda wrote: > > Felix Janda wrote: > >> Andrei Borzenkov wrote: > >>> В Sat, 17 Jan 2015 14:57:07 +0100 > >>> Felix Janda пишет: > >>> > >>>>

Re: [PATCH] On linux require the libc to have large file support

2015-01-18 Thread Felix Janda
Felix Janda wrote: > Andrei Borzenkov wrote: > > В Sat, 17 Jan 2015 14:57:07 +0100 > > Felix Janda пишет: > > > > > With this, support code in grub-core/osdep/unix/hostdisk.c > > > for old glibc releases could be removed. > > > --- > &

Re: [PATCH] On linux require the libc to have large file support

2015-01-18 Thread Felix Janda
Andrei Borzenkov wrote: > В Sat, 17 Jan 2015 14:57:07 +0100 > Felix Janda пишет: > > > With this, support code in grub-core/osdep/unix/hostdisk.c > > for old glibc releases could be removed. > > --- > > This patch tries to address the issues raised in > >

[PATCH] On linux require the libc to have large file support

2015-01-17 Thread Felix Janda
With this, support code in grub-core/osdep/unix/hostdisk.c for old glibc releases could be removed. --- This patch tries to address the issues raised in http://lists.gnu.org/archive/html/grub-devel/2014-12/msg00030.html --- INSTALL | 1 + configure.ac|

Re: grub-core/osdep/unix/hostdisk.c: remove support for ancient glibc

2014-12-05 Thread Felix Janda
Andrei Borzenkov wrote: > В Thu, 4 Dec 2014 23:21:09 +0100 > Felix Janda пишет: [..] > > Another solution I would be happy with, is to change the conditions > > > > # if !defined(__GLIBC__) || \ > > ((__GLIBC__ < 2) || ((__GLIBC__ == 2) &

Re: grub-core/osdep/unix/hostdisk.c: remove support for ancient glibc

2014-12-04 Thread Felix Janda
On 28.11.2014, Vladimir 'φ-coder/phcoder' Serbinenko wrote: > On 21.11.2014 22:00, Felix Janda wrote: > > Hello, > > > > the file grub-core/osdep/unix/hostdisk.c has special code for glibc<2.1, > > which gets also pulled in for other libcs (such as musl

Re: grub-core/osdep/unix/hostdisk.c: remove support for ancient glibc

2014-11-27 Thread Felix Janda
Andrei Borzenkov wrote: > В Fri, 21 Nov 2014 21:00:41 +0100 > Felix Janda пишет: > > > Hello, > > > > the file grub-core/osdep/unix/hostdisk.c has special code for glibc<2.1, > > which gets also pulled in for other libcs (such as musl libc) and makes >

Re: grub-core/osdep/unix/hostdisk.c: remove support for ancient glibc

2014-11-22 Thread Felix Janda
This was badly coordinated. Please use the recent patch from daggs instead. Felix ___ Grub-devel mailing list Grub-devel@gnu.org https://lists.gnu.org/mailman/listinfo/grub-devel

grub-core/osdep/unix/hostdisk.c: remove support for ancient glibc

2014-11-21 Thread Felix Janda
Hello, the file grub-core/osdep/unix/hostdisk.c has special code for glibc<2.1, which gets also pulled in for other libcs (such as musl libc) and makes compilation fail for them because the code uses glibc internals. The easiest way to fix is just to remove the code as the below patch does. --Fel