Reinstate PERL_MALLOC_WRAP for bcc32 on Win32
[p5sagit/p5-mst-13.2.git] / lib / CPAN / FirstTime.pm
1 # -*- Mode: cperl; coding: utf-8; cperl-indent-level: 4 -*-
2 package CPAN::Mirrored::By;
3
4 sub new { 
5     my($self,@arg) = @_;
6     bless [@arg], $self;
7 }
8 sub continent { shift->[0] }
9 sub country { shift->[1] }
10 sub url { shift->[2] }
11
12 package CPAN::FirstTime;
13
14 use strict;
15 use ExtUtils::MakeMaker ();
16 use FileHandle ();
17 use File::Basename ();
18 use File::Path ();
19 use File::Spec;
20 use vars qw($VERSION);
21 $VERSION = substr q$Revision: 1.60_01 $, 10;
22
23 =head1 NAME
24
25 CPAN::FirstTime - Utility for CPAN::Config file Initialization
26
27 =head1 SYNOPSIS
28
29 CPAN::FirstTime::init()
30
31 =head1 DESCRIPTION
32
33 The init routine asks a few questions and writes a CPAN::Config
34 file. Nothing special.
35
36 =cut
37
38
39 sub init {
40     my($configpm) = @_;
41     use Config;
42     unless ($CPAN::VERSION) {
43         require CPAN::Nox;
44     }
45     eval {require CPAN::Config;};
46     $CPAN::Config ||= {};
47     local($/) = "\n";
48     local($\) = "";
49     local($|) = 1;
50
51     my($ans,$default);
52
53     #
54     # Files, directories
55     #
56
57     print qq[
58
59 CPAN is the world-wide archive of perl resources. It consists of about
60 100 sites that all replicate the same contents all around the globe.
61 Many countries have at least one CPAN site already. The resources
62 found on CPAN are easily accessible with the CPAN.pm module. If you
63 want to use CPAN.pm, you have to configure it properly.
64
65 If you do not want to enter a dialog now, you can answer 'no' to this
66 question and I\'ll try to autoconfigure. (Note: you can revisit this
67 dialog anytime later by typing 'o conf init' at the cpan prompt.)
68
69 ];
70
71     my $manual_conf = prompt("Are you ready for manual configuration?", "yes");
72     my $fastread;
73     {
74       if ($manual_conf =~ /^y/i) {
75         $fastread = 0;
76       } else {
77         $fastread = 1;
78         $CPAN::Config->{urllist} ||= [];
79
80         local $^W = 0;
81         # prototype should match that of &MakeMaker::prompt
82         *_real_prompt = sub ($;$) {
83           my($q,$a) = @_;
84           my($ret) = defined $a ? $a : "";
85           printf qq{%s [%s]\n\n}, $q, $ret;
86
87           $ret;
88         };
89       }
90     }
91     print qq{
92
93 The following questions are intended to help you with the
94 configuration. The CPAN module needs a directory of its own to cache
95 important index files and maybe keep a temporary mirror of CPAN files.
96 This may be a site-wide directory or a personal directory.
97
98 };
99
100     my $cpan_home = $CPAN::Config->{cpan_home} || File::Spec->catdir($ENV{HOME}, ".cpan");
101     if (-d $cpan_home) {
102         print qq{
103
104 I see you already have a  directory
105     $cpan_home
106 Shall we use it as the general CPAN build and cache directory?
107
108 };
109     } else {
110         print qq{
111
112 First of all, I\'d like to create this directory. Where?
113
114 };
115     }
116
117     $default = $cpan_home;
118     while ($ans = prompt("CPAN build and cache directory?",$default)) {
119       unless (File::Spec->file_name_is_absolute($ans)) {
120         require Cwd;
121         my $cwd = Cwd::cwd();
122         my $absans = File::Spec->catdir($cwd,$ans);
123         warn "The path '$ans' is not an absolute path. Please specify an absolute path\n";
124         $default = $absans;
125         next;
126       }
127       eval { File::Path::mkpath($ans); }; # dies if it can't
128       if ($@) {
129         warn "Couldn't create directory $ans.
130 Please retry.\n";
131         next;
132       }
133       if (-d $ans && -w _) {
134         last;
135       } else {
136         warn "Couldn't find directory $ans
137   or directory is not writable. Please retry.\n";
138       }
139     }
140     $CPAN::Config->{cpan_home} = $ans;
141
142     print qq{
143
144 If you want, I can keep the source files after a build in the cpan
145 home directory. If you choose so then future builds will take the
146 files from there. If you don\'t want to keep them, answer 0 to the
147 next question.
148
149 };
150
151     $CPAN::Config->{keep_source_where} = File::Spec->catdir($CPAN::Config->{cpan_home},"sources");
152     $CPAN::Config->{build_dir} = File::Spec->catdir($CPAN::Config->{cpan_home},"build");
153
154     #
155     # Cache size, Index expire
156     #
157
158     print qq{
159
160 How big should the disk cache be for keeping the build directories
161 with all the intermediate files\?
162
163 };
164
165     $default = $CPAN::Config->{build_cache} || 10;
166     $ans = prompt("Cache size for build directory (in MB)?", $default);
167     $CPAN::Config->{build_cache} = $ans;
168
169     # XXX This the time when we refetch the index files (in days)
170     $CPAN::Config->{'index_expire'} = 1;
171
172     print qq{
173
174 By default, each time the CPAN module is started, cache scanning
175 is performed to keep the cache size in sync. To prevent from this,
176 disable the cache scanning with 'never'.
177
178 };
179
180     $default = $CPAN::Config->{scan_cache} || 'atstart';
181     do {
182         $ans = prompt("Perform cache scanning (atstart or never)?", $default);
183     } while ($ans ne 'atstart' && $ans ne 'never');
184     $CPAN::Config->{scan_cache} = $ans;
185
186     #
187     # cache_metadata
188     #
189     print qq{
190
191 To considerably speed up the initial CPAN shell startup, it is
192 possible to use Storable to create a cache of metadata. If Storable
193 is not available, the normal index mechanism will be used.
194
195 };
196
197     defined($default = $CPAN::Config->{cache_metadata}) or $default = 1;
198     do {
199         $ans = prompt("Cache metadata (yes/no)?", ($default ? 'yes' : 'no'));
200     } while ($ans !~ /^[yn]/i);
201     $CPAN::Config->{cache_metadata} = ($ans =~ /^y/i ? 1 : 0);
202
203     #
204     # term_is_latin
205     #
206     print qq{
207
208 The next option deals with the charset your terminal supports. In
209 general CPAN is English speaking territory, thus the charset does not
210 matter much, but some of the aliens out there who upload their
211 software to CPAN bear names that are outside the ASCII range. If your
212 terminal supports UTF-8, you say no to the next question, if it
213 supports ISO-8859-1 (also known as LATIN1) then you say yes, and if it
214 supports neither nor, your answer does not matter, you will not be
215 able to read the names of some authors anyway. If you answer no, names
216 will be output in UTF-8.
217
218 };
219
220     defined($default = $CPAN::Config->{term_is_latin}) or $default = 1;
221     do {
222         $ans = prompt("Your terminal expects ISO-8859-1 (yes/no)?",
223                       ($default ? 'yes' : 'no'));
224     } while ($ans !~ /^[yn]/i);
225     $CPAN::Config->{term_is_latin} = ($ans =~ /^y/i ? 1 : 0);
226
227     #
228     # save history in file histfile
229     #
230     print qq{
231
232 If you have one of the readline packages (Term::ReadLine::Perl,
233 Term::ReadLine::Gnu, possibly others) installed, the interactive CPAN
234 shell will have history support. The next two questions deal with the
235 filename of the history file and with its size. If you do not want to
236 set this variable, please hit SPACE RETURN to the following question.
237
238 };
239
240     defined($default = $CPAN::Config->{histfile}) or
241         $default = File::Spec->catfile($CPAN::Config->{cpan_home},"histfile");
242     $ans = prompt("File to save your history?", $default);
243     $CPAN::Config->{histfile} = $ans;
244
245     if ($CPAN::Config->{histfile}) {
246       defined($default = $CPAN::Config->{histsize}) or $default = 100;
247       $ans = prompt("Number of lines to save?", $default);
248       $CPAN::Config->{histsize} = $ans;
249     }
250
251     #
252     # prerequisites_policy
253     # Do we follow PREREQ_PM?
254     #
255     print qq{
256
257 The CPAN module can detect when a module that which you are trying to
258 build depends on prerequisites. If this happens, it can build the
259 prerequisites for you automatically ('follow'), ask you for
260 confirmation ('ask'), or just ignore them ('ignore'). Please set your
261 policy to one of the three values.
262
263 };
264
265     $default = $CPAN::Config->{prerequisites_policy} || 'ask';
266     do {
267       $ans =
268           prompt("Policy on building prerequisites (follow, ask or ignore)?",
269                  $default);
270     } while ($ans ne 'follow' && $ans ne 'ask' && $ans ne 'ignore');
271     $CPAN::Config->{prerequisites_policy} = $ans;
272
273     #
274     # External programs
275     #
276
277     print qq{
278
279 The CPAN module will need a few external programs to work properly.
280 Please correct me, if I guess the wrong path for a program. Don\'t
281 panic if you do not have some of them, just press ENTER for those. To
282 disable the use of a download program, you can type a space followed
283 by ENTER.
284
285 };
286
287     my $old_warn = $^W;
288     local $^W if $^O eq 'MacOS';
289     my(@path) = split /$Config{'path_sep'}/, $ENV{'PATH'};
290     local $^W = $old_warn;
291     my $progname;
292     for $progname (qw/gzip tar unzip make 
293                       curl lynx wget ncftpget ncftp ftp 
294                       gpg/)
295     {
296       if ($^O eq 'MacOS') {
297           $CPAN::Config->{$progname} = 'not_here';
298           next;
299       }
300       my $progcall = $progname;
301       # we don't need ncftp if we have ncftpget
302       next if $progname eq "ncftp" && $CPAN::Config->{ncftpget} gt " ";
303       my $path = $CPAN::Config->{$progname} 
304           || $Config::Config{$progname}
305               || "";
306       if (File::Spec->file_name_is_absolute($path)) {
307         # testing existence is not good enough, some have these exe
308         # extensions
309
310         # warn "Warning: configured $path does not exist\n" unless -e $path;
311         # $path = "";
312       } else {
313         $path = '';
314       }
315       unless ($path) {
316         # e.g. make -> nmake
317         $progcall = $Config::Config{$progname} if $Config::Config{$progname};
318       }
319
320       $path ||= find_exe($progcall,[@path]);
321       warn "Warning: $progcall not found in PATH\n" unless
322           $path; # not -e $path, because find_exe already checked that
323       $ans = prompt("Where is your $progname program?",$path) || $path;
324       $CPAN::Config->{$progname} = $ans;
325     }
326     my $path = $CPAN::Config->{'pager'} || 
327         $ENV{PAGER} || find_exe("less",[@path]) || 
328             find_exe("more",[@path]) || ($^O eq 'MacOS' ? $ENV{EDITOR} : 0 )
329             || "more";
330     $ans = prompt("What is your favorite pager program?",$path);
331     $CPAN::Config->{'pager'} = $ans;
332     $path = $CPAN::Config->{'shell'};
333     if (File::Spec->file_name_is_absolute($path)) {
334         warn "Warning: configured $path does not exist\n" unless -e $path;
335         $path = "";
336     }
337     $path ||= $ENV{SHELL};
338     if ($^O eq 'MacOS') {
339         $CPAN::Config->{'shell'} = 'not_here';
340     } else {
341         $path =~ s,\\,/,g if $^O eq 'os2';      # Cosmetic only
342         $ans = prompt("What is your favorite shell?",$path);
343         $CPAN::Config->{'shell'} = $ans;
344     }
345
346     #
347     # Arguments to make etc.
348     #
349
350     print qq{
351
352 Every Makefile.PL is run by perl in a separate process. Likewise we
353 run \'make\' and \'make install\' in processes. If you have any
354 parameters \(e.g. PREFIX, LIB, UNINST or the like\) you want to pass
355 to the calls, please specify them here.
356
357 If you don\'t understand this question, just press ENTER.
358
359 };
360
361     $default = $CPAN::Config->{makepl_arg} || "";
362     $CPAN::Config->{makepl_arg} =
363         prompt("Parameters for the 'perl Makefile.PL' command?
364 Typical frequently used settings:
365
366     PREFIX=~/perl       non-root users (please see manual for more hints)
367
368 Your choice: ",$default);
369     $default = $CPAN::Config->{make_arg} || "";
370     $CPAN::Config->{make_arg} = prompt("Parameters for the 'make' command?
371 Typical frequently used setting:
372
373     -j3              dual processor system
374
375 Your choice: ",$default);
376
377     $default = $CPAN::Config->{make_install_arg} || $CPAN::Config->{make_arg} || "";
378     $CPAN::Config->{make_install_arg} =
379         prompt("Parameters for the 'make install' command?
380 Typical frequently used setting:
381
382     UNINST=1         to always uninstall potentially conflicting files
383
384 Your choice: ",$default);
385
386     #
387     # Alarm period
388     #
389
390     print qq{
391
392 Sometimes you may wish to leave the processes run by CPAN alone
393 without caring about them. As sometimes the Makefile.PL contains
394 question you\'re expected to answer, you can set a timer that will
395 kill a 'perl Makefile.PL' process after the specified time in seconds.
396
397 If you set this value to 0, these processes will wait forever. This is
398 the default and recommended setting.
399
400 };
401
402     $default = $CPAN::Config->{inactivity_timeout} || 0;
403     $CPAN::Config->{inactivity_timeout} =
404         prompt("Timeout for inactivity during Makefile.PL?",$default);
405
406     # Proxies
407
408     print qq{
409
410 If you\'re accessing the net via proxies, you can specify them in the
411 CPAN configuration or via environment variables. The variable in
412 the \$CPAN::Config takes precedence.
413
414 };
415
416     for (qw/ftp_proxy http_proxy no_proxy/) {
417         $default = $CPAN::Config->{$_} || $ENV{$_};
418         $CPAN::Config->{$_} = prompt("Your $_?",$default);
419     }
420
421     if ($CPAN::Config->{ftp_proxy} ||
422         $CPAN::Config->{http_proxy}) {
423         $default = $CPAN::Config->{proxy_user} || $CPAN::LWP::UserAgent::USER;
424         print qq{
425
426 If your proxy is an authenticating proxy, you can store your username
427 permanently. If you do not want that, just press RETURN. You will then
428 be asked for your username in every future session.
429
430 };
431         if ($CPAN::Config->{proxy_user} = prompt("Your proxy user id?",$default)) {
432             print qq{
433
434 Your password for the authenticating proxy can also be stored
435 permanently on disk. If this violates your security policy, just press
436 RETURN. You will then be asked for the password in every future
437 session.
438
439 };
440
441             if ($CPAN::META->has_inst("Term::ReadKey")) {
442                 Term::ReadKey::ReadMode("noecho");
443             } else {
444                 print qq{
445
446 Warning: Term::ReadKey seems not to be available, your password will
447 be echoed to the terminal!
448
449 };
450             }
451             $CPAN::Config->{proxy_pass} = prompt_no_strip("Your proxy password?");
452             if ($CPAN::META->has_inst("Term::ReadKey")) {
453                 Term::ReadKey::ReadMode("restore");
454             }
455             $CPAN::Frontend->myprint("\n\n");
456         }
457     }
458
459     #
460     # MIRRORED.BY
461     #
462
463     conf_sites() unless $fastread;
464
465     # We don't ask that now, it will be noticed in time, won't it?
466     $CPAN::Config->{'inhibit_startup_message'} = 0;
467     $CPAN::Config->{'getcwd'} = 'cwd';
468
469     print "\n\n";
470     CPAN::Config->commit($configpm);
471 }
472
473 sub conf_sites {
474   my $m = 'MIRRORED.BY';
475   my $mby = File::Spec->catfile($CPAN::Config->{keep_source_where},$m);
476   File::Path::mkpath(File::Basename::dirname($mby));
477   if (-f $mby && -f $m && -M $m < -M $mby) {
478     require File::Copy;
479     File::Copy::copy($m,$mby) or die "Could not update $mby: $!";
480   }
481   my $loopcount = 0;
482   local $^T = time;
483   my $overwrite_local = 0;
484   if ($mby && -f $mby && -M _ <= 60 && -s _ > 0) {
485       my $mtime = localtime((stat _)[9]);
486       my $prompt = qq{Found $mby as of $mtime
487
488 I\'d use that as a database of CPAN sites. If that is OK for you,
489 please answer 'y', but if you want me to get a new database now,
490 please answer 'n' to the following question.
491
492 Shall I use the local database in $mby?};
493       my $ans = prompt($prompt,"y");
494       $overwrite_local = 1 unless $ans =~ /^y/i;
495   }
496   while ($mby) {
497     if ($overwrite_local) {
498       print qq{Trying to overwrite $mby
499 };
500       $mby = CPAN::FTP->localize($m,$mby,3);
501       $overwrite_local = 0;
502     } elsif ( ! -f $mby ){
503       print qq{You have no $mby
504   I\'m trying to fetch one
505 };
506       $mby = CPAN::FTP->localize($m,$mby,3);
507     } elsif (-M $mby > 60 && $loopcount == 0) {
508       print qq{Your $mby is older than 60 days,
509   I\'m trying to fetch one
510 };
511       $mby = CPAN::FTP->localize($m,$mby,3);
512       $loopcount++;
513     } elsif (-s $mby == 0) {
514       print qq{You have an empty $mby,
515   I\'m trying to fetch one
516 };
517       $mby = CPAN::FTP->localize($m,$mby,3);
518     } else {
519       last;
520     }
521   }
522   read_mirrored_by($mby);
523   bring_your_own();
524 }
525
526 sub find_exe {
527     my($exe,$path) = @_;
528     my($dir);
529     #warn "in find_exe exe[$exe] path[@$path]";
530     for $dir (@$path) {
531         my $abs = File::Spec->catfile($dir,$exe);
532         if (($abs = MM->maybe_command($abs))) {
533             return $abs;
534         }
535     }
536 }
537
538 sub picklist {
539     my($items,$prompt,$default,$require_nonempty,$empty_warning)=@_;
540     $default ||= '';
541
542     my $pos = 0;
543
544     my @nums;
545     while (1) {
546
547         # display, at most, 15 items at a time
548         my $limit = $#{ $items } - $pos;
549         $limit = 15 if $limit > 15;
550
551         # show the next $limit items, get the new position
552         $pos = display_some($items, $limit, $pos);
553         $pos = 0 if $pos >= @$items;
554
555         my $num = prompt($prompt,$default);
556
557         @nums = split (' ', $num);
558         my $i = scalar @$items;
559         (warn "invalid items entered, try again\n"), next
560             if grep (/\D/ || $_ < 1 || $_ > $i, @nums);
561         if ($require_nonempty) {
562             (warn "$empty_warning\n");
563         }
564         print "\n";
565
566         # a blank line continues...
567         next unless @nums;
568         last;
569     }
570     for (@nums) { $_-- }
571     @{$items}[@nums];
572 }
573
574 sub display_some {
575         my ($items, $limit, $pos) = @_;
576         $pos ||= 0;
577
578         my @displayable = @$items[$pos .. ($pos + $limit)];
579     for my $item (@displayable) {
580                 printf "(%d) %s\n", ++$pos, $item;
581     }
582         printf("%d more items, hit SPACE RETURN to show them\n",
583                (@$items - $pos)
584               )
585             if $pos < @$items;
586         return $pos;
587 }
588
589 sub read_mirrored_by {
590     my $local = shift or return;
591     my(%all,$url,$expected_size,$default,$ans,$host,$dst,$country,$continent,@location);
592     my $fh = FileHandle->new;
593     $fh->open($local) or die "Couldn't open $local: $!";
594     local $/ = "\012";
595     while (<$fh>) {
596         ($host) = /^([\w\.\-]+)/ unless defined $host;
597         next unless defined $host;
598         next unless /\s+dst_(dst|location)/;
599         /location\s+=\s+\"([^\"]+)/ and @location = (split /\s*,\s*/, $1) and
600             ($continent, $country) = @location[-1,-2];
601         $continent =~ s/\s\(.*//;
602         $continent =~ s/\W+$//; # if Jarkko doesn't know latitude/longitude
603         /dst_dst\s+=\s+\"([^\"]+)/  and $dst = $1;
604         next unless $host && $dst && $continent && $country;
605         $all{$continent}{$country}{$dst} = CPAN::Mirrored::By->new($continent,$country,$dst);
606         undef $host;
607         $dst=$continent=$country="";
608     }
609     $fh->close;
610     $CPAN::Config->{urllist} ||= [];
611     my(@previous_urls);
612     if (@previous_urls = @{$CPAN::Config->{urllist}}) {
613         $CPAN::Config->{urllist} = [];
614     }
615
616     print qq{
617
618 Now we need to know where your favorite CPAN sites are located. Push
619 a few sites onto the array (just in case the first on the array won\'t
620 work). If you are mirroring CPAN to your local workstation, specify a
621 file: URL.
622
623 First, pick a nearby continent and country (you can pick several of
624 each, separated by spaces, or none if you just want to keep your
625 existing selections). Then, you will be presented with a list of URLs
626 of CPAN mirrors in the countries you selected, along with previously
627 selected URLs. Select some of those URLs, or just keep the old list.
628 Finally, you will be prompted for any extra URLs -- file:, ftp:, or
629 http: -- that host a CPAN mirror.
630
631 };
632
633     my (@cont, $cont, %cont, @countries, @urls, %seen);
634     my $no_previous_warn = 
635        "Sorry! since you don't have any existing picks, you must make a\n" .
636        "geographic selection.";
637     @cont = picklist([sort keys %all],
638                      "Select your continent (or several nearby continents)",
639                      '',
640                      ! @previous_urls,
641                      $no_previous_warn);
642
643
644     foreach $cont (@cont) {
645         my @c = sort keys %{$all{$cont}};
646         @cont{@c} = map ($cont, 0..$#c);
647         @c = map ("$_ ($cont)", @c) if @cont > 1;
648         push (@countries, @c);
649     }
650
651     if (@countries) {
652         @countries = picklist (\@countries,
653                                "Select your country (or several nearby countries)",
654                                '',
655                                ! @previous_urls,
656                                $no_previous_warn);
657         %seen = map (($_ => 1), @previous_urls);
658         # hmmm, should take list of defaults from CPAN::Config->{'urllist'}...
659         foreach $country (@countries) {
660             (my $bare_country = $country) =~ s/ \(.*\)//;
661             my @u = sort keys %{$all{$cont{$bare_country}}{$bare_country}};
662             @u = grep (! $seen{$_}, @u);
663             @u = map ("$_ ($bare_country)", @u)
664                if @countries > 1;
665             push (@urls, @u);
666         }
667     }
668     push (@urls, map ("$_ (previous pick)", @previous_urls));
669     my $prompt = "Select as many URLs as you like (by number),
670 put them on one line, separated by blanks, e.g. '1 4 5'";
671     if (@previous_urls) {
672        $default = join (' ', ((scalar @urls) - (scalar @previous_urls) + 1) ..
673                              (scalar @urls));
674        $prompt .= "\n(or just hit RETURN to keep your previous picks)";
675     }
676
677     @urls = picklist (\@urls, $prompt, $default);
678     foreach (@urls) { s/ \(.*\)//; }
679     push @{$CPAN::Config->{urllist}}, @urls;
680 }
681
682 sub bring_your_own {
683     my %seen = map (($_ => 1), @{$CPAN::Config->{urllist}});
684     my($ans,@urls);
685     do {
686         my $prompt = "Enter another URL or RETURN to quit:";
687         unless (%seen) {
688             $prompt = qq{CPAN.pm needs at least one URL where it can fetch CPAN files from.
689
690 Please enter your CPAN site:};
691         }
692         $ans = prompt ($prompt, "");
693
694         if ($ans) {
695             $ans =~ s|/?\z|/|; # has to end with one slash
696             $ans = "file:$ans" unless $ans =~ /:/; # without a scheme is a file:
697             if ($ans =~ /^\w+:\/./) {
698                 push @urls, $ans unless $seen{$ans}++;
699             } else {
700                 printf(qq{"%s" doesn\'t look like an URL at first sight.
701 I\'ll ignore it for now.
702 You can add it to your %s
703 later if you\'re sure it\'s right.\n},
704                        $ans,
705                        $INC{'CPAN/MyConfig.pm'} || $INC{'CPAN/Config.pm'} || "configuration file",
706                       );
707             }
708         }
709     } while $ans || !%seen;
710
711     push @{$CPAN::Config->{urllist}}, @urls;
712     # xxx delete or comment these out when you're happy that it works
713     print "New set of picks:\n";
714     map { print "  $_\n" } @{$CPAN::Config->{urllist}};
715 }
716
717
718 sub _strip_spaces {
719     $_[0] =~ s/^\s+//;  # no leading spaces
720     $_[0] =~ s/\s+\z//; # no trailing spaces
721 }
722
723
724 sub prompt ($;$) {
725     my $ans = _real_prompt(@_);
726
727     _strip_spaces($ans);
728
729     return $ans;
730 }
731
732
733 sub prompt_no_strip ($;$) {
734     return _real_prompt(@_);
735 }
736
737
738 *_real_prompt = \*ExtUtils::MakeMaker::prompt;
739
740
741 1;