diff options
author | Nicholas Clark <nick@ccl4.org> | 2004-11-25 23:41:05 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-11-25 23:41:05 +0000 |
commit | 06482b9023d4582a18f90fd15b1272b5f3df6fca (patch) | |
tree | 7863f47891ee92591da87d84dba2ebb41726f6b5 /configpm | |
parent | 3be001280d73dc8b5fd9a98b62dc5c8080b55e1c (diff) | |
download | perl-06482b9023d4582a18f90fd15b1272b5f3df6fca.tar.gz |
Generate the virtual entries at Config.pm build time, as they
don't change. This lets us get rid of the entire "fetch_virtual"
baggage, and makes the config_re lookup work for the virtual
entries.
p4raw-id: //depot/perl@23542
Diffstat (limited to 'configpm')
-rwxr-xr-x | configpm | 74 |
1 files changed, 32 insertions, 42 deletions
@@ -207,7 +207,7 @@ close CONFIG_SH; # Calculation for the keys for byteorder # This is somewhat grim, but I need to run fetch_string here. -our $Config_SH_expanded = join "\n", @v_fast, @v_others; +our $Config_SH_expanded = join "\n", '', @v_fast, @v_others; my $t = fetch_string ({}, 'ivtype'); my $s = fetch_string ({}, 'ivsize'); @@ -267,60 +267,50 @@ print CONFIG <<'EOT'; s/(byteorder=)(['"]).*?\2/$1$2$byteorder$2/m; our $Config_SH : unique = $_; -our $Config_SH_expanded : unique = "\n$_"; +our $Config_SH_expanded : unique = "\n$_" . << 'EOVIRTUAL'; EOT -print CONFIG $fetch_string; - -print CONFIG <<'ENDOFEND'; - -sub fetch_virtual { - my($self, $key) = @_; +foreach my $prefix (qw(ccflags ldflags)) { + my $value = fetch_string ({}, $prefix); + my $withlargefiles = fetch_string ({}, $prefix . "_uselargefiles"); + $value =~ s/\Q$withlargefiles\E\b//; + print CONFIG "${prefix}_nolargefiles='$value'\n"; +} - my $value; - - if ($key =~ /^((?:cc|ld)flags|libs(?:wanted)?)_nolargefiles/) { - # These are purely virtual, they do not exist, but need to - # be computed on demand for largefile-incapable extensions. - my $new_key = "${1}_uselargefiles"; - $value = $Config{$1}; - my $withlargefiles = $Config{$new_key}; - if ($new_key =~ /^(?:cc|ld)flags_/) { - $value =~ s/\Q$withlargefiles\E\b//; - } elsif ($new_key =~ /^libs/) { - my @lflibswanted = split(' ', $Config{libswanted_uselargefiles}); - if (@lflibswanted) { - my %lflibswanted; - @lflibswanted{@lflibswanted} = (); - if ($new_key =~ /^libs_/) { - my @libs = grep { /^-l(.+)/ && - not exists $lflibswanted{$1} } - split(' ', $Config{libs}); - $value = join(' ', @libs); - } elsif ($new_key =~ /^libswanted_/) { - my @libswanted = grep { not exists $lflibswanted{$_} } - split(' ', $Config{libswanted}); - $value = join(' ', @libswanted); - } - } +foreach my $prefix (qw(libs libswanted)) { + my $value = fetch_string ({}, $prefix); + my @lflibswanted + = split(' ', fetch_string ({}, 'libswanted_uselargefiles')); + if (@lflibswanted) { + my %lflibswanted; + @lflibswanted{@lflibswanted} = (); + if ($prefix eq 'libs') { + my @libs = grep { /^-l(.+)/ && + not exists $lflibswanted{$1} } + split(' ', fetch_string ({}, 'libs')); + $value = join(' ', @libs); + } else { + my @libswanted = grep { not exists $lflibswanted{$_} } + split(' ', fetch_string ({}, 'libswanted')); + $value = join(' ', @libswanted); } } - - $self->{$key} = $value; + print CONFIG "${prefix}_nolargefiles='$value'\n"; } +print CONFIG "EOVIRTUAL\n"; + +print CONFIG $fetch_string; + +print CONFIG <<'ENDOFEND'; + sub FETCH { my($self, $key) = @_; # check for cached value (which may be undef so we use exists not defined) return $self->{$key} if exists $self->{$key}; - $self->fetch_string($key); - return $self->{$key} if exists $self->{$key}; - $self->fetch_virtual($key); - - # Might not exist, in which undef is correct. - return $self->{$key}; + return $self->fetch_string($key); } my $prevpos = 0; |