Re: gnulib-tool: support for LDFLAGS, LIBDEPS and LTLIBDEPS

2006-09-11 Thread Bruno Haible
Ralf Wildenhues wrote: > Are there usage cases where someone links a program or library with > libtool, and this uses a libgnu.a rather than a libgnu.la? Not yet. But why should I introduce an artificial limitation? Bruno

Re: *_LDFLAGS vs. *_LDADD vs. *_LIBADD

2006-09-11 Thread Bruno Haible
Ralf Wildenhues wrote: > > And for executables, an *_LDADD variable exists, but the automake doc says > > the opposite of what you say: > > > >`PROG_LDADD' is inappropriate for passing program-specific linker > >flags (except for `-l', `-L', `-dlopen' and `-dlpreopen'). So, use the > >

mkdtemp can use stdint

2006-09-11 Thread Bruno Haible
Hi, I changed the mkdtemp module so that it uses the complete replacement. 2006-09-10 Bruno Haible <[EMAIL PROTECTED]> * mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require gl_AC_TYPE_UINTMAX_T. 2006-09-10 Bruno Haible <[EMAIL PROTECTED]> * mkdtemp.c: Include always. Don't inc

Re: [bug-gnulib] Fixing argp doc strings

2006-09-11 Thread Bruno Haible
Sergey Poznyakoff wrote: > ! inp_text = __strndup (argp->doc, inp_text_len); > ! } > ! } > ! else > ! inp_text = post ? 0 : argp->doc; > ! trans_text = dgettext (argp->argp_domain, inp_text); In either case of the 'if' branch, inp_text can end up being NULL. B