-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.me
executable file
·644 lines (621 loc) · 21.4 KB
/
install.me
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
#! /usr/local/bin/perl
##---------------------------------------------------------------------------##
## File:
## install.me
## Author:
## Earl Hood [email protected]
## Description:
## Configurable installation program.
## Just edit the variables in the CONFIG section for setting defaults
## for the particular program.
## To Do:
## o Add support for manpages to go in different section directories.
##
##---------------------------------------------------------------------------##
## Copyright (C) 1995,1996 Earl Hood, [email protected]
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##---------------------------------------------------------------------------##
###############################################################################
package main;
## Check what system we are executing under
{
local($tmp);
if (($tmp = $ENV{'COMSPEC'}) && ($tmp =~ /[a-zA-Z]:\\/) && (-e $tmp)) {
$'MSDOS = 1; $'MACOS = 0; $'UNIX = 0;
$'DIRSEP = '\\'; $'CURDIR = '.';
} elsif (defined($MacPerl'Version)) {
$'MSDOS = 0; $'MACOS = 1; $'UNIX = 0;
$'DIRSEP = ':'; $'CURDIR = ':';
} else {
$'MSDOS = 0; $'MACOS = 0; $'UNIX = 1;
$'DIRSEP = '/'; $'CURDIR = '.';
}
## Store name of program
($tmp = $'DIRSEP) =~ s/(\W)/\\$1/g;
($'PROG = $0) =~ s%.*[$tmp]%%o;
}
##---------------------------------------------------------------------------
## Begin CONFIG section
##
eval 'umask 022' if $UNIX; # Set umask
## Set flags
$dobin = 1; # Set to 1 if exectuables to install
$dolib = 1; # Set to 1 if libraries to install
$dodoc = 1; # Set to 1 if documents to install
## Set default values
$bindir = (!$MSDOS ? '/usr/local/bin' : 'C:\\BIN');
$libdir = (!$MSDOS ? '/usr/local/lib/MHonArc' : 'C:\\LIB\\MHONARC');
$docdir = (!$MSDOS ? '/usr/local/lib/MHonArc/doc' : 'C:\\DOC\\MHONARC');
$perlprg = (!$MSDOS ? '/usr/local/bin/perl' : 'C:\\BIN\\PERL.EXE');
## Set files to install
$relbin = '.'; # Location of source bin files relative to install.me
@binfiles = (
"mhonarc",
);
$rellib = 'lib'; # Location of source lib files relative to install.me
@libfiles = (
"base64.pl",
"mhdb.pl",
"mhexternal.pl",
"mhtxt2022.pl",
"mhtxthtml.pl",
"mhtxtplain.pl",
"mhtxtsetext.pl",
"mhinit.pl",
"mhutil.pl",
"osinit.pl",
"qprint.pl",
"readmail.pl",
);
$reldoc = 'doc'; # Location of source doc files relative to install.me
@docfiles = (
"adding.html",
"contacts.html",
"details.html",
"diagnos.html",
"indexpg.html",
"install.html",
"intro.html",
"message.html",
"mhonarc.html",
"mhonarc.txt",
"mime.html",
"overview.html",
"qstart.html",
"rcfile.html",
"removing.html",
"stamp_t.gif",
"thread.html",
);
## Define intro text
$introText =<<EndofIntro;
MHonArc Installation
====================
The installation process will ask you a series of questions on where
the Perl executable is and where to put MHonArc files. Just hit <CR>
to accept the default values listed in ()'s.
If directory path does not exist on your system, the installation
program will create the path for you.
EndofIntro
##
## End CONFIG section
##---------------------------------------------------------------------------
##---------------------------------------------------------------------------
## Main routine
##---------------------------------------------------------------------------
{
{ package uio;
@LastText = (); ## Cached text
$use_handler = 1; ## Flag to use private CONT signal handler
$ext_sigcont; ## External CONT handler
}
if ($ARGV[0]) { ## Check for batch mode
eval qq{require "$ARGV[0]"};
die "ERROR: Unable to read $ARGV[0]\n" if $@;
} else { ## Interactive mode
print STDOUT $introText;
&print_note("Make sure all pathnames are absolute.");
&pause();
do {
## Get installation directories and path to Perl
while (1) {
$tmp = &prompt_user_def("Perl executable", $perlprg, 0, 1);
last if -x $tmp;
print STDERR "$tmp not executable\n";
}
$perlprg = $tmp;
if ($dobin) {
do {
$tmp = &prompt_user_def("Location to install programs",
$bindir, 0, 1);
} while (!&create_dir($tmp));
$bindir = $tmp;
}
if ($dolib) {
do {
$tmp = &prompt_user_def("Location to install libraries",
$libdir, 0, 1);
} while (!&create_dir($tmp));
$libdir = $tmp;
}
if ($dodoc) {
if (&ask_question("Install documentation", 1)) {
do {
$tmp = &prompt_user_def("Location to install docs",
$docdir, 0, 1);
} while (!&create_dir($tmp));
$docdir = $tmp;
} else {
$dodoc = 0;
}
}
print STDOUT "\n",
"You've specified the following:\n",
"\tPerl location: $perlprg\n";
print STDOUT "\tProgram directory: $bindir\n" if $dobin;
print STDOUT "\tLibrary directory: $libdir\n" if $dolib;
print STDOUT "\tDoc directory: $docdir\n" if $dodoc;
} while (!&ask_question("Is this correct", 1));
}
## Install files
$perlprg = "#! $perlprg\n";
$perlprg .= "unshift(\@INC, '$libdir');\n" if $dolib;
if ($dobin && @binfiles) {
print STDOUT "Installing the following into $bindir\n";
foreach $file (@binfiles) {
&cp("$relbin$DIRSEP$file", "$bindir$DIRSEP$file", $perlprg);
print STDOUT "\t", $file, "\n";
chmod 0755, "$bindir/$file";
}
}
if ($dolib && @libfiles) {
print STDOUT "Installing the following into $libdir\n";
foreach $file (@libfiles) {
&cp("$rellib$DIRSEP$file", "$libdir$DIRSEP$file");
print STDOUT "\t", $file, "\n";
}
}
if ($dodoc && @docfiles) {
print STDOUT "Installing the following into $docdir\n";
foreach $file (@docfiles) {
&cp("$reldoc$DIRSEP$file", "$docdir$DIRSEP$file");
print STDOUT "\t", $file, "\n";
}
}
exit 0;
}
##---------------------------------------------------------------------------
## Main subroutines
##---------------------------------------------------------------------------
sub create_dir {
local($d) = shift;
local($tmp);
($tmp = $DIRSEP) =~ s/(\W)/\\$1/g;
local(@a) = grep($_ ne '', split(/$tmp/o, $d));
local($path, $dir);
if ($MSDOS) {
if ($d =~ m%^\s*([a-zA-Z]:)?[/\\]%) {
$path = shift @a;
} else {
$path = '.';
}
} else {
if ($d =~ /^\s*\//) {
$path = '';
} else {
$path = '.';
}
}
foreach $dir (@a) {
if (! -e "$path$DIRSEP$dir") {
if (!mkdir("$path$DIRSEP$dir", 0777)) {
print STDERR "Unable to create $path$DIRSEP$dir: $!\n";
return 0;
}
} elsif (! -d "$path$DIRSEP$dir") {
print STDERR "$dir is not a directory\n";
return 0;
}
$path .= $DIRSEP . $dir;
}
if (! -w $d) {
print STDERR "$d not writable\n";
return 0;
}
1;
}
##---------------------------------------------------------------------------
sub cp {
local($src, $dst, $prepend) = @_;
open(SRC, $src) || die "Unable to open $src: $!\n";
open(DST, "> $dst") || die "Unable to create $dst: $!\n";
if (-B $src) { binmode( SRC ); binmode( DST ); }
if ($prepend) {
print DST $prepend;
}
print DST <SRC>;
close(SRC);
close(DST);
}
###############################################################################
package uio;
##---------------------------------------------------------------------------##
## The following routines are defined in this package. All routines
## work off of STDOUT.
## sub main'ask_question -- ask yes/no question
## sub main'do_num_menu -- autonumber menu items & print
## sub main'flush -- flush filehandle
## sub main'get_char_choice -- get char that is in list
## sub main'get_later_date -- Get date later than some date
## sub main'get_lc_string -- get string converted to lowercase
## sub main'get_string -- get string
## sub main'pause -- pause until <CR> hit
## sub main'print_error -- print error message
## sub main'print_info -- print information message
## sub main'print_menu -- print a menu to screen
## sub main'print_note -- print note message
## sub main'print_warning -- print warning message
## sub main'prompt_user -- prompt user for string
## sub main'prompt_user_def -- prompt_user() with default value
##
## Private routines.
## sub handler -- private SIGCONT handler
## sub print_message -- print typed message to screen
## sub print_txt -- print text and cache it
## sub reset_handler -- unregister handler()
## sub set_handler -- register handler()
##
## Notes:
## For the pause() and prompt_user*() routines, a signal handler
## is registered to handle the SIGCONT signal. This enables the
## routines to redisplay the prompt after the program has been
## suspended and continued while prompting the user for input.
## The handler has to redisplay the text, therefore the mentioned
## routines use the print_txt() for caching the prompt text.
##
## When the signal handler is registered, any existing handler for
## SIGCONT is stored and is called first before redisplaying the
## cached text. Uio's signal handler can be disabled if the
## variable $uio'use_handler is set to zero. By default, the
## value is one. More inforamtion is below in the various
## subroutine descriptions.
##---------------------------------------------------------------------------##
##------------------##
## Global variables ##
##------------------##
##---------------------------------------------------------------------------
@LastText = (); ## Cached text
$use_handler = 1; ## Flag to use private CONT signal handler
$ext_sigcont; ## External CONT handler
##---------------------------------------------------------------------------
##---------------------------------##
## Private subroutine declerations ##
##---------------------------------##
##---------------------------------------------------------------------------
## print_txt() prints @_ to STDOUT. It also makes a copy of @_ to
## an array called @LastText. Any outside package can access it
## using uio'LastText. This is useful for redisplaying text
## after the program has been suspended and continued.
##
sub print_txt {
print STDOUT @_; @LastText = @_;
}
##---------------------------------------------------------------------------
## This routine is used by print_{error, info, note, warning}
## routines to output an informitive message to STDOUT.
##
sub print_message {
local($type, $mesg) = ($_[0], join("", @_[1 .. $#_]));
local($head) = sprintf(" %9s", "$type ");
local($indent) = " " x 13;
local($i, $dashes, @array);
@array = split(/\n/, $mesg);
foreach (@array) { $i = length($_) if length($_) > $i; }
$dashes = " " x 4 . "-" x ($i+10);
$mesg = join("\n", @array);
$* = 1;
$mesg =~ s/\n/\n$indent/g;
$mesg = $head . $mesg;
print STDOUT "$dashes\n", "$mesg\n", "$dashes\n";
$* = 0;
}
##---------------------------------------------------------------------------
## handler() is the private signal handler for the uio package.
## It's used to when SIGCONT is caught for redisplay cached text.
## The external handler is called if defined.
##
sub handler {
if ($ext_sigcont ne 'IGNORE' && $ext_sigcont ne 'DEFAULT' &&
$ext_sigcont ne "") { &$ext_sigcont(@_); }
print STDOUT @LastText;
&'flush(STDOUT);
push(@Redo, 1);
}
##---------------------------------------------------------------------------
## set_handler() sets the private CONT signal handler.
##
sub set_handler {
return unless $use_handler;
$ext_sigcont = $SIG{'CONT'};
$SIG{'CONT'} = "uio'handler";
}
##---------------------------------------------------------------------------
## reset_handler() restores the external handler
##
sub reset_handler {
return unless $use_handler;
$SIG{'CONT'} = $ext_sigcont;
}
##---------------------------------------------------------------------------
##--------------------------------##
## Public subroutine declerations ##
##--------------------------------##
##---------------------------------------------------------------------------
## print_menu() a tabular list of items in a "menu" type format. The
## list is printed in column major order.
## Parameters:
## $title : The title of the menu if not null.
## $cols : Number of columns in menu.
## $box : Boolean flag for drawing a box around menu.
## $sep : Separator string between columns.
## @menu_items : Array of menu items.
## In box mode the title appears above the box. Care must be taken
## in the number of columns chosen when menu items string lengths get
## long. This routine assumes there is plenty of screen space to
## print out the menu.
##
sub main'print_menu {
local($title, $cols, $box, $sep, @menu_items) = @_;
local($i, $j, $indent, $sp, $fmt, $lside, $rside);
$sp = " "; $indent = $sp x 8;
foreach (@menu_items) { $i = length($_) if length($_) > $i; }
$fmt = "%-${i}s";
$dashes = "-" x (($cols-1)*length($sep) + $cols*$i + 2);
$lines = ($#menu_items+1)/$cols;
$lines = ($lines == int($lines) ? $lines : int($lines)+1);
print STDOUT "$indent$title\n" if $title ne ""; ## Print $title
print STDOUT "$indent $dashes\n" if $box; ## Print top of box
$lside = ($box ? "| " : " ");
$rside = ($box ? " |\n" : " \n");
for ($i=0; $i < $lines; $i++) {
print STDOUT $indent, $lside;
for ($j=0; $j < $cols; $j++) {
print STDOUT sprintf($fmt, $menu_items[$i + $j*$lines]);
print STDOUT $sep if $j < $cols-1;
}
print STDOUT $rside;
}
print STDOUT "$indent $dashes\n" if $box;
}
##---------------------------------------------------------------------------
## do_num_menu() automatically generates a numbered list of items
## for selection. The routine returns the string item that is
## selected. This routine also appends a "Other" option and
## if selected, will prompt for a user defined string.
##
sub main'do_num_menu {
local($title, $prompt, $isother, $otherprompt, $otherdef, $cols,
@array) = @_;
local(@menu_items) = @array;
local($i, $tmp);
## Prepend numbers to items ##
for ($i=0; $i <= $#menu_items; $i++) {
$menu_items[$i] = $i+1 . " = \"$menu_items[$i]\"";
}
## Add other selection if needed ##
push(@menu_items, $i+1 . " = Other") if $isother;
## Print menu ##
print STDOUT "\n$title:\n\n";
&'print_menu("", $cols, 0, " " x 5, @menu_items);
## Get selection ##
while (1) {
$tmp = &'prompt_user_def("\n$prompt", "1", 0, 0);
last if ($tmp >= 1 && $tmp <= $#menu_items+1);
&'print_error("Invalid selection -- $tmp");
}
## Determine selection ##
if ($isother && $tmp == $#menu_items+1) {
$tmp = &'prompt_user_def(" Other: $otherprompt", $otherdef, 1, 0);
}
else { $tmp = $array[$tmp-1]; }
$tmp;
}
##---------------------------------------------------------------------------
## print_*() routines to print a message of type '*' to the screen.
##
sub main'print_error { &print_message("ERROR", @_); }
sub main'print_info { &print_message("Info:", @_); }
sub main'print_note { &print_message("Note:", @_); }
sub main'print_warning { &print_message("WARNING", @_); }
##---------------------------------------------------------------------------
## Get string from STDIN and lowercase it.
## called "get_lc_string".
##
sub main'get_lc_string {
local($tmp);
$tmp = <STDIN>;
while (shift(@Redo)) { $tmp = <STDIN>; }
chop $tmp;
$tmp =~ tr/A-Z/a-z/;
$tmp;
}
##---------------------------------------------------------------------------
## Get string from STDIN.
##
sub main'get_string {
local($tmp);
$tmp = <STDIN>;
while (shift(@Redo)) { $tmp = <STDIN>; }
chop $tmp;
$tmp;
}
##---------------------------------------------------------------------------
## Pause output until CR is hit.
##
sub main'pause {
&set_handler();
local($tmp);
&print_txt("\nHit <CR> to continue ... ");
$tmp = <STDIN>;
while (shift(@Redo)) { $tmp = <STDIN>; }
&reset_handler();
}
##---------------------------------------------------------------------------
## Prompt user for a string of input. This routine appends a "->"
## to the prompt string. All leading and trailing whitespaces are
## removed from the input string before returned.
##
sub main'prompt_user {
&set_handler();
local($prompt, $nonnull, $return) = @_;
local($tmp);
$prompt .= "\n" if $return;
$prompt .= " -> ";
while (1) {
&print_txt($prompt);
$tmp = &'get_string();
&'print_error("Entry cannot be blank."), next
if $nonnull && $tmp =~ /^\s*$/;
$tmp =~ s/^\s*(.*[^\s])\s*$/\1/; ## strip beginning/trailing spaces
last;
}
&reset_handler();
$tmp;
}
##---------------------------------------------------------------------------
## Like prompt_user() but a default choice is given.
##
sub main'prompt_user_def {
&set_handler();
local($prompt, $default, $nonnull, $return) = @_;
local($tmp);
$prompt .= " (\"$default\")";
$prompt .= "\n" if $return;
$prompt .= " -> ";
while(1) {
&print_txt($prompt);
$tmp = &'get_string();
$tmp = $default if $tmp =~ m/^\s*$/;
&'print_error("Entry cannot be blank."), next
if $nonnull && $tmp =~ /^\s*$/;
$tmp =~ s/^\s*(.*[^\s])\s*$/\1/;
last;
}
&reset_handler();
$tmp;
}
##---------------------------------------------------------------------------
## ask_question() asks a yes/no question. $default signifies the
## default response: 1 = yes, 0 = no. The default response and
## a '?' are appended to the prompt.
##
sub main'ask_question {
&set_handler();
local($prompt, $default) = @_;
local($tmp, $ret);
if ($default) { $prompt .= " (\"y\")"; }
else { $prompt .= " (\"n\")"; };
while(1) {
&print_txt("$prompt? ");
$tmp = &'get_lc_string();
$ret = 1, last if ($tmp =~ /^\s*$/ && $default);
$ret = 0, last if ($tmp =~ /^\s*$/ && !$default);
$ret = 1, last if ($tmp =~ /^\s*y\s*$/ || $tmp =~ /^\s*yes*\s*$/);
$ret = 0, last if ($tmp =~ /^\s*n\s*$/ || $tmp =~ /^\s*no*\s*$/);
}
&reset_handler();
$ret;
}
##---------------------------------------------------------------------------
## get_char_choice() gets a single character response. Valid
## character responses are specified by @chars. A default can
## be specified by $default, and it is the choice if CR is hit.
## All whitespaces (except \r and \n) and non-specified chars
## are ignored. This function returns with choice when a valid
## character is hit. Character choices are case-insensitive.
##
## The terminal is put into raw mode for get_char_choice() to
## perform its task. Because of this, SIGINT, SIGQUIT, and
## SIGTERM are temporarily ignored until a valid character is
## hit. The original signal handlers are restored before the
## functions returns.
##
sub main'get_char_choice {
local($default, @chars) = @_;
local($in, $return);
local($choices) = join(" ", @chars);
$choices =~ tr/A-Z/a-z/;
local($sigint, $sigquit, $sigterm, $sigtstp) =
($SIG{'INT'}, $SIG{'QUIT'}, $SIG{'TERM'}, $SIG{'TSTP'});
&'flush(STDOUT);
$SIG{'INT'} = 'IGNORE'; $SIG{'QUIT'} = 'IGNORE'; $SIG{'TERM'} = 'IGNORE';
$SIG{'TSTP'} = 'IGNORE';
system("stty raw -echo"); ## Set terminal in raw mode
while (1) {
$in = getc(STDIN);
$return = $default, last if $default ne "" &&
($in eq "\r" || $in eq "\n");
next if $in =~ /\s/;
$in =~ tr/A-Z/a-z/;
$in =~ s/([\[\]\(\)\.\^\{\}\$\*\?\+\\\|])/\\\1/g;
$return = $in, last if $choices =~ /$in/;
}
system("stty -raw echo"); ## Restore terminal
print STDOUT "$return\n"; ## Output selection
$SIG{'INT'} = $sigint; ## Restore signal handler
$SIG{'QUIT'} = $sigquit; ## Restore signal handler
$SIG{'TERM'} = $sigterm; ## Restore signal handler
$SIG{'TSTP'} = $sigtstp; ## Restore signal handler
$return;
}
##---------------------------------------------------------------------------
## flush() flushes the buffer of passed in filehandle. Copied from
## "flush.pl".
##
sub main'flush {
local($old) = select(shift);
$| = 1;
print "";
$| = 0;
select($old);
}
##---------------------------------------------------------------------------
## get_later_date() retrieves from STDIN a date later than the
## julian date $ljdate. $prompt is the user prompt and $default
## is the default response. This routine uses the julian date
## routines defined in "date.pl". "date.pl" must be required
## somewhere in the Perl program for this routine to work.
##
sub main'get_later_date {
local($prompt, $default, $ljdate) = @_;
local($tmp, $i, $m, $d, $y, $wd);
while (1) {
$tmp = &'prompt_user_def($prompt, $default, 1, 0);
if ($tmp !~ m!^(\d{1,2})[-/](\d{1,2})[-/](\d{2}|\d{4})$!) {
&'print_error("Incorrect date specification -- $tmp\n",
"Valid date formats: 02-28-94, 4/1/94, 12-25-1994.");
}
else {
$i = &'jday($1, $2, ($3 > 1900 ? $3 : "19".$3));
last if $i > $ljdate;
($m, $d, $y, $wd) = &'jdate($ljdate);
&'print_error("Date must be later than $m/$d/$y.");
}
}
$tmp;
}
##---------------------------------------------------------------------------
1; ## end package