cvsuser     03/06/26 06:11:24

  Modified:    config/auto headers.pl
               config/gen config_h.pl
  Log:
  add signal.h in extra_headers; sort and align has_header.h
  
  Revision  Changes    Path
  1.7       +5 -5      parrot/config/auto/headers.pl
  
  Index: headers.pl
  ===================================================================
  RCS file: /cvs/public/parrot/config/auto/headers.pl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- headers.pl        12 Dec 2002 20:13:33 -0000      1.6
  +++ headers.pl        26 Jun 2003 13:11:22 -0000      1.7
  @@ -28,7 +28,7 @@
       # some headers may not be probed-for by perl 5, or might not be 
       # properly reflected in %Config (i_fcntl seems to be wrong on my machine,
       # for instance).
  -    my @extra_headers = qw(fcntl.h setjmp.h pthread.h);
  +    my @extra_headers = qw(fcntl.h setjmp.h pthread.h signal.h);
       
       foreach my $header (@extra_headers) {
           my $flag = "i_$header";
  
  
  
  1.7       +3 -3      parrot/config/gen/config_h.pl
  
  Index: config_h.pl
  ===================================================================
  RCS file: /cvs/public/parrot/config/gen/config_h.pl,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -w -r1.6 -r1.7
  --- config_h.pl       11 May 2003 17:05:43 -0000      1.6
  +++ config_h.pl       26 Jun 2003 13:11:24 -0000      1.7
  @@ -25,7 +25,7 @@
    */
   );
   
  -  for(Configure::Data->keys()) {
  +  for(sort(Configure::Data->keys())) {
       next unless /i_(\w+)/;
       if(Configure::Data->get($_)) {
         print HH "#define HAS_HEADER_\U$1 1\n"
  
  
  

Reply via email to