ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/Makefile.PL
Revision: 1.15
Committed: Sat May 10 18:06:41 2008 UTC (16 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.14: +23 -5 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     use Config;
4    
5 root 1.9 if ($^O =~ /win32/i or $^O =~ /mswin/) {
6    
7     # configuration on windows is hardcoded - as always
8    
9 root 1.13 warn "your platform is not standards-compliant, you have to port this module first\n";
10     warn "using some hardcoded config that will not work on your system\n";
11    
12     $INC = "-I/Perl/lib/CORE -I/sdk/include -I/vc98/include -I/gtk/include -I/gtk/include/pango-1.0 -I/gtk/include/glib-2.0 -I/gtk/lib/glib-2.0/include/ -I/gtk/include/freetype2";
13 root 1.14 $LIBS = ["-L/gtk/lib -lpthreadVC2"];
14 root 1.9
15     } else {
16    
17 root 1.13 $INC = "";
18     $LIBS = ['-lpthread -lrt', '-lpthread', '-lpthreads', '-lpthreadVC2', ''];
19    
20 root 1.9 if ($^O =~ /freebsd/i) {
21     print <<EOF;
22 root 1.5
23 root 1.8 This package seems to deadlock or otherwise misbehave under FreeBSD. As
24     documentation on FreeBSD threading is sorely lacking and confusing, I'll
25     just call FreeBSD broken with regards to threading.
26    
27     If you find out whats wrong, please tell me.
28    
29     Some people had luck with using OPTIMIZE=-O instead of -O2, so you might
30     want to try that.
31 root 1.5
32     EOF
33 root 1.9 }
34    
35 root 1.15 {
36     local %ENV = %ENV;
37    
38     while (my ($k, $v) = each %Config) {
39     $ENV{$k} = $v;
40     }
41    
42     $ENV{MAKE} = $Config{make};
43     $ENV{SHELL} = $Config{sh};
44     $ENV{CC} = $Config{cc};
45     $ENV{CPPFLAGS} = $Config{cppflags};
46     $ENV{CFLAGS} = $Config{ccflags};
47     $ENV{LDFLAGS} = $Config{ldflags};
48     $ENV{LIBS} = $Config{libs};
49     $ENV{LINKER} = $Config{ld}; # nonstandard
50    
51     system $ENV{SHELL}, -c => "cd libeio && ./configure --prefix \Q$Config{prefixexp}\E"
52     and exit $? >> 8;
53     }
54 root 1.5 }
55    
56 root 1.10 if ($^O =~ /linux/ && $Config{usemymalloc} eq "y") {
57     print <<EOF;
58    
59     ***
60     *** WARNING:
61     ***
62     *** Your perl uses it's own memory allocator (-Dusemymalloc=y),
63     *** which is known not to be threadsafe on GNU/Linux and probably
64     *** other platforms (even when not used concurrently, it trashes
65     *** the data structures of the system malloc running concurrently),
66     *** for perls up to 5.8.8 and possibly later versions.
67     ***
68     *** If you are unsure wether your perl has been fixed, your system
69     *** is safe for other reasons, or you experience spurious segfaults,
70     *** please compile your perl with -Dusemymalloc=n.
71     ***
72    
73     EOF
74     }
75    
76 root 1.1 my $mm = MM->new({
77     dist => {
78     PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
79     COMPRESS => 'gzip -9v',
80     SUFFIX => '.gz',
81     },
82 root 1.15 depend => {
83     "AIO.c" => "libeio/eio.h libeio/eio.c libeio/config.h",
84     },
85 root 1.1 NAME => "IO::AIO",
86     VERSION_FROM => "AIO.pm",
87 root 1.13 INC => $INC,
88     LIBS => $LIBS,
89 root 1.11 PM => {
90 root 1.12 'AIO.pm' => '$(INST_LIBDIR)/AIO.pm',
91 root 1.11 },
92 root 1.15 clean => { FILES => "libeio/config.h libeio/config.log libeio/config.status" },
93 root 1.1 });
94    
95     $mm->flush;
96