Re: [BRLTTY] BRLTTY in GRUB2

2012-04-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 04.04.2012 05:17, Dave Mielke wrote: > "man 3 gettext" says to include , but, in the Grub environment, > gettext() still isn't defined. In GRUB you need to -DGRUB_POSIX_GETTEXT_DOMAIN=\"brltty\". It's because we don't have per-process context and so we can't use textdomain reliably. -- Regar

Re: [BRLTTY] BRLTTY in GRUB2

2012-04-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 04.04.2012 20:19, Dave Mielke wrote: > [quoted lines by Vladimir 'φ-coder/phcoder' Serbinenko on 2012/04/04 at 20:10 > +0200] > >> Is it known that the port is on PCI? On yeeloong few devices internal to >> CPU use alternate base address. > Unfortunately, I'm really only familiar with the x86 a

Re: [BRLTTY] brltty 4.3

2012-04-05 Thread Shérab
Hi, Mario Lang (2011/04/27 23:47 +0200): > Sébastien Hinderer writes: > > > Hi, > > > > My braille display is connected to the computer with a USB to serial > > adapter. If I have to unplug the adapter for some reason and then plug > > it again, the braille display does not work any longer. The

Re: [BRLTTY] Computing CSS properties

2012-04-05 Thread Shérab
Hi, Jason White (2011/12/11 09:19 +1100): > Shérab wrote: > > > Does somebody know a way, preferably using text-mode only, to compute > > the value of a CSS property at some point in an HTML document ? > > The only solution I am aware of is to read the style sheets and determine > which rule m

Re: [BRLTTY] BRLTTY in GRUB2

2012-04-05 Thread Dave Mielke
What do you think of defining grub's wchar_t this way? typedef typeof(*L"") wchar_t; I've gone about as far as I can, now, in brltty's core until the wchar_t problems (primarily), and all the items on my wish list (secondarily), are resolved. I think, though, that you should now have a lot e

Re: [BRLTTY] BRLTTY in GRUB2

2012-04-05 Thread Vladimir 'φ-coder/phcoder' Serbinenko
On 06.04.2012 02:35, Dave Mielke wrote: > What do you think of defining grub's wchar_t this way? > >typedef typeof(*L"") wchar_t; I have already solved the problem, just didn't push it yet. > I've gone about as far as I can, now, in brltty's core until the wchar_t > problems (primarily), and a