2 # Copyright 1999, 2000, 2001 Patrik Stridvall
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 # Lesser General Public License for more details.
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK);
29 @EXPORT_OK = qw($current_dir $wine_dir $winapi_dir $winapi_check_dir);
31 use vars qw($current_dir $wine_dir $winapi_dir $winapi_check_dir);
34 $tool =~ s%^(?:.*?/)?([^/]+)$%$1%;
36 if(defined($current_dir) && defined($wine_dir) &&
37 defined($winapi_dir) && defined($winapi_check_dir))
40 } elsif($0 =~ m%^(.*?)/?tools/([^/]+)/[^/]+$%) {
43 if(defined($1) && $1 ne "")
54 if($wine_dir =~ /^\./) {
56 my $pwd; chomp($pwd = `pwd`);
57 foreach my $n (1..((length($wine_dir) + 1) / 3)) {
58 $pwd =~ s/\/([^\/]*)$//;
59 $current_dir = "$1/$current_dir";
61 $current_dir =~ s%/\.$%%;
62 } elsif($wine_dir eq $cwd) {
65 } elsif($cwd =~ m%^$wine_dir/(.*?)?$%) {
68 foreach my $dir (split(m%/%, $current_dir)) {
69 $wine_dir = "../$wine_dir";
71 $wine_dir =~ s%/\.$%%;
73 print STDERR "$tool: You must run this tool in the main Wine directory or a sub directory\n";
77 $winapi_dir = "$wine_dir/tools/winapi";
78 $winapi_dir =~ s%^\./%%;
80 $winapi_check_dir = "$wine_dir/tools/winapi_check";
81 $winapi_check_dir =~ s%^\./%%;
83 push @INC, ($winapi_dir, $winapi_check_dir);
85 print STDERR "$tool: You must run this tool in the main Wine directory or a sub directory\n";