"Philip M. Gollucci" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Revised:
>
> Index: Build.pm
>[...]
> +            ## GCC 3.3.2+
> +            if ($gcc_major >= 3 && $gcc_minor >= 3 &&
> +                $gcc_patch >= 2) {
> +              $ccopts .= " -Wdeclaration-after-statement";
> +            }
>           }
>       }
>

I think this is not good, because it won't catch 3.4.1.
Maybe this is better:

if ($maj . $min . $patch >= 332) {
$ccopts .= " -Wdeclaration-after-statement";
}




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to