Re: Rusty perl question
Issac Goldstand <[email protected]>
| Newsgroups | gmane.comp.apache.apreq |
|---|---|
| Message-ID | <[email protected]> |
Steve Hay wrote:
> Issac Goldstand wrote:
>> Is this what you mean?
>>
>> use constant MP_GEN => $ENV{MOD_PERL}
>> ? { ( exists $ENV{MOD_PERL_API_VERSION} and
>> $ENV{MOD_PERL_API_VERSION} >= 2 ) ? 2 : 1 }
>> : 0;
>>
>> It sets the constant |MP_GEN| to 0 if mod_perl is not available, to 1
>> if running under mod_perl 1.0 and 2 for mod_perl 2.0.
>
> This doesn't tell you whether libapreq is available or not, though.
>
>
That's true - if that's questionable, he'd still need to eval it, as you
rightly pointed out.
Issac