Re: Argp fix

2010-02-05 Thread Sergey Poznyakoff
Simon Josefsson ha escrit: > Ouch. Should this be reported to glibc as well? Yes, I'll do it. Regards, Sergey

Re: Argp fix

2010-02-05 Thread Simon Josefsson
Sergey Poznyakoff writes: > Hello, > > Argp failed to properly recognize alias options that have > short option letters. For instance, in this setup: > > { "dstaddr", 'd', "ADDR", 0, > "set destination (peer) address to ADDR" }, > { "peer", 'p', "ADDR", OPTION_ALIAS }, > > both --peer and

Argp fix

2010-02-05 Thread Sergey Poznyakoff
Hello, Argp failed to properly recognize alias options that have short option letters. For instance, in this setup: { "dstaddr", 'd', "ADDR", 0, "set destination (peer) address to ADDR" }, { "peer", 'p', "ADDR", OPTION_ALIAS }, both --peer and -p failed to work. I have installed the att

Re: library symbol versioning hassles

2010-02-05 Thread Simon Josefsson
After more debugging, it seems the behavior I wanted is actually the default -- however the dynamic linker prints a warning, which can cause problems. http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542512#45 for background. This seems good enough to not worry seriously about it further -- howev