Updated lint infrastructure
[p5sagit/p5-mst-13.2.git] / Porting / config_h.pl
CommitLineData
253687a9 1#!/usr/bin/perl
2
3# This script reorders config_h.SH after metaconfig
4# Changing metaconfig is too complicated
5#
6# Copyright (C) 2005-2005 by H.Merijn Brand (m)'05 [25-05-2005]
7#
8# You may distribute under the terms of either the GNU General Public
9# License or the Artistic License, as specified in the README file.
10
11use strict;
12use warnings;
13
14my ($cSH, $ch, @ch, %ch) = ("config_h.SH");
15open $ch, "<$cSH" or die "Cannot open $cSH: $!\n";
16{ local $/ = "\n\n";
17 @ch = <$ch>;
18 close $ch;
19 }
20
21sub ch_index ()
22{
23 %ch = ();
24 foreach my $ch (0 .. $#ch) {
25 while ($ch[$ch] =~ m{^/\* ([A-Z]\w+)}gm) {
26 $ch{$1} = $ch;
27 }
28 }
29 } # ch_index
30
31my %dep = (
32 # This symbol must be defined BEFORE ...
33 LONGSIZE => [ qw( BYTEORDER ) ],
34 MULTIARCH => [ qw( BYTEORDER MEM_ALIGNBYTES ) ],
35 HAS_QUAD => [ qw( I64TYPE ) ],
36 );
37
38my $changed;
39do {
40 $changed = 0;
41 foreach my $sym (keys %dep) {
42 ch_index;
43 foreach my $dep (@{$dep{$sym}}) {
44 print STDERR "Check if $sym\t($ch{$sym}) precedes $dep\t($ch{$dep})\n";
45 $ch{$sym} < $ch{$dep} and next;
46 my $ch = splice @ch, $ch{$sym}, 1;
47 splice @ch, $ch{$dep}, 0, $ch;
48 $changed++;
49 ch_index;
50 }
51 }
52 } while ($changed);
53
54open $ch, "> $cSH" or die "Cannot write $cSH: $!\n";
55print $ch @ch;
56close $ch;