2 # a script for use by autoconf to make the Makefiles
3 # from the Makefile.in's
5 # the original autoconf mechanism first splits all substitutions into groups
6 # of ca. 90, and than invokes sed for _every_ Makefile.in and every group
7 # (so around 2-3 times per Makefile.in). So this takes forever, as sed
8 # has to recompile the regexps every time.
10 # this script does better. It changes all Makefile.ins in one process.
11 # in kdelibs the time for building Makefile went down from 2:59 min to 13 sec!
13 # written by Michael Matz <matz@kde.org>
14 # adapted by Dirk Mueller <mueller@kde.org>
16 # This file is free software; you can redistribute it and/or
17 # modify it under the terms of the GNU Library General Public
18 # License as published by the Free Software Foundation; either
19 # version 2 of the License, or (at your option) any later version.
21 # This library is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
24 # Library General Public License for more details.
26 # You should have received a copy of the GNU Library General Public License
27 # along with this library; see the file COPYING.LIB. If not, write to
28 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29 # Boston, MA 02111-1307, USA.
36 my $ac_sacfiles = $ARGV[1];
37 my $ac_given_srcdir=$ARGV[2];
38 my $ac_given_INSTALL=$ARGV[3];
43 #print "ac_subs=$ac_subs\n";
44 #print "ac_sacfiles=$ac_sacfiles\n";
45 #print "ac_given_srcdir=$ac_given_srcdir\n";
46 #print "ac_given_INSTALL=$ac_given_INSTALL\n";
49 my ($srcdir, $top_srcdir);
51 my $bad_perl = ($] < 5.005);
52 my $created_file_count = 0;
54 open(CF
, "< $ac_subs") || die "can't open $ac_subs: $!";
62 print "Using perl older than version 5.005\n";
63 foreach my $pat (@subs) {
64 if ( ($pat =~ m/s%([^%]*)%([^%]*)%g/ )
65 || ($pat =~ m/s%([^%]*)%([^%]*)%;t/ )
66 || ($pat =~ m/s,([^,]*),(.*),;t/)
67 || ($pat =~ m
%s/([^/]*)/([^/]*)/g% )
68 || ($pat =~ m
%s/([^/]*)/([^/]*)/;t
% )
70 # form : s%bla%blubb%g
71 # or s%bla%blubb%;t t (autoconf > 2.13 and < 2.52 ?)
72 # or s,bla,blubb,;t t (autoconf 2.52)
75 $repl =~ s/\\(.)/$1/g;
76 push @comp_subs, make_closure
($srch, $repl);
78 } elsif ( ($pat =~ /%([^%]*)%d/ )
79 || ($pat =~ m
%/([^/]*)/d
% )
81 push @comp_subs, make_closure
($1, "");
83 die "Uhh. Malformed pattern in $ac_subs ($pat)"
84 unless ( $pat =~ /^\s*$/ ); # ignore white lines
88 foreach my $pat (@subs) {
89 if ( ($pat =~ /s%([^%]*)%([^%]*)%g/ ) ||
90 ($pat =~ /s%([^%]*)%([^%]*)%;t/ ) ||
91 ($pat =~ /s,([^,]*),(.*),;t/) ) {
92 # form : s%bla%blubb%g
93 # or s%bla%blubb%;t t (autoconf > 2.13 and < 2.52 ?)
94 # or s,bla,blubb,;t t (autoconf 2.52)
97 push @comp_match, eval "qr/\Q$srch\E/"; # compile match pattern
98 $repl =~ s/\\(.)/$1/g;
99 push @comp_subs, $repl;
100 } elsif ( ($pat =~ /%([^%]*)%d/ )
101 || ($pat =~ m
%/([^/]*)/d
% )
103 push @comp_match, eval "qr/\Q$1\E/";
106 die "Uhh. Malformed pattern in $ac_subs ($pat)"
107 unless ( $pat =~ /^\s*$/ ); # ignore white lines
113 # read the list of files to be patched, form:
114 # ./Makefile arts/Makefile arts/examples/Makefile arts/flow/Makefile
116 open(CF
, "< $ac_sacfiles") || die "can't open $ac_sacfiles: $!";
123 foreach $ac_file (@ac_files) {
124 next if $ac_file =~ /\.\./;
125 next if $ac_file =~ /^\s*$/;
127 my ($ac_dir, $ac_dots, $ac_dir_suffix);
129 if ($ac_file =~ /.*:.*/ ) {
130 ($ac_file_in = $ac_file) =~ s
%[^:]*:%%;
133 $ac_file_in = $ac_file.".in";
136 # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
138 # Remove last slash and all that follows it. Not all systems have dirname.
139 ($ac_dir = $ac_file) =~ s
%/[^/][^/]*$%%;
140 if ( ($ac_dir ne $ac_file) && ($ac_dir ne ".")) {
141 # The file is in a subdirectory.
142 if (! -d
"$ac_dir") { mkpath
"$ac_dir", 0, 0777; }
143 ($ac_dir_suffix = $ac_dir) =~ s
%^./%%;
144 $ac_dir_suffix="/".$ac_dir_suffix;
145 # A "../" for each directory in $ac_dir_suffix.
146 ($ac_dots = $ac_dir_suffix) =~ s
%/[^/]*%../%g;
152 if ($ac_given_srcdir eq ".") {
155 ( $top_srcdir = $ac_dots) =~ s
%/$%%;
156 } else { $top_srcdir="."; }
157 } elsif ($ac_given_srcdir =~ m
%^/%) {
158 $srcdir=$ac_given_srcdir.$ac_dir_suffix;
159 $top_srcdir = $ac_given_srcdir;
161 $srcdir = $ac_dots.$ac_given_srcdir.$ac_dir_suffix;
162 $top_srcdir = $ac_dots.$ac_given_srcdir;
165 if ($ac_given_INSTALL) {
166 if ($ac_given_INSTALL =~ m
%^/% ) {
167 $INSTALL = $ac_given_INSTALL;
169 $INSTALL = $ac_dots.$ac_given_INSTALL;
173 print "fast creating $ac_file\n";
176 my $fname=$ac_file_in;
178 $configure_input="$ac_file. Generated from $fname by config.pl.";
181 ($ac_file_inputs = $ac_file_in) =~ s
%^%$ac_given_srcdir/%;
182 $ac_file_inputs =~ s
%:% $ac_given_srcdir/%g;
184 patch_file
($ac_file, $ac_file_inputs);
185 ++$created_file_count;
188 print "config.pl: fast created $created_file_count file(s).\n";
191 my ($outf, $infiles) = @_;
193 my @infiles=split(' ', $infiles);
196 foreach my $name (@infiles) {
197 if (open(CF
, "< $name")) {
203 print STDERR
"can't open $name: $!"."\n";
207 $filedata =~ s
%\
@configure_input\@
%$configure_input%g;
208 $filedata =~ s
%\
@srcdir\@
%$srcdir%g;
209 $filedata =~ s
%\
@top_srcdir\@
%$top_srcdir%g;
210 $filedata =~ s
%\
@INSTALL\@
%$INSTALL%g;
213 while ($i <= $#comp_subs) {
214 my $ref = $comp_subs[$i];
219 while ($i <= $#comp_match) {
220 $filedata =~ s/$comp_match[$i]/$comp_subs[$i]/g;
224 open(CF
, "> $outf") || die "can't create $outf: $!";
230 my ($pat, $sub) = @_;
231 my $ret = eval "return sub { my \$ref=shift; \$\$ref =~ s%\Q$pat\E%\Q$sub\E%g; }";
233 print "can't create CODE: $@\n";