1 | #! perl |
1 | #! perl |
2 | |
2 | |
3 | # this file is unfortunately only executed at Makefile.PL time |
3 | # this file is unfortunately only executed at Makefile.PL time |
4 | |
4 | |
|
|
5 | my ($fh, $oldstdout); |
|
|
6 | |
|
|
7 | BEGIN { |
|
|
8 | open $fh, ">lib/AnyEvent/constants.pl" |
|
|
9 | or die "lib/AnyEvent/constants.pl: $!\n"; |
|
|
10 | |
|
|
11 | $oldstdout = select $fh; |
|
|
12 | |
|
|
13 | print "# automatically generated from constants.pl.PL\n"; |
|
|
14 | } |
|
|
15 | |
|
|
16 | { |
|
|
17 | # from common::sense 3.7 |
|
|
18 | use strict qw(vars subs); |
|
|
19 | no warnings; |
|
|
20 | use warnings qw(FATAL closed threads internal debugging pack malloc portable prototype |
|
|
21 | inplace io pipe unpack deprecated glob digit printf |
|
|
22 | layer reserved taint closure semicolon); |
|
|
23 | no warnings qw(exec newline unopened); |
|
|
24 | |
|
|
25 | BEGIN { |
|
|
26 | my $H = $^H; |
|
|
27 | my $WARN = ${^WARNING_BITS}; |
|
|
28 | |
|
|
29 | print "sub AnyEvent::common_sense {\n"; |
|
|
30 | printf " local \$^W;\n"; |
|
|
31 | printf " \${^WARNING_BITS} ^= \${^WARNING_BITS} ^ \"%s\";\n", |
|
|
32 | join "", map "\\x$_", unpack "(H2)*", ${^WARNING_BITS}; |
|
|
33 | # use strict, use utf8; |
|
|
34 | printf " \$^H |= 0x%x;\n", $^H; |
|
|
35 | print "}\n"; |
|
|
36 | } |
|
|
37 | } |
|
|
38 | |
5 | use Config; |
39 | use Config; |
|
|
40 | |
|
|
41 | print "# generated for perl $] built for $Config{archname}\n"; |
6 | |
42 | |
7 | # when built as part of perl, these are not available |
43 | # when built as part of perl, these are not available |
8 | BEGIN { eval "use Socket ()" } |
44 | BEGIN { eval "use Socket ()" } |
9 | BEGIN { eval "use Fcntl ()" } |
45 | BEGIN { eval "use Fcntl ()" } |
10 | BEGIN { eval "use POSIX ()" } |
46 | BEGIN { eval "use POSIX ()" } |
11 | |
|
|
12 | open my $fh, ">lib/AnyEvent/constants.pl" |
|
|
13 | or die "lib/AnyEvent/constants.pl: $!\n"; |
|
|
14 | |
|
|
15 | my $oldstdout = select $fh; |
|
|
16 | |
|
|
17 | print "# automatically generated from constants.pl.PL for perl $] built for $Config{archname}\n"; |
|
|
18 | |
47 | |
19 | sub i($$) { |
48 | sub i($$) { |
20 | print "sub $_[0](){", $_[1]*1, "}\n"; |
49 | print "sub $_[0](){", $_[1]*1, "}\n"; |
21 | } |
50 | } |
22 | |
51 | |