ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/Makefile.PL
Revision: 1.35
Committed: Sun Aug 12 05:21:35 2018 UTC (5 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-4_52, rel-4_51
Changes since 1.34: +7 -6 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use Canary::Stability IO::AIO => 1, 5.008002;
2
3 use ExtUtils::MakeMaker;
4
5 use Config;
6
7 if ($^O eq "MSWin32") {
8 # configuration on windows is hardcoded - as always
9
10 print STDERR <<EOF;
11
12 ***
13 *** Your platform is not standards compliant. To get this module working, you need to
14 *** download and install win32 pthread (http://sourceware.org/pthreads-win32/)
15 *** in /gtk/{lib,include}
16 *** also, the windows SDK is expected to be installed in /sdk
17 *** and visual C is expected to be installed in /vc98
18 ***
19 *** Alternatively, set the INC and LIBS environment variables
20 *** accordingly before running Makefile.PL, or you can
21 *** pass INC and LIBS arguments to Makefile.PL itself.
22 ***
23
24 EOF
25
26 if ($Config{cc} =~ /(?:^|\\|\/)gcc(?:|.*\.exe)$/) {
27 $INC = "$ENV{INC} -I/gtk/include";
28 $LIBS = ["$ENV{LIBS} -L/gtk/lib -lpthreadGC2"];
29 } else {
30 $INC = "$ENV{INC} -I/sdk/include -I/vc98/include -I/gtk/include";
31 $LIBS = ["$ENV{LIBS} -L/gtk/lib -lpthreadVC2"];
32 }
33
34 open my $fh, ">config.h"
35 or die "config.h: $!";
36 print $fh <<EOF;
37 EOF
38
39 } else {
40
41 $INC = "";
42 $LIBS = ['-lpthread', '-lpthreads', ''];
43
44 if ($^O =~ /bsd/i) {
45 print <<EOF;
46
47 If you have problems with deadlocks or crashes on your system,
48 make sure your perl has been linked with -lpthread (you might try
49 LD_PRELOAD=/path/to/libpthread.so as a workaround). Also, pthread support
50 under many BSDs is not the best - before reporting a bug in this module,
51 make sure it's not an OS bug.
52
53 EOF
54 }
55
56 {
57 local %ENV = %ENV;
58
59 while (my ($k, $v) = each %Config) {
60 $ENV{$k} = $v;
61 }
62
63 $ENV{MAKE} = $Config{make};
64 $ENV{SHELL} = $Config{sh};
65 $ENV{CC} = $Config{cc};
66 $ENV{CPPFLAGS} = "$Config{cppflags} -I$Config{archlibexp}/CORE";
67 $ENV{CFLAGS} = $Config{ccflags};
68 $ENV{LDFLAGS} = "$Config{ldflags} -L$Config{archlibexp}/CORE -L$Config{privlibexp}";
69 $ENV{LINKER} = $Config{ld}; # nonstandard
70 $ENV{LIBS} = "-lperl";
71
72 system $ENV{SHELL}, -c => "./configure --prefix \Q$Config{prefixexp}\E"
73 and exit $? >> 8;
74 }
75 }
76
77 if ($^O =~ /linux/ && $Config{usemymalloc} eq "y") {
78 print <<EOF;
79
80 ***
81 *** WARNING:
82 ***
83 *** Your perl uses its own memory allocator (-Dusemymalloc=y),
84 *** which is known not to be threadsafe on GNU/Linux and probably
85 *** other platforms (even when not used concurrently, it trashes
86 *** the data structures of the system malloc running concurrently),
87 *** for perls up to 5.8.8 and possibly later versions.
88 ***
89 *** If you are unsure wether your perl has been fixed, your system
90 *** is safe for other reasons, or you experience spurious segfaults,
91 *** please compile your perl with -Dusemymalloc=n.
92 ***
93
94 EOF
95 }
96
97 my $mm = MM->new({
98 dist => {
99 PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
100 COMPRESS => 'gzip -9v',
101 SUFFIX => '.gz',
102 },
103 depend => {
104 "AIO.c" => "schmorp.h libeio/eio.h libeio/xthread.h libeio/etp.c libeio/eio.c config.h",
105 },
106 NAME => "IO::AIO",
107 VERSION_FROM => "AIO.pm",
108 INC => $INC,
109 LIBS => $LIBS,
110 EXE_FILES => ["bin/treescan"],
111 PM => {
112 'AIO.pm' => '$(INST_LIB)/IO/AIO.pm',
113 },
114 CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 2001 },
115 PREREQ_PM => {
116 "common::sense" => 0,
117 },
118 clean => { FILES => "config.h libeio/config.h libeio/config.log libeio/config.status" },
119 });
120
121 $mm->flush;
122