1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
|
#!/usr/bin/perl -w
# This has been heavily modified from the Device::Cdio Build.PL
# Jonathan "Duke" Leto <jonathan@leto.net>
# Copyright (C) 2006 Rocky Bernstein <rocky@cpan.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
use strict;
use warnings;
use Config;
use Data::Dumper;
use Module::Build;
use lib 'inc';
use GSLBuilder;
use Ver2Func;
use File::Spec::Functions qw/:ALL/;
our $MIN_GSL_VERSION = "1.15";
my $gsl_conf;
$gsl_conf = check_gsl_version();
$gsl_conf = check_gsl_version_pkgconfig() if not $gsl_conf;
my ($major,$minor,$tiny) = split /\./, $gsl_conf->{gsl_version};
my $ccflags = $gsl_conf->{gsl_cflags};
my $ldflags = $gsl_conf->{gsl_libs};
# In case GSL in installed in the system-wide directory, $ccflags is
# empty (because pkg-config remove -I/usr/include), but swig needs it
my $swig_flags = '';
$swig_flags = ' -I/usr/include' if $ccflags =~ /^\s*$/;
$ccflags .= " $Config{ccflags}"; # we need this for some Linuxes
$ccflags .= " $ENV{CFLAGS} $ENV{CPPFLAGS}"; #Needed for hardening on debian
$ldflags .= " $ENV{CFLAGS} $ENV{LDFLAGS}"; #Needed for hardening on debian
## Swig produces a number of GCC warnings. Turn them off if we can.
$ccflags .= try_cflags("-Wall");
$ccflags .= try_cflags("-Wno-sometimes-uninitialized");
#$ccflags .= try_cflags("-Wno-strict-aliasing");
$ccflags .= try_cflags("-Wno-unused-function");
$ccflags .= try_cflags("-Wno-unused-value");
$ccflags .= try_cflags("-Wno-unused-function");
$ccflags .= try_cflags("-Wno-unused-variable");
$ccflags .= try_cflags("-Wno-gnu");
$ccflags .= try_cflags("-g");
$swig_flags = "$gsl_conf->{gsl_cflags} $swig_flags";
if ( GSLBuilder::is_cygwin() && $Config{shrpenv} =~ m{\Aenv LD_RUN_PATH=(.*)\Z} ) {
$ldflags .= " -L$1 -lperl";
# Should we check the 32-ness?
$swig_flags = '-DNEED_LONG';
} elsif (GSLBuilder::is_msys()) {
# It is not possible to leave a symbol in a PE DLL undefined at link time,
# to be satisfied at runtime, as it is instead possible with most UNIX shared objects
# See https://autotools.io/libtool/windows.html
# So we need to link with libperl.dll.a on MSYS2
$ldflags .= " -L$Config{archlib}/CORE -lperl";
} elsif (GSLBuilder::is_darwin()) {
$ldflags .= ' -bundle -flat_namespace ';
}
if ($Config{archname} =~ /x86_64|amd64/ ) {
$ldflags .= ' -fPIC -fno-omit-frame-pointer ';
$ccflags .= ' -fPIC -fno-omit-frame-pointer ';
}
# this causes warnings with clang + OSX
$ccflags = $Config{cccdlflags} . ' ' . $ccflags unless GSLBuilder::is_darwin();
my $ver2func = Ver2Func->new( $gsl_conf->{gsl_version} );
my $cleanup = qq{
xs/*_wrap*.c core *.core swig/system.i swig/renames.i
swig/*.o Makefile Math-GSL-* tmp* pod2ht*.tmp _build pm
lib/Math/GSL/[A-z]+/* blib *.so *.orig
swig/renames.*.i
} . join " ", map { catfile( (qw/lib Math GSL/, "$_.pm") ) } $ver2func->subsystems;
$ldflags = '-shared ' . $ldflags unless GSLBuilder::is_darwin();
my $swig_version;
unless (GSLBuilder::is_release()) {
$swig_version = swig_version();
if ((split(/\./, $swig_version))[0] < 2) {
print "
***
*** You need to have SWIG 2.0 or greater installed. (You have $swig_version).
*** Get SWIG at http://www.swig.org/\n";
exit 0;
}
}
$ccflags = "$ccflags " . ($ENV{CC_FLAGS}||''),
my $builder = GSLBuilder->new(
module_name => 'Math::GSL',
add_to_cleanup => [ $cleanup ],
dist_abstract => 'Interface to the GNU Scientific Library using SWIG',
dist_author => 'Jonathan Leto <jonathan@leto.net>',
dist_version_from => catfile(qw/lib Math GSL.pm/),
include_dirs => [],
extra_linker_flags => $ldflags,
extra_compiler_flags=> $ccflags . " " . $swig_flags,
# suppress swig warnings about GSL source code
swig_flags => $swig_flags . " -w451,454",
license => 'gpl',
meta_merge => {
resources => {
repository => 'https://github.com/hakonhagland/perl-math-gsl/tree/master'
},
},
build_requires => {
'Test::Most' => '0.31',
'Test::More' => 0,
'Test::Exception' => '0.21',
'Test::Class' => '0.12',
'Test::Taint' => '1.06',
},
requires => {
'Math::Complex' => 0,
'Scalar::Util' => 0,
'version' => '0.77',
'perl' => '5.8.1',
'parent' => 0,
},
sign => 0,
configure_requires => {
'PkgConfig' => '0.07720',
'Module::Build' => '0.38',
},
swig_version => $swig_version,
current_version => $gsl_conf->{gsl_version},
gsl_prefix => $gsl_conf->{gsl_prefix},
);
$builder->add_build_element('swig');
$builder->create_build_script();
print "Have a great day!\n";
### aux functions
sub swig_version {
my $swig = GSLBuilder::swig_binary_name();
my $cmd = "$swig -version";
my $out = `$cmd`;
if ($?) {
die "Can't run [$cmd] : $out";
}
if ($out =~ /swig\s+version\s+([\d\.]+)\n/i) {
return $1;
} else {
die "Can't parse SWIG version from this output:\n$out";
}
}
sub modify_env {
$ENV{PKG_CONFIG_PATH} ||= '';
# TODO: What about windows and darwin?
my @guess = qw(/usr/pkgconfig /usr/lib/pkgconfig /usr/local/lib/pkgconfig
/usr/local/pkgconfig /usr/libdata/pkgconfig
/usr/local/libdata/pkgconfig /opt/pkgconfig);
unshift @guess, $ENV{PKG_CONFIG_PATH} if $ENV{PKG_CONFIG_PATH};
$ENV{PKG_CONFIG_PATH} = join(":", @guess);
}
sub try_compile {
my ($c, %args) = @_;
my $ok = 0;
my $tmp = "tmp$$";
local(*TMPC);
my $obj_ext = $Config{_o} || ".o";
unlink("$tmp.c", "$tmp$obj_ext");
if (open(TMPC, ">", "$tmp.c")) {
print TMPC $c;
close(TMPC);
my $cccmd = $args{cccmd};
my $errornull;
my $ccflags = $Config{'ccflags'};
$ccflags .= " $args{ccflags}" if $args{ccflags};
if ($args{silent} ) {
$errornull = "2>/dev/null" unless defined $errornull;
} else {
$errornull = '';
}
$cccmd = "$Config{'cc'} -o $tmp $ccflags $tmp.c $errornull"
unless defined $cccmd;
printf "cccmd = $cccmd\n" if $args{verbose};
my $res = system($cccmd);
$ok = defined($res) && $res == 0;
if ( !$ok ) {
my $errno = $? >> 8;
local $! = $errno;
print "
*** The test compile of '$tmp.c' failed: status $?
*** (the status means: errno = $errno or '$!')
*** DO NOT PANIC: this just means that you may get some innocuous
*** compiler warnings.
";
}
unlink("$tmp.c");
}
return $ok;
}
sub try_cflags {
my ($ccflags) = @_;
my $c_prog = "int main () { return 0; }\n";
print "Checking if $Config{cc} supports \"$ccflags\"...";
my $result = try_compile($c_prog, ccflags=>$ccflags);
if ($result) {
print "yes\n";
return " $ccflags";
}
print "no\n";
return '';
}
sub check_alien_gsl_share_dir {
if (Alien::GSL->install_type eq "share") {
my $dist_dir = Alien::GSL->dist_dir;
my $bin_dir = File::Spec->catfile( $dist_dir, "bin" );
$ENV{PATH} .= ":$bin_dir";
}
}
sub check_gsl_version_pkgconfig {
eval { require PkgConfig };
if ($@) {
print "\nI see that you are a CPANTester, you really should install PkgConfig !\n"
if $ENV{AUTOMATED_TESTING};
print "\nPkgConfig is currently needed to find GSL for the compilation of this module.\n";
exit 0;
}
modify_env();
print "\nAsking PkgConfig with ENV{PKG_CONFIG_PATH}=" . ($ENV{PKG_CONFIG_PATH} || '') . "\n\n";
my $gsl_pkgcfg = PkgConfig->find ('gsl');
if ($gsl_pkgcfg->errmsg) {
my $errmsg = $gsl_pkgcfg->errmsg;
print "
***
*** PkgConfig failed with error message: $errmsg
*** Probably you need to install GSL?
*** On Debian/Ubuntu you can use:
*** sudo apt-get install libgsl0-dev
*** On Mac you can use homebrew (http://brew.sh/):
*** brew install gsl
*** On Fedora/CentOS/RedHat/openSUSE you can use
*** sudo yum install gsl-devel
*** Or get GSL at http://www.gnu.org/software/gsl\n";
exit 0;
}
my $gsl_version = $gsl_pkgcfg->pkg_version;
if (GSLBuilder::cmp_versions($gsl_version, $MIN_GSL_VERSION) == -1) {
printf "
***
*** You need to have GSL %s or greater installed. (You have $gsl_version).
*** Get GSL at http://www.gnu.org/software/gsl\n", $MIN_GSL_VERSION;
exit 0;
}
return {
gsl_version => $gsl_version,
gsl_prefix => $gsl_pkgcfg->get_var("prefix"),
gsl_libs => join (" ", $gsl_pkgcfg->get_ldflags),
gsl_cflags => join (" ", $gsl_pkgcfg->get_cflags),
};
}
sub check_gsl_version {
print "Checking for GSL using gsl-config\n";
my $gsl_version = qx{gsl-config --version};
if (not defined $gsl_version) {
print "
***
*** Can't find GSL with gsl-config.
*** Trying with PkgConfig.
";
return undef;
}
chomp($gsl_version);
chomp(my $gsl_prefix = qx{gsl-config --prefix});
chomp(my $gsl_cflags = qx{gsl-config --cflags});
chomp(my $gsl_libs = qx{gsl-config --libs});
my $path_system = catfile(qw/swig system.i/);
open my $fh, ">", "$path_system" or die "Could not create $path_system : $!";
my $current_version;
if ($gsl_version =~ m{\A(\d+(?:\.\d+)+)}) {
$current_version = $1;
$current_version =~ s/^2\.7\K\..*//;
my @current = split /\./, $current_version;
print $fh "#define GSL_VERSION $current[0].$current[1]\n";
print $fh "#define GSL_MAJOR_VERSION $current[0]\n";
print $fh "#define GSL_MINOR_VERSION $current[1]\n";
if (GSLBuilder::cmp_versions($current_version, $MIN_GSL_VERSION) == -1) {
printf "
***
*** You need to have GSL %s or greater installed. (You have $gsl_version).
*** Get GSL at http://www.gnu.org/software/gsl\n", $MIN_GSL_VERSION;
exit 0;
} else {
print "Found GSL $gsl_version (via gsl-config) installed in $gsl_prefix\n";
return {
gsl_version => $current_version,
gsl_prefix => $gsl_prefix,
gsl_libs => $gsl_libs,
gsl_cflags => $gsl_cflags,
};
}
} else {
print "
***
*** Can't parse GSL version $gsl_version.
*** Trying with PkgConfig.
";
return undef;
}
close $fh or die "Could not close $path_system : $!";
}
|