ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Linux-AIO/Makefile.PL
Revision: 1.7
Committed: Wed Jun 29 15:51:34 2005 UTC (18 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_5, rel-1_6
Changes since 1.6: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.3 use Config;
4    
5 root 1.7 $Config{cppsymbols} =~ /__i386=1/ or print <<EOF;
6 root 1.3
7 root 1.6 WARNING: This module is architecture-dependent and currently only
8     tested on some architectures. If the module (esp. aio_read and
9     aio_write) doesn't work, please report this and I'll fix it for
10     you. I promise ;)
11 root 1.3
12     EOF
13    
14     $Config{osvers} >= 2.4 or print <<EOF;
15    
16 root 1.4 WARNING: This module requires 64 bit file offset functionality only found
17 root 1.6 in linux-2.4 and later You might still compile this module on older linuxes,
18 root 1.3 but it won't run.
19    
20     DEVELOPERS: It is not difficult to get rid of this limitation, ask me and I'll tell
21     you what you need to change (and test, so I can add it!).
22    
23     EOF
24    
25 root 1.2 my $mm = MM->new({
26 root 1.1 dist => {
27     PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
28     COMPRESS => 'gzip -9v',
29     SUFFIX => '.gz',
30     },
31     NAME => "Linux::AIO",
32     VERSION_FROM => "AIO.pm",
33 root 1.2 });
34 root 1.1
35     sub MY::postamble {
36     <<EOF;
37    
38     # set \$VERSION in all modules
39     setver:
40 root 1.3 \$(PERL) -pi -e 's/^(\\s*\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' *.pm
41 root 1.1
42     EOF
43     }
44    
45 root 1.2 # now get rid of -fpic, because gcc can't use syscall'ed closures
46 root 1.5 # from within pic code on x86.
47    
48     use Config;
49    
50 root 1.7 if ($Config{cppsymbols} =~ /__i386=1/) {
51 root 1.5 for ($mm->{CCDLFLAGS}, $mm->{CCCDLFLAGS}, @{$mm->{RESULT}}) {
52     s/\B-f(pic|PIC)\b//g
53     }
54 root 1.2 }
55    
56     $mm->flush;
57 root 1.1