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
23 use setup
qw($current_dir $wine_dir $winapi_dir);
25 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
30 file_absolutize file_normalize
32 file_type files_filter
40 $current_dir $wine_dir $winapi_dir
43 use vars qw($current_dir $wine_dir $winapi_dir);
45 use output qw($output);
49 sub file_normalize($) {
52 foreach my $dir (split(m%/%, $current_dir)) {
53 if(s%^(\.\./)*\.\./$dir/%%) {
60 while(m%^(.*?)([^/\.]+)/\.\./(.*?)$%) {
61 if($2 ne "." && $2 ne "..") {
69 sub file_absolutize($) {
72 $_ = file_normalize($_);
73 if(!s%^$wine_dir/%%) {
74 $_ = "$current_dir/$_";
84 $_ = file_absolutize($_);
86 m%^(?:server|tests|tools)/% && return "";
87 m%^(?:programs)/% && return "wineapp";
88 m%^(?:libs)/% && return "library";
93 sub files_filter($@) {
97 foreach my $file (@_) {
98 if(file_type($file) eq $type) {
109 $_ = file_absolutize($_);
111 m%^(?:loader|libs|programs|server|tools)/% && return 1;
112 m%^dlls/wineps/data/% && return 1;
113 m%^dlls/winmm/wineoss/midipatch\.c$% && return 1;
114 m%spec\.c$% && return 1;
121 foreach my $file (@_) {
122 if(!file_skip($file)) {
130 sub file_directory($) {
138 s%^(?:\./)?(.*?)(?:/\.)?%$1%;
143 sub _get_files($$;$) {
148 $output->progress("$wine_dir: searching for /$pattern/");
157 while(defined(my $dir = shift @dirs)) {
159 my @entries= readdir(DIR);
168 } elsif($basefile =~ /$pattern/ && (!defined($type) || file_type($_) eq $type)) {
178 sub get_c_files($;$) { return _get_files('\.c$', $_[0], $_[1]); }
179 sub get_h_files($;$) { return _get_files('\.h$', $_[0], $_[1]); }
180 sub get_spec_files($;$) { return _get_files('\.spec$', $_[0], $_[1]); }
181 sub get_makefile_in_files($;$) { return _get_files('^Makefile.in$', $_[0], $_[1]); }