On Fri, 5 Oct 2001, raptor wrote:
>How can I set in <perl> section, say :
>
>PerlModule Blah.pm
>PerlSetVar XXX On
>PerlSetVar YYY Off

<perl>
@PerlModule = qw(Blah);  # add others to the list
push @PerlSetVar, [ XXX => 'On'  ];
push @PerlSetVar, [ YYY => 'Off' ];
</perl>

There's good examples in the eagle book, chapter 8.

Reply via email to