forked from LMS-Community/slimserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetupProgname.pm
92 lines (62 loc) · 2.12 KB
/
SetupProgname.pm
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
package PAR::SetupProgname;
$PAR::SetupProgname::VERSION = '1.002';
use 5.006;
use strict;
use warnings;
use Config ();
=head1 NAME
PAR::SetupProgname - Setup $ENV{PAR_PROGNAME}
=head1 SYNOPSIS
PAR guts, beware. Check L<PAR>
=head1 DESCRIPTION
Routines to setup the C<PAR_PROGNAME> environment variable.
Read the C<PAR::Environment> manual.
The C<set_progname()> subroutine sets up the C<PAR_PROGNAME>
environment variable
=cut
# for PAR internal use only!
our $Progname = $ENV{PAR_PROGNAME} || $0;
# same code lives in PAR::Packer's par.pl!
sub set_progname {
require File::Spec;
if (defined $ENV{PAR_PROGNAME} and $ENV{PAR_PROGNAME} =~ /(.+)/) {
$Progname = $1;
}
$Progname = $0 if not defined $Progname;
if (( () = File::Spec->splitdir($Progname) ) > 1 or !$ENV{PAR_PROGNAME}) {
if (open my $fh, $Progname) {
return if -s $fh;
}
if (-s "$Progname$Config::Config{_exe}") {
$Progname .= $Config::Config{_exe};
return;
}
}
foreach my $dir (split /\Q$Config::Config{path_sep}\E/, $ENV{PATH}) {
next if exists $ENV{PAR_TEMP} and $dir eq $ENV{PAR_TEMP};
my $name = File::Spec->catfile($dir, "$Progname$Config::Config{_exe}");
if (-s $name) { $Progname = $name; last }
$name = File::Spec->catfile($dir, "$Progname");
if (-s $name) { $Progname = $name; last }
}
}
1;
__END__
=head1 SEE ALSO
L<PAR>, L<PAR::Environment>
=head1 AUTHORS
Audrey Tang E<lt>[email protected]<gt>,
Steffen Mueller E<lt>[email protected]<gt>
You can write
to the mailing list at E<lt>[email protected]<gt>, or send an empty mail to
E<lt>[email protected]<gt> to participate in the discussion.
Please submit bug reports to E<lt>[email protected]<gt>. If you need
support, however, joining the E<lt>[email protected]<gt> mailing list is
preferred.
=head1 COPYRIGHT
Copyright 2002-2010 by Audrey Tang E<lt>[email protected]<gt>.
Copyright 2006-2010 by Steffen Mueller E<lt>[email protected]<gt>.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
See F<LICENSE>.
=cut