Holy schemoley!  It works!

On 3/20/2012 3:52 PM, David Mertens wrote:
> Try putting your assignments in a BEGIN block. The use statements are
> being called before the variables have their assigned values.
>
> our ($INCLUDES, $LIBRARIES);
>
> BEGIN {
>     $INCLUDES = '-I"c:\Program Files\ImageMagick-6.7.5-Q16\include"';
>     $LIBRARIES = '-L"c:/projects/imagemagick/Image-Magic-Wand"
> -L"c:\Program Files\ImageMagick-6.7.5-Q16\lib" -lwand';
> }
>
> ...


Reply via email to