[PATCH] configmake: prepend /@unixroot on OS/2 kLIBC

2014-12-12 Thread KO Myung-Hun
/@unixroot is replaced by $UNIXROOT, which points a drive on which programs following FHS are installed. This enables a program to find a proper directory even if it is executed on a differrent drive from the drive on which it is installed. For examples, consider a program package installed on f:

Re: ARGP: Recent versions do not define OPTION_NO_TRANS

2014-12-12 Thread Robert Hairgrove
Eric Blake redhat.com> writes: > > On 12/12/2014 05:08 AM, Robert Hairgrove wrote: > > Using glibc-2.15, the copyright notice in argp.h goes up to 2009, yet the > > symbol OPTION_NO_TRANS is not defined there (and presumably not processed by > > any of the argp code). > > > > Was this removed a

Re: [PATCH] stddef: support C11's max_align_t

2014-12-12 Thread Pádraig Brady
LGTM thanks!

Re: [PATCH] gendocs.sh: default to a common CSS style sheet for HTML output

2014-12-12 Thread Karl Berry
To the best of my knowledge, you can use --html or override MAKEINFO or probably other things to get whatever css you want into the gendocs.sh output. Feel free to do that for your own manuals. I don't want to change the defaults in any such wholesale way. (I also don't expect you to agree with

Re: [PATCH] gendocs.sh: default to a common CSS style sheet for HTML output

2014-12-12 Thread Ludovic Courtès
rekado skribis: > Ludovic Courtès writes: >> Perhaps also this: >> >> p { text-align: justify; } >> >> But then it looks like spacing around paragraphs would need to be >> slightly increased, WDYT? > > In my experience, paragraph justification often looks terrible in many > cases (especially wh

[PATCH] stddef: support C11's max_align_t

2014-12-12 Thread Paul Eggert
* doc/posix-headers/stddef.texi (stddef.h): Document max_align_t. * lib/stddef.in.h (_@GUARD_PREFIX@_STDDEF_H) [__need_wint_t]: Do not undef, as that might cause max_align_t to be defined twice. Instead, change use to check for _GL_STDDEF_WINT_T too. (max_align_t) [!HAVE_MAX_ALIGN_T]: New decl. * m

Re: [PATCH] diffseq: avoid compiler warning when !USE_HEURISTIC

2014-12-12 Thread Eric Blake
On 12/09/2014 08:50 PM, Daiki Ueno wrote: > Hello, > > I got a minor warning when compiling gettext, which uses the 'diffseq' > module without USE_HEURISTIC set. > > diffseq.h: In function 'diag': > diffseq.h:189:12: warning: variable 'big_snake' set but not used > [-Wunused-but-set-variable

Re: [PATCH] diffseq: avoid compiler warning when !USE_HEURISTIC

2014-12-12 Thread Paul Eggert
Thanks, but here the cure is worse than the disease, so I suggest building without -Wunused-but-set-variable, at least for that file.

Re: iOS support for crt_externs.h

2014-12-12 Thread Paul Eggert
Thanks, I installed that.

Re: ARGP: Recent versions do not define OPTION_NO_TRANS

2014-12-12 Thread Eric Blake
On 12/12/2014 05:08 AM, Robert Hairgrove wrote: > Using glibc-2.15, the copyright notice in argp.h goes up to 2009, yet the > symbol OPTION_NO_TRANS is not defined there (and presumably not processed by > any of the argp code). > > Was this removed again sometime later? OPTION_NO_TRANS is still i

Re: ARGP: Recent versions do not define OPTION_NO_TRANS

2014-12-12 Thread Paul Eggert
Robert Hairgrove wrote: Was this removed again sometime later? To answer questions like this, you can consult the development histories of the software in question. For Gnulib, please see http://savannah.gnu.org/git/?group=gnulib

ARGP: Recent versions do not define OPTION_NO_TRANS

2014-12-12 Thread Robert Hairgrove
Using glibc-2.15, the copyright notice in argp.h goes up to 2009, yet the symbol OPTION_NO_TRANS is not defined there (and presumably not processed by any of the argp code). Was this removed again sometime later? Please refer to this patch from 2004 for details: http://lists.gnu.org/archive/html/

Re: [PATCH] gendocs.sh: default to a common CSS style sheet for HTML output

2014-12-12 Thread rekado
Ludovic Courtès writes: > Perhaps also this: > > p { text-align: justify; } > > But then it looks like spacing around paragraphs would need to be > slightly increased, WDYT? In my experience, paragraph justification often looks terrible in many cases (especially when unbreakable phrases like se

Re: [PATCH] gendocs.sh: default to a common CSS style sheet for HTML output

2014-12-12 Thread Ludovic Courtès
rekado skribis: >>> It assumes that would be copied to >>> as a starting point. >> >> Seems like a good idea to me. >> Projects can override this if they want. >> >> We can merge this after the global css is in place. > > FWIW