File: fix_4_os2.pl

package info (click to toggle)
perl-tk 1%3A800.011-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 16,820 kB
  • ctags: 17,448
  • sloc: ansic: 189,575; perl: 31,426; makefile: 4,360; sh: 1,921; yacc: 762
file content (48 lines) | stat: -rw-r--r-- 1,004 bytes parent folder | download
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
sub OS2_massage {		# Need to put before BEGIN
  if (@ARGV) {
    die <<EOD;

Please start me as one of
	perl $0 x
	perl $0 open32
	perl $0 pm
EOD
  }
  if (not defined $win_arch) {
      $win_arch = 'pm';
      print STDERR <<EOP;

No Window architecture specified, building for PM.

Please start me as one of
	perl $0 x
	perl $0 open32
	perl $0 pm
if you want to specify architecture explicitely.

EOP
  }
  if ($win_arch ne 'x' and not -r 'pTk/mTk/open32/tkWinOS2.c' ) {
    my @zips = <../Tk-OS2-*/perltk_os2_common.zip>;
    
    die <<EOD unless @zips;

Cannot find pTk/mTk/open32/tkWinOS2.c, did you read README.os2?

EOD
    system 'unzip', $zips[-1] and die "Unzip: $!";
  }
  if ($win_arch eq 'pm' and not -r 'pTk/mTk/os2/tkOS2Int.h') {
    my @zips = <../Tk-OS2-*/perltk_os2_pm.zip>;
    
    die <<EOD unless @zips;

Cannot find pTk/mTk/os2/tkOS2Int.h, did you read README.os2?

EOD
    system 'unzip', $zips[-1] and die "Unzip: $!";
  }
  $test_perl = 'perl__.exe' if $win_arch ne 'x';
}

1;