| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.4 |
if(0){ |
| 4 |
|
|
print <<EOF; |
| 5 |
|
|
|
| 6 |
|
|
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** |
| 7 |
|
|
|
| 8 |
|
|
|
| 9 |
|
|
Welcome to OpenCL configuration. If you are in a hurry, just press return here |
| 10 |
|
|
and hope for the best. The defaults should usually do. |
| 11 |
|
|
|
| 12 |
|
|
EOF |
| 13 |
|
|
|
| 14 |
|
|
if (prompt ("Skip further questions and use defaults (y/n)?", "y") =~ /[yY]/) { |
| 15 |
|
|
$ENV{PERL_MM_USE_DEFAULT} = 1; |
| 16 |
|
|
} |
| 17 |
|
|
} |
| 18 |
|
|
|
| 19 |
root |
1.5 |
if(0){ |
| 20 |
root |
1.4 |
print <<EOF; |
| 21 |
|
|
|
| 22 |
|
|
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** |
| 23 |
|
|
|
| 24 |
|
|
|
| 25 |
|
|
Most OpenCL implementations can interface to OpenGL. Should This module |
| 26 |
|
|
try to take advantage of and offer support for OpenGL? |
| 27 |
|
|
|
| 28 |
|
|
EOF |
| 29 |
|
|
|
| 30 |
|
|
my $DEFINE .= " -DHAVE_OPENGL=" . (0 + (prompt ("Enable optional support for OpenGL (y/n)?", "y") =~ /[yY]/)); |
| 31 |
root |
1.5 |
} |
| 32 |
root |
1.4 |
|
| 33 |
root |
1.1 |
WriteMakefile( |
| 34 |
|
|
dist => { |
| 35 |
|
|
PREOP => 'pod2text OpenCL.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 36 |
|
|
COMPRESS => 'gzip -9v', |
| 37 |
|
|
SUFFIX => '.gz', |
| 38 |
|
|
}, |
| 39 |
root |
1.3 |
PREREQ_PM => { |
| 40 |
root |
1.2 |
common::sense => 0, |
| 41 |
|
|
}, |
| 42 |
root |
1.4 |
DEFINE => $DEFINE, |
| 43 |
root |
1.1 |
NAME => "OpenCL", |
| 44 |
|
|
VERSION_FROM => "OpenCL.pm", |
| 45 |
root |
1.2 |
LIBS => ["-lOpenCL"], |
| 46 |
root |
1.1 |
); |
| 47 |
|
|
|