Remove configure{,.in} from MANIFEST.
skimo [Sat, 1 Sep 2001 13:09:20 +0000 (13:09 +0000)]
Include install.sh in distribution (needed by configure).

perl/MANIFEST
perl/Makefile.PL

index f6f7af3..72f699b 100644 (file)
@@ -4,8 +4,6 @@ FCGI.XL
 MANIFEST
 Makefile.PL
 README
-configure
-configure.in
 configure.readme
 echo.PL
 remote.PL
index 7594340..1c80424 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Makefile.PL,v 1.19 2001/09/01 02:55:48 robs Exp $
+# $Id: Makefile.PL,v 1.20 2001/09/01 13:09:20 skimo Exp $
 
 use ExtUtils::MakeMaker;
 use IO::File;
@@ -9,7 +9,7 @@ use Getopt::Long;
 @h1 = qw(fastcgi.h fcgiapp.h fcgimisc.h fcgios.h);
 @h = (@h1, 'fcgi_config.h');
 @o = qw(FCGI.o);
-@dist1 = qw(LICENSE.TERMS configure configure.in);
+@dist1 = qw(LICENSE.TERMS configure configure.in install.sh);
 @dist2 = qw(fcgiapp.c os_unix.c os_win32.c);
 @dist3 = (@h1, qw(fcgi_config.h.in fcgi_config_x86.h));
 
@@ -155,5 +155,5 @@ if ($sys eq "win32") {
     print "Please read configure.readme for information on how to run it yourself\n";
 
     $ENV{'CC'} = $Config{'cc'};
-    system("./configure");
+    system("sh configure");
 }