[patch, configures] Unify AC_SYS_LARGEFILE exception across dirs

Paolo Bonzini bonzini@gnu.org
Thu Nov 5 22:10:00 GMT 2009


On 11/05/2009 12:20 AM, Jan Kratochvil wrote:
 > +case "${target}" in

This is a host test.  You need

+case "${host}" in

 > +    if test "${target}" = "${host}" -a "$enable_largefile" != 'yes'; 
then
 > +      if test "$plugins" = "no"; then
 > +        enable_largefile="no"
 > +      fi
 > +    fi

Change these five lines to:

+    test "x$plugins" = xno && : ${enable_largefile="no"}

omitting the libgfortran change, and it's fine for me.

Paolo



More information about the Gcc-patches mailing list