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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902
|
#!/usr/bin/perl
#
# In general we trust %Config, but for nanosleep() this trust
# may be misplaced (it may be linkable but not really functional).
# Use $ENV{FORCE_NANOSLEEP_SCAN} to force rescanning whether there
# really is hope.
{ use 5.006; }
use Config;
use ExtUtils::MakeMaker;
use strict;
my $VERBOSE = $ENV{VERBOSE};
my $DEFINE;
my $LIBS = [];
my $XSOPT = '';
my $SYSCALL_H;
our $self; # Used in 'sourcing' the hints.
# TBD: Can we just use $Config(exe_ext) here instead of this complex
# expression?
my $ld_exeext = ($^O eq 'cygwin' ||
$^O eq 'os2' && $Config{ldflags} =~ /-Zexe\b/) ? '.exe' :
(($^O eq 'vos') ? $Config{exe_ext} : '');
unless($ENV{PERL_CORE}) {
$ENV{PERL_CORE} = 1 if grep { $_ eq 'PERL_CORE=1' } @ARGV;
}
# Perls 5.002 and 5.003 did not have File::Spec, fake what we need.
sub my_dirsep {
$^O eq 'VMS' ? '.' :
$^O =~ /mswin32|netware|djgpp/i ? '\\' :
$^O eq 'MacOS' ? ':'
: '/';
}
sub my_catdir {
shift;
my $catdir = join(my_dirsep, @_);
$^O eq 'VMS' ? "[$catdir]" : $catdir;
}
sub my_catfile {
shift;
return join(my_dirsep, @_) unless $^O eq 'VMS';
my $file = pop;
return my_catdir (undef, @_) . $file;
}
sub my_updir {
shift;
$^O eq 'VMS' ? "-" : "..";
}
BEGIN {
eval { require File::Spec };
if ($@) {
*File::Spec::catdir = \&my_catdir;
*File::Spec::updir = \&my_updir;
*File::Spec::catfile = \&my_catfile;
}
}
# Avoid 'used only once' warnings.
my $nop1 = *File::Spec::catdir;
my $nop2 = *File::Spec::updir;
my $nop3 = *File::Spec::catfile;
# if you have 5.004_03 (and some slightly older versions?), xsubpp
# tries to generate line numbers in the C code generated from the .xs.
# unfortunately, it is a little buggy around #ifdef'd code.
# my choice is leave it in and have people with old perls complain
# about the "Usage" bug, or leave it out and be unable to compile myself
# without changing it, and then I'd always forget to change it before a
# release. Sorry, Edward :)
sub try_compile_and_link {
my ($c, %args) = @_;
my ($ok) = 0;
my ($tmp) = "tmp$$";
local(*TMPC);
my $obj_ext = $Config{obj_ext} || ".o";
unlink("$tmp.c", "$tmp$obj_ext");
if (open(TMPC, ">$tmp.c")) {
print TMPC $c;
close(TMPC);
my $cccmd = $args{cccmd};
my $errornull;
my $COREincdir;
if ($ENV{PERL_CORE}) {
my $updir = File::Spec->updir;
$COREincdir = File::Spec->catdir(($updir) x 2);
} else {
$COREincdir = File::Spec->catdir($Config{'archlibexp'}, 'CORE');
}
if ($ENV{PERL_CORE}) {
unless (-f File::Spec->catfile($COREincdir, "EXTERN.h")) {
die <<__EOD__;
Your environment variable PERL_CORE is '$ENV{PERL_CORE}' but there
is no EXTERN.h in $COREincdir.
Cannot continue, aborting.
__EOD__
}
}
my $ccflags = $Config{'ccflags'} . ' ' . "-I$COREincdir"
. ' -DPERL_NO_INLINE_FUNCTIONS';
if ($^O eq 'VMS') {
$cccmd = "$Config{'cc'} /include=($COREincdir) $tmp.c";
}
if ($args{silent} || !$VERBOSE) {
$errornull = "2>/dev/null" unless defined $errornull;
} else {
$errornull = '';
}
$cccmd = "$Config{'cc'} -o $tmp $ccflags $tmp.c @$LIBS $errornull"
unless defined $cccmd;
if ($^O eq 'VMS') {
open( CMDFILE, ">$tmp.com" );
print CMDFILE "\$ SET MESSAGE/NOFACILITY/NOSEVERITY/NOIDENT/NOTEXT\n";
print CMDFILE "\$ $cccmd\n";
print CMDFILE "\$ IF \$SEVERITY .NE. 1 THEN EXIT 44\n"; # escalate
close CMDFILE;
system("\@ $tmp.com");
$ok = $?==0;
for ("$tmp.c", "$tmp$obj_ext", "$tmp.com", "$tmp$Config{exe_ext}") {
1 while unlink $_;
}
}
else
{
my $tmp_exe = "$tmp$ld_exeext";
printf "cccmd = $cccmd\n" if $VERBOSE;
my $res = system($cccmd);
$ok = defined($res) && $res == 0 && -s $tmp_exe && -x _;
if ( $ok && exists $args{run} && $args{run}) {
my $tmp_exe =
File::Spec->catfile(File::Spec->curdir, $tmp_exe);
printf "Running $tmp_exe..." if $VERBOSE;
if (system($tmp_exe) == 0) {
$ok = 1;
} else {
$ok = 0;
my $errno = $? >> 8;
local $! = $errno;
printf <<EOF;
*** The test run of '$tmp_exe' failed: status $?
*** (the status means: errno = $errno or '$!')
*** DO NOT PANIC: this just means that *some* functionality will be missing.
EOF
}
}
unlink("$tmp.c", $tmp_exe);
}
}
return $ok;
}
my $TIME_HEADERS = <<EOH;
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef I_SYS_TYPES
# include <sys/types.h>
#endif
#ifdef I_SYS_TIME
# include <sys/time.h>
#endif
#ifdef I_SYS_SELECT
# include <sys/select.h> /* struct timeval might be hidden in here */
#endif
EOH
sub has_gettimeofday {
# confusing but true (if condition true ==> -DHAS_GETTIMEOFDAY already)
return 0 if $Config{d_gettimeod};
return 1 if try_compile_and_link(<<EOM);
$TIME_HEADERS
static int foo()
{
struct timeval tv;
gettimeofday(&tv, 0);
}
int main(int argc, char** argv)
{
foo();
}
EOM
return 0;
}
sub has_x {
my ($x, %args) = @_;
return 1 if
try_compile_and_link(<<EOM, %args);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#ifdef I_UNISTD
# include <unistd.h>
#endif
#ifdef I_SYS_TYPES
# include <sys/types.h>
#endif
#ifdef I_SYS_TIME
# include <sys/time.h>
#endif
int main(int argc, char** argv)
{
$x;
}
EOM
return 0;
}
sub has_nanosleep {
print "testing... ";
return 1 if
try_compile_and_link(<<EOM, run => 1);
#include <time.h>
#include <sys/time.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
/* int nanosleep(const struct timespec *rqtp, struct timespec *rmtp); */
int main(int argc, char** argv) {
struct timespec ts1, ts2;
int ret;
ts1.tv_sec = 0;
ts1.tv_nsec = 750000000;
ts2.tv_sec = 0;
ts2.tv_nsec = 0;
errno = 0;
ret = nanosleep(&ts1, &ts2); /* E.g. in AIX nanosleep() fails and sets errno to ENOSYS. */
ret == 0 ? exit(0) : exit(errno ? errno : -1);
}
EOM
}
sub has_include {
my ($inc) = @_;
return 1 if
try_compile_and_link(<<EOM);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <$inc>
int main(int argc, char** argv)
{
return 0;
}
EOM
return 0;
}
sub has_clock_xxx_syscall {
my $x = shift;
return 0 unless defined $SYSCALL_H;
return 1 if
try_compile_and_link(<<EOM, run => 1);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <$SYSCALL_H>
int main(int argc, char** argv)
{
struct timespec ts;
/* Many Linuxes get ENOSYS even though the syscall exists. */
/* All implementations are supposed to support CLOCK_REALTIME. */
int ret = syscall(SYS_clock_$x, CLOCK_REALTIME, &ts);
ret == 0 ? exit(0) : exit(errno ? errno : -1);
}
EOM
}
sub has_clock_xxx {
my $xxx = shift;
return 1 if
try_compile_and_link(<<EOM, run => 1);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
int main(int argc, char** argv)
{
struct timespec ts;
int ret = clock_$xxx(CLOCK_REALTIME, &ts); /* Many Linuxes get ENOSYS. */
/* All implementations are supposed to support CLOCK_REALTIME. */
ret == 0 ? exit(0) : exit(errno ? errno : -1);
}
EOM
}
sub has_clock {
return 1 if
try_compile_and_link(<<EOM, run => 1);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
int main(int argc, char** argv)
{
clock_t tictoc;
clock_t ret = clock();
ret == (clock_t)-1 ? exit(errno ? errno : -1) : exit(0);
}
EOM
}
sub has_clock_nanosleep {
return 1 if
try_compile_and_link(<<EOM, run => 1);
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <time.h>
int main(int argc, char** argv)
{
int ret;
struct timespec ts1;
struct timespec ts2;
ts1.tv_sec = 0;
ts1.tv_nsec = 750000000;;
ret = clock_nanosleep(CLOCK_MONOTONIC, 0, &ts1, &ts2);
ret == 0 ? exit(0) : exit(errno ? errno : -1);
}
EOM
}
sub DEFINE {
my ($def, $val) = @_;
my $define = defined $val ? "$def=$val" : $def ;
unless ($DEFINE =~ /(?:^| )-D\Q$define\E(?: |$)/) {
$DEFINE .= " -D$define";
}
}
sub init {
my $hints = File::Spec->catfile("hints", "$^O.pl");
if (-f $hints) {
print "Using hints $hints...\n";
local $self;
do $hints;
if (exists $self->{LIBS}) {
$LIBS = $self->{LIBS};
print "Extra libraries: @$LIBS...\n";
}
}
$DEFINE = '';
if ($Config{d_syscall}) {
print "Have syscall()... looking for syscall.h... ";
if (has_include('syscall.h')) {
$SYSCALL_H = 'syscall.h';
} elsif (has_include('sys/syscall.h')) {
$SYSCALL_H = 'sys/syscall.h';
}
} else {
print "No syscall()...\n";
}
if ($Config{d_syscall}) {
if (defined $SYSCALL_H) {
print "found <$SYSCALL_H>.\n";
} else {
print "NOT found.\n";
}
}
print "Looking for gettimeofday()... ";
my $has_gettimeofday;
if (exists $Config{d_gettimeod}) {
$has_gettimeofday++ if $Config{d_gettimeod};
} elsif (has_gettimeofday()) {
$DEFINE .= ' -DHAS_GETTIMEOFDAY';
$has_gettimeofday++;
}
if ($has_gettimeofday) {
print "found.\n";
} else {
die <<EOD
Your operating system does not seem to have the gettimeofday() function.
(or, at least, I cannot find it)
There is no way Time::HiRes is going to work.
I am awfully sorry but I cannot go further.
Aborting configuration.
EOD
}
print "Looking for setitimer()... ";
my $has_setitimer;
if (exists $Config{d_setitimer}) {
$has_setitimer++ if $Config{d_setitimer};
} elsif (has_x("setitimer(ITIMER_REAL, 0, 0)")) {
$has_setitimer++;
$DEFINE .= ' -DHAS_SETITIMER';
}
if ($has_setitimer) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Looking for getitimer()... ";
my $has_getitimer;
if (exists $Config{'d_getitimer'}) {
$has_getitimer++ if $Config{'d_getitimer'};
} elsif (has_x("getitimer(ITIMER_REAL, 0)")) {
$has_getitimer++;
$DEFINE .= ' -DHAS_GETITIMER';
}
if ($has_getitimer) {
print "found.\n";
} else {
print "NOT found.\n";
}
if ($has_setitimer && $has_getitimer) {
print "You have interval timers (both setitimer and getitimer).\n";
} else {
print "You do not have interval timers.\n";
}
print "Looking for ualarm()... ";
my $has_ualarm;
if (exists $Config{d_ualarm}) {
$has_ualarm++ if $Config{d_ualarm};
} elsif (has_x ("ualarm (0, 0)")) {
$has_ualarm++;
$DEFINE .= ' -DHAS_UALARM';
}
if ($has_ualarm) {
print "found.\n";
} else {
print "NOT found.\n";
if ($has_setitimer) {
print "But you have setitimer().\n";
print "We can make a Time::HiRes::ualarm().\n";
}
}
print "Looking for usleep()... ";
my $has_usleep;
if (exists $Config{d_usleep}) {
$has_usleep++ if $Config{d_usleep};
} elsif (has_x ("usleep (0)")) {
$has_usleep++;
$DEFINE .= ' -DHAS_USLEEP';
}
if ($has_usleep) {
print "found.\n";
} else {
print "NOT found.\n";
print "Let's see if you have select()... ";
if ($Config{'d_select'}) {
print "found.\n";
print "We can make a Time::HiRes::usleep().\n";
} else {
print "NOT found.\n";
print "You won't have a Time::HiRes::usleep().\n";
}
}
print "Looking for nanosleep()... ";
my $has_nanosleep;
if ($ENV{FORCE_NANOSLEEP_SCAN}) {
print "forced scan... ";
if (has_nanosleep()) {
$has_nanosleep++;
$DEFINE .= ' -DTIME_HIRES_NANOSLEEP';
}
}
elsif (exists $Config{d_nanosleep}) {
print "believing \$Config{d_nanosleep}... ";
if ($Config{d_nanosleep}) {
$has_nanosleep++;
$DEFINE .= ' -DTIME_HIRES_NANOSLEEP';
}
} elsif ($^O =~ /^(mpeix)$/) {
# MPE/iX falsely finds nanosleep from its libc equivalent.
print "skipping because in $^O... ";
} else {
if (has_nanosleep()) {
$has_nanosleep++;
$DEFINE .= ' -DTIME_HIRES_NANOSLEEP';
}
}
if ($has_nanosleep) {
print "found.\n";
print "You can mix subsecond sleeps with signals, if you want to.\n";
print "(It's still not portable, though.)\n";
} else {
print "NOT found.\n";
my $nt = ($^O eq 'os2' ? '' : 'not');
print "You can$nt mix subsecond sleeps with signals.\n";
print "(It would not be portable anyway.)\n";
}
print "Looking for clock_gettime()... ";
my $has_clock_gettime;
if (exists $Config{d_clock_gettime}) {
$has_clock_gettime++ if $Config{d_clock_gettime}; # Unlikely...
} elsif (has_clock_xxx('gettime')) {
$has_clock_gettime++;
$DEFINE .= ' -DTIME_HIRES_CLOCK_GETTIME';
} elsif (defined $SYSCALL_H && has_clock_xxx_syscall('gettime')) {
$has_clock_gettime++;
$DEFINE .= ' -DTIME_HIRES_CLOCK_GETTIME -DTIME_HIRES_CLOCK_GETTIME_SYSCALL';
}
if ($has_clock_gettime) {
if ($DEFINE =~ /-DTIME_HIRES_CLOCK_GETTIME_SYSCALL/) {
print "found (via syscall).\n";
} else {
print "found.\n";
}
} else {
print "NOT found.\n";
}
print "Looking for clock_getres()... ";
my $has_clock_getres;
if (exists $Config{d_clock_getres}) {
$has_clock_getres++ if $Config{d_clock_getres}; # Unlikely...
} elsif (has_clock_xxx('getres')) {
$has_clock_getres++;
$DEFINE .= ' -DTIME_HIRES_CLOCK_GETRES';
} elsif (defined $SYSCALL_H && has_clock_xxx_syscall('getres')) {
$has_clock_getres++;
$DEFINE .= ' -DTIME_HIRES_CLOCK_GETRES -DTIME_HIRES_CLOCK_GETRES_SYSCALL';
}
if ($has_clock_getres) {
if ($DEFINE =~ /-DTIME_HIRES_CLOCK_GETRES_SYSCALL/) {
print "found (via syscall).\n";
} else {
print "found.\n";
}
} else {
print "NOT found.\n";
}
print "Looking for clock_nanosleep()... ";
my $has_clock_nanosleep;
if (exists $Config{d_clock_nanosleep}) {
$has_clock_nanosleep++ if $Config{d_clock_nanosleep}; # Unlikely...
} elsif (has_clock_nanosleep()) {
$has_clock_nanosleep++;
$DEFINE .= ' -DTIME_HIRES_CLOCK_NANOSLEEP';
}
if ($has_clock_nanosleep) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Looking for clock()... ";
my $has_clock;
if (exists $Config{d_clock}) {
$has_clock++ if $Config{d_clock}; # Unlikely...
} elsif (has_clock()) {
$has_clock++;
$DEFINE .= ' -DTIME_HIRES_CLOCK';
}
if ($has_clock) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Looking for stat() subsecond timestamps...\n";
print "Trying struct stat st_atimespec.tv_nsec...";
my $has_stat_st_xtimespec;
if (try_compile_and_link(<<EOM)) {
$TIME_HEADERS
#include <sys/stat.h>
int main(int argc, char** argv) {
struct stat st;
st.st_atimespec.tv_nsec = 0;
}
EOM
$has_stat_st_xtimespec++;
DEFINE('TIME_HIRES_STAT', 1);
}
if ($has_stat_st_xtimespec) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Trying struct stat st_atimensec...";
my $has_stat_st_xtimensec;
if (try_compile_and_link(<<EOM)) {
$TIME_HEADERS
#include <sys/stat.h>
int main(int argc, char** argv) {
struct stat st;
st.st_atimensec = 0;
}
EOM
$has_stat_st_xtimensec++;
DEFINE('TIME_HIRES_STAT', 2);
}
if ($has_stat_st_xtimensec) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Trying struct stat st_atime_n...";
my $has_stat_st_xtime_n;
if (try_compile_and_link(<<EOM)) {
$TIME_HEADERS
#include <sys/stat.h>
int main(int argc, char** argv) {
struct stat st;
st.st_atime_n = 0;
}
EOM
$has_stat_st_xtime_n++;
DEFINE('TIME_HIRES_STAT', 3);
}
if ($has_stat_st_xtime_n) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Trying struct stat st_atim.tv_nsec...";
my $has_stat_st_xtim;
if (try_compile_and_link(<<EOM)) {
$TIME_HEADERS
#include <sys/stat.h>
int main(int argc, char** argv) {
struct stat st;
st.st_atim.tv_nsec = 0;
}
EOM
$has_stat_st_xtim++;
DEFINE('TIME_HIRES_STAT', 4);
}
if ($has_stat_st_xtim) {
print "found.\n";
} else {
print "NOT found.\n";
}
print "Trying struct stat st_uatime...";
my $has_stat_st_uxtime;
if (try_compile_and_link(<<EOM)) {
$TIME_HEADERS
#include <sys/stat.h>
int main(int argc, char** argv) {
struct stat st;
st.st_uatime = 0;
}
EOM
$has_stat_st_uxtime++;
DEFINE('TIME_HIRES_STAT', 5);
}
if ($has_stat_st_uxtime) {
print "found.\n";
} else {
print "NOT found.\n";
}
if ($DEFINE =~ /-DTIME_HIRES_STAT=\d+/) {
print "You seem to have stat() subsecond timestamps.\n";
print "(Your struct stat has them, but the filesystems must help.)\n";
} else {
print "You do not seem to have stat subsecond timestamps.\n";
}
my $has_w32api_windows_h;
if ($^O eq 'cygwin') {
print "Looking for <w32api/windows.h>... ";
if (has_include('w32api/windows.h')) {
$has_w32api_windows_h++;
DEFINE('HAS_W32API_WINDOWS_H');
}
if ($has_w32api_windows_h) {
print "found.\n";
} else {
print "NOT found.\n";
}
}
if ($DEFINE) {
$DEFINE =~ s/^\s+//;
if (open(XDEFINE, ">xdefine")) {
print XDEFINE $DEFINE, "\n";
close(XDEFINE);
}
}
}
sub doMakefile {
my @makefileopts = ();
if ($] >= 5.005) {
push (@makefileopts,
'AUTHOR' => 'Jarkko Hietaniemi <jhi@iki.fi>',
'ABSTRACT_FROM' => 'HiRes.pm',
);
DEFINE('ATLEASTFIVEOHOHFIVE');
}
push (@makefileopts,
'NAME' => 'Time::HiRes',
'VERSION_FROM' => 'HiRes.pm', # finds $VERSION
'LIBS' => $LIBS, # e.g., '-lm'
'DEFINE' => $DEFINE, # e.g., '-DHAS_SOMETHING'
'XSOPT' => $XSOPT,
# Do not even think about 'INC' => '-I/usr/ucbinclude',
# Solaris will avenge.
'INC' => '', # e.g., '-I/usr/include/other'
'INSTALLDIRS' => ($] >= 5.008 && $] < 5.011 ? 'perl' : 'site'),
'PREREQ_PM' => {
'Carp' => 0,
'Config' => 0,
'DynaLoader' => 0,
'Exporter' => 0,
'ExtUtils::MakeMaker' => 0,
'Test::More' => "0.82",
'strict' => 0,
},
'dist' => {
'CI' => 'ci -l',
'COMPRESS' => 'gzip -9f',
'SUFFIX' => 'gz',
},
clean => { FILES => "xdefine" },
realclean => { FILES=> 'const-c.inc const-xs.inc' },
);
if ($^O eq "MSWin32" && !(grep { /\ALD[A-Z]*=/ } @ARGV)) {
my $libperl = $Config{libperl} || "";
my $gccversion = $Config{gccversion} || "";
if ($gccversion =~ /\A3\.4\.[0-9]+/ and $libperl =~ /\.lib\z/) {
# Avoid broken linkage with ActivePerl, by linking directly
# against the Perl DLL rather than the import library.
(my $llibperl = "-l$libperl") =~ s/\.lib\z//;
my $lddlflags = $Config{lddlflags} || "";
my $ldflags = $Config{ldflags} || "";
s/-L(?:".*?"|\S+)//g foreach $lddlflags, $ldflags;
my $libdirs = join ' ',
map { s/(?<!\\)((?:\\\\)*")/\\$1/g; qq[-L"$_"] }
@Config{qw/bin sitebin/};
push @makefileopts, macro => {
LDDLFLAGS => "$lddlflags $libdirs $llibperl",
LDFLAGS => "$ldflags $libdirs $llibperl",
PERL_ARCHIVE => "",
};
}
}
if ($ENV{PERL_CORE}) {
push @makefileopts, MAN3PODS => {};
}
WriteMakefile(@makefileopts);
}
sub doConstants {
if (eval {require ExtUtils::Constant; 1}) {
my @names = qw(CLOCK_HIGHRES CLOCK_MONOTONIC
CLOCK_PROCESS_CPUTIME_ID
CLOCK_REALTIME
CLOCK_SOFTTIME
CLOCK_THREAD_CPUTIME_ID
CLOCK_TIMEOFDAY
CLOCKS_PER_SEC
ITIMER_REAL ITIMER_VIRTUAL ITIMER_PROF
ITIMER_REALPROF
TIMER_ABSTIME);
foreach (qw (d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer
d_nanosleep d_clock_gettime d_clock_getres
d_clock d_clock_nanosleep d_hires_stat)) {
my $macro = $_;
if ($macro =~ /^(d_nanosleep|d_clock_gettime|d_clock_getres|d_clock|d_clock_nanosleep)$/) {
$macro =~ s/^d_(.+)/TIME_HIRES_\U$1/;
} elsif ($macro =~ /^(d_hires_stat)$/) {
my $d_hires_stat = 0;
$d_hires_stat = $1 if ($DEFINE =~ /-DTIME_HIRES_STAT=(\d+)/);
push @names, {name => $_, macro => "TIME_HIRES_STAT", value => $d_hires_stat,
default => ["IV", "0"]};
next;
} else {
$macro =~ s/^d_(.+)/HAS_\U$1/;
}
push @names, {name => $_, macro => $macro, value => 1,
default => ["IV", "0"]};
}
ExtUtils::Constant::WriteConstants(
NAME => 'Time::HiRes',
NAMES => \@names,
);
} else {
my $file;
foreach $file ('const-c.inc', 'const-xs.inc') {
my $fallback = File::Spec->catfile('fallback', $file);
local $/;
open IN, "<$fallback" or die "Can't open $fallback: $!";
open OUT, ">$file" or die "Can't open $file: $!";
print OUT <IN> or die $!;
close OUT or die "Can't close $file: $!";
close IN or die "Can't close $fallback: $!";
}
}
}
sub main {
if (-f "xdefine" && !(@ARGV && $ARGV[0] eq '--configure')) {
print qq[$0: The "xdefine" exists, skipping the configure step.\n];
print qq[("$^X $0 --configure" to force the configure step)\n];
} else {
print "Configuring Time::HiRes...\n";
1 while unlink("define");
if ($^O =~ /Win32/i) {
DEFINE('SELECT_IS_BROKEN');
$LIBS = [];
print "System is $^O, skipping full configure...\n";
open(XDEFINE, ">xdefine") or die "$0: Cannot create xdefine: $!\n";
close(XDEFINE);
} else {
init();
}
doMakefile;
doConstants;
}
my $make = $Config{'make'} || "make";
unless (exists $ENV{PERL_CORE} && $ENV{PERL_CORE}) {
print <<EOM;
Now you may issue '$make'. Do not forget also '$make test'.
EOM
if ($] == 5.008 &&
((exists $ENV{LC_ALL} && $ENV{LC_ALL} =~ /utf-?8/i) ||
(exists $ENV{LC_CTYPE} && $ENV{LC_CTYPE} =~ /utf-?8/i) ||
(exists $ENV{LANG} && $ENV{LANG} =~ /utf-?8/i))) {
print <<EOM;
NOTE: if you get an error like this (the Makefile line number may vary):
Makefile:91: *** missing separator
then set the environment variable LC_ALL to "C" and retry
from scratch (re-run perl "Makefile.PL").
(And consider upgrading your Perl to, say, at least Perl 5.8.8.)
(You got this message because you seem to have
an UTF-8 locale active in your shell environment, this used
to cause broken Makefiles to be created from Makefile.PLs)
EOM
}
}
}
&main;
# EOF
|