[Libreoffice-commits] .: configure.in

Lubos Lunak llunak at kemper.freedesktop.org
Fri Mar 16 09:57:24 PDT 2012


 configure.in |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9fea5d3c26c61f83eca26cc14c435eeda34c68bc
Author: Luboš Luňák <l.lunak at suse.cz>
Date:   Fri Mar 16 17:16:40 2012 +0100

    fix gcc bug 26905 detection with clang
    
    it uses GOT instead of PLT on i386 with -02

diff --git a/configure.in b/configure.in
index 72b45b9..4fc314a 100644
--- a/configure.in
+++ b/configure.in
@@ -4532,7 +4532,7 @@ _ACEOF
                 if test "$_os" = "Darwin"; then
                     gccvisbroken=no
                 else
-                    if $EGREP -q '@PLT' visibility.s; then
+                    if $EGREP -q '@PLT|@GOT' visibility.s; then
                         gccvisbroken=no
                     else
                         gccvisbroken=yes


More information about the Libreoffice-commits mailing list