Description: Add libtool missing check to fix 554821 or similar bugs in the future Author: Andrew Lee (李健秋) Bug-Debian: http://bugs.debian.org/558582 Origin: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=554821 Reviewed-By: Jonas Smedegaard , Hector Oron Last-Update: <2010-02-20> --- a/aclocal.m4 +++ b/aclocal.m4 @@ -4909,6 +4909,7 @@ fi supports_anon_versioning=no case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... --- a/configure +++ b/configure @@ -8659,6 +8659,7 @@ fi supports_anon_versioning=no case `$LD -v 2>&1` in + *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...