diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-26 11:26:05 +0000 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2005-05-26 11:26:05 +0000 |
commit | 9b70c55fe958b1da7c3c2de3a97fa739b1687085 (patch) | |
tree | 62cdc6028f6f6fea6c1832a259596e0a5535cfe0 /Porting | |
parent | 075abff3feb0c6965ba49108266b27bec1bd4ae6 (diff) | |
download | perl-9b70c55fe958b1da7c3c2de3a97fa739b1687085.tar.gz |
More possible re-order dependencies solved
p4raw-id: //depot/perl@24581
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/config_h.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Porting/config_h.pl b/Porting/config_h.pl index 2543b34ae1..7c1deec530 100755 --- a/Porting/config_h.pl +++ b/Porting/config_h.pl @@ -30,9 +30,13 @@ sub ch_index () my %dep = ( # This symbol must be defined BEFORE ... + BYTEORDER => [ qw( UVSIZE ) ], LONGSIZE => [ qw( BYTEORDER ) ], MULTIARCH => [ qw( BYTEORDER MEM_ALIGNBYTES ) ], + USE_CROSS_COMPILE => [ qw( BYTEORDER MEM_ALIGNBYTES ) ], HAS_QUAD => [ qw( I64TYPE ) ], + HAS_GETGROUPS => [ qw( Groups_t ) ], + HAS_SETGROUPS => [ qw( Groups_t ) ], ); my $changed; |