Add configure and configure.in to the distribution fileset.
[catagits/fcgi2.git] / perl / Makefile.PL
1 # $Id: Makefile.PL,v 1.17 2001/08/30 22:09:21 robs Exp $
2
3 use ExtUtils::MakeMaker;
4 use IO::File;
5 use Config;
6 use Cwd 'cwd';
7 use Getopt::Long;
8
9 @h1 = qw(fastcgi.h fcgiapp.h fcgimisc.h fcgios.h);
10 @h = (@h1, 'fcgi_config.h');
11 @o = qw(FCGI.o);
12 @dist1 = qw(LICENSE.TERMS acconfig.h configure configure.in);
13 @dist2 = qw(fcgiapp.c os_unix.c os_win32.c);
14 @dist3 = (@h1, qw(fcgi_config.h.in fcgi_config_x86.h));
15
16 GetOptions ("pure-perl!" => \$pure);
17 $pure = 
18     (prompt("Do you want to use the pure perl implementation", "no") =~ /^y/) 
19     ? "1" : "0" unless defined $pure;
20 open(CFG,">FCGI.cfg");
21 print CFG "\$pure = $pure;1;\n";
22 close CFG;
23
24 if (! $pure) {
25         my $cwd = cwd();
26         my $devkit = "$cwd/..";
27
28         if (-d "$devkit/libfcgi" && -d "$devkit/include") {
29                 # devkit
30                 if (grep { ! -f "$devkit/include/$_" } @dist3 
31                         or grep { ! -f "$devkit/libfcgi/$_" } @dist2)
32                 {
33                         warn "This appears to be a FastCGI devkit distribution, " .
34                                  "but one or more FastCGI library files are missing. \n" .
35                                  "Please check the integrity of the distribution.\n";
36                         exit -1;
37                 }
38
39                 # Copy the C lib files down to ensure a compatible build.
40                 print "Copying C library files from the devkit distribution\n";
41             use File::Copy qw(copy);
42
43                 # TODO: stop or save if a local file has been modified
44                 foreach (@dist3, @dist2) { unlink };
45                 foreach (@dist3) { copy("$devkit/include/$_", ".") || die $! };
46                 foreach (@dist2)  { copy("$devkit/libfcgi/$_", ".") || die $! };
47         }
48         else {
49             # CPAN  
50             for $dir ("/usr", "/usr/local") {
51                 if (-d "$dir/lib/" && -f "$dir/lib/libfcgi.a" 
52                         && -d "$dir/include" && !grep {!-f "$dir/include/$_"} (@h)) 
53                 {
54                     print "Found fcgi library and include files in $dir\n";
55                     print "Will be using those instead of the included files\n";
56                     print "Edit Makefile.PL if you don't like it\n";
57                     
58                     $prefix = $dir;
59                     push @libs, "-L$dir/lib -lfcgi"; 
60                     last;
61                 }
62             }
63         }
64 }
65
66 $sys = $^O eq 'MSWin32' ? 'win32' : 'unix';
67 push @o, "fcgiapp.o", "os_$sys.o" unless $prefix;
68 $inc = $prefix ? "-I$prefix/include" : '-I.';
69
70 push(@extras, CAPI => 'TRUE')
71      if ($] >= 5.005 and $^O eq 'MSWin32'
72         and $Config{archname} =~ /-object\b/i);
73
74 push(@extras,
75     ABSTRACT => 'Fast CGI module',
76     AUTHOR   => 'Sven Verdoolaege (skimo@kotnet.org)')
77         if ($ExtUtils::MakeMaker::VERSION >= 5.4301); 
78
79 $plfiles = { 'echo.PL' => 'echo.fpl', 
80              'remote.PL' => 'remote.fpl',
81              'threaded.PL' => 'threaded.fpl',
82              'FCGI.PL' => 'FCGI.pm',
83            };
84 $plfiles->{'FCGI.XL'} = 'FCGI.xs' unless $pure;
85 if ($pure) {
86     push @extras,
87         LINKTYPE => ' ';
88 } else {
89
90         if ("$sys" eq "win32") {
91                 @libs = (@libs) ? map { "$_ ws2_32.lib" } @libs : ('ws2_32.lib');
92                 push @extras, 'DEFINE' => '-DDLLAPI=__declspec(dllexport)';
93         }
94
95     push @extras,
96         'LIBS'  => [ @libs ],
97         'OBJECT'        => "@o",
98         'INC'   => $inc;
99 }
100         
101 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
102 # the contents of the Makefile that is written.
103
104 # Work around bug in previous versions of MakeMaker
105 WriteMakefile(NAME => 'FCGI') 
106     if $ExtUtils::MakeMaker::VERSION <= 5.4302;
107
108 $mm = MM->new({
109     'NAME'              => 'FCGI',
110     'VERSION_FROM'      => 'FCGI.PL',
111     'dist'              => { 'COMPRESS' => 'gzip -9f', 
112                              'SUFFIX' => 'gz',
113                              'PREOP' => '$(CP) '.join(' ',
114                                 map {"../$_"} @dist1,
115                                 (map {"libfcgi/$_"} @dist2),
116                                 map {"include/$_"} @dist3).' $(DISTVNAME);'.
117                                 '$(CP) MANIFEST MANIFEST.old;'.
118                                 'echo -e '. join('\\\n',@dist1,@dist2,@dist3) .
119                                 '>> $(DISTVNAME)/MANIFEST',
120                               'POSTOP' => 
121                                 '$(MV) MANIFEST.old MANIFEST',
122                             },
123     'clean'             => { FILES => 'config.cache fcgi_config.h' . 
124                                       ' FCGI.xs FCGI.c FCGI.cfg ' .
125                                       (join ' ', values %$plfiles)},
126     'PL_FILES'          => $plfiles,
127     PM                  => {'FCGI.pm' => '$(INST_ARCHLIBDIR)/FCGI.pm'},
128     @extras,
129 });
130 # don't install oldinterface pod
131 delete $mm->{MAN3PODS}{oldinterface.pod};
132 $mm->flush;
133
134 exit if -f 'fcgi_config.h' or $prefix or $pure;
135
136 # CPAN and no installed lib found
137 if ($sys eq "win32") {
138     # configure will almost certainly not run on a normal NT install,
139     # use the pregenerated configuration file
140
141     use File::Copy qw(copy);
142     print "Using prebuilt fcgi_config.h file for Windows\n";
143     unlink("fcgi_config.h");
144     die $! unless copy("fcgi_config_x86.h","fcgi_config.h");
145
146     # Win can't deal with existence of FCGI.xs or absence of FCGI.c
147     unlink("FCGI.xs");
148     open(F, ">FCGI.c"); close(F);
149     $now = time; $before = $now - 600;
150     utime $before, $before, "FCGI.c";
151     utime $now, $now, "FCGI.PL";
152 } else {
153     print "Running ./configure for you\n";
154     print "Please read configure.readme for information on how to run it yourself\n";
155
156     $ENV{'CC'} = $Config{'cc'};
157     system("./configure");
158 }