12345678910111213141516171819202122 |
- $OpenBSD: patch-Makefile_PL,v 1.2 2008/09/23 20:57:20 jasper Exp $
- --- Makefile.PL.orig Mon Sep 22 10:22:31 2008
- +++ Makefile.PL Mon Sep 22 10:35:24 2008
- @@ -10,7 +10,7 @@ while (!$choice) {
- " 1) Interface to Ace socket server and local databases (pure Perl)\n" .
- " 2) The above plus XS optimizations (requires C compiler)\n" .
- " 3) The above plus RPC server interface (requires C compiler)\n\n" .
- - "Enter your choice: ", "1");
- + "Enter your choice: ", $ENV{'CHOICE1'});
- if ($reply =~ /(\d+)/) {
- $choice = $1;
- die "invalid choice: $choice!" if $choice < 1 || $choice > 3;
- @@ -24,7 +24,7 @@ push @extlib,'Freesubs' if $choice >= 2;
- push @extlib,'RPC' if $choice >= 3;
-
- print "\n";
- -setup_sitedefs() if prompt("Do you want to install Ace::Browser? ","n") =~ /[yY]/;
- +setup_sitedefs() if prompt("Do you want to install Ace::Browser? ",$ENV{'CHOICE2'}) =~ /[yY]/;
-
- my $headers = "./acelib/wh";
- WriteMakefile(
|