Ticket #8736: configure-error.patch

File configure-error.patch, 606 bytes (added by jvprat, 17 years ago)
  • configure

     
    250250        return 0;
    251251}
    252252EOF
    253 if ! $CXX $CXXFLAGS -o tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp 2>/dev/null; then
     253if $CXX $CXXFLAGS -o tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp 2>/dev/null ; then
     254        break
     255else
    254256        if test "$datatype" = "unknown"; then
    255257                echo "couldn't find data type with $1 bytes"
    256258                exit 1
    257259        fi
    258260        continue
    259 else
    260         break
    261261fi
    262262done
    263263rm -f tmp_find_type_with_size$EXEEXT tmp_find_type_with_size.cpp