Re: havelib module: '+' in library names

2010-06-04 Thread Bruno Haible
Eric Blake wrote: > we might as well fix poor quoting and use preferred macro spellings: > > m4_pushdef([Name],m4_translit([[$1]],[./-+], [])) > m4_pushdef([NAME],m4_translit([[$1]],[abcdefghijklmnopqrstuvwxyz./-+], > [ABCDEFGHIJKLMNOPQRSTUVWXYZ])) OK for m4_

Re: havelib module: '+' in library names

2010-06-04 Thread Eric Blake
On 06/04/2010 07:29 PM, Bruno Haible wrote: > Hello Martin, > >> the havelib module cannot handle library names that contain the '+' >> character, such as libGraphicsMagick++.so. >> >> The attached patch fixes this for me > > Thanks, I'm applying it with a minor tweak: Leave the '-' the last > c

Re: havelib module: '+' in library names

2010-06-04 Thread Bruno Haible
Hello Martin, > the havelib module cannot handle library names that contain the '+' > character, such as libGraphicsMagick++.so. > > The attached patch fixes this for me Thanks, I'm applying it with a minor tweak: Leave the '-' the last character. While for m4_translit and sed it does not matte

Re: havelib module: '+' in library names

2010-06-04 Thread Eric Blake
On 06/04/2010 11:45 AM, Martin Lambers wrote: > Hello everyone, > > the havelib module cannot handle library names that contain the '+' > character, such as libGraphicsMagick++.so. > > The attached patch fixes this for me, but I'm not sure if any special > quoting or escaping of '+' is necessary.

havelib module: '+' in library names

2010-06-04 Thread Martin Lambers
Hello everyone, the havelib module cannot handle library names that contain the '+' character, such as libGraphicsMagick++.so. The attached patch fixes this for me, but I'm not sure if any special quoting or escaping of '+' is necessary. Martin diff --git a/m4/lib-link.m4 b/m4/lib-link.m4 i