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

2014-12-07 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 04.12.2014 23:21, Felix Janda wrote: > 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 li

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) && (__GLIBC_MINOR__ < 1))) > > > > to > > > > # ((

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

2014-12-05 Thread Andrei Borzenkov
В Thu, 4 Dec 2014 23:21:09 +0100 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 othe

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 libc) and makes > > compilation fail for the

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

2014-11-28 Thread Vladimir 'φ-coder/phcoder' Serbinenko
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 libc) and makes > compilation fail for them because the code uses glibc internals. The > easiest way to fix is jus

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 > > compilation fail for them because the cod

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

2014-11-27 Thread Andrei Borzenkov
В 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 > compilation fail for them because the code uses glibc internals. The > easiest wa

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