cvsuser     02/01/05 04:37:08

  Modified:    .        Configure.pl
  Log:
  Make lcc happier by adding a dummy structure.
  
  Courtesy of: Josh Wilmes <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.72      +3 -2      parrot/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /cvs/public/parrot/Configure.pl,v
  retrieving revision 1.71
  retrieving revision 1.72
  diff -u -w -r1.71 -r1.72
  --- Configure.pl      4 Jan 2002 22:13:58 -0000       1.71
  +++ Configure.pl      5 Jan 2002 12:37:08 -0000       1.72
  @@ -2,7 +2,7 @@
   #
   # Configure.pl
   #
  -# $Id: Configure.pl,v 1.71 2002/01/04 22:13:58 dan Exp $
  +# $Id: Configure.pl,v 1.72 2002/01/05 12:37:08 simon Exp $
   #
   # Author: Brent Dax
   #
  @@ -42,7 +42,7 @@
   
   if($opt_version) {
       print "Parrot Version $parrot_version Configure\n";
  -    print '$Id: Configure.pl,v 1.71 2002/01/04 22:13:58 dan Exp $' . "\n";
  +    print '$Id: Configure.pl,v 1.72 2002/01/05 12:37:08 simon Exp $' . "\n";
       exit;
   }
   
  @@ -499,6 +499,7 @@
       my %newc;
   
       open NEEDED, ">include/parrot/vtable.h";
  +    print NEEDED "/* dummy */ struct _vtable { int a; };\n";
       close NEEDED;
       buildfile("testparrotsizes_c");
       compiletestc("testparrotsizes");
  
  
  


Reply via email to