ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/Makefile.PL
Revision: 1.36
Committed: Tue Aug 14 09:29:50 2018 UTC (5 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-4_53
Changes since 1.35: +3 -1 lines
Log Message:
4.53

File Contents

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