Ticket #40709: autoconf-not-gnu89-131010.patch

File autoconf-not-gnu89-131010.patch, 377 bytes (added by Serge3leo (Serguei E. Leontiev), 11 years ago)

Fix workaround patch, because Xcode emulates /usr/bin/gcc with clang

  • configure.ac

    old new  
    388388                fi
    389389
    390390        if test "x$GCC_MAJOR_VERSION$GCC_MINOR_VERSION" = "x42" ; then
    391                 XIPH_ADD_CFLAGS([-fgnu89-inline])
     391                if $CC --version 2>&1| grep -q clang ; then
     392                    true
     393                else
     394                    XIPH_ADD_CFLAGS([-fgnu89-inline])
     395                    fi
    392396                fi
    393397        fi
    394398