dougm       01/03/26 18:32:50

  Modified:    .        Makefile.PL
  Log:
  only one version of the source tables is currently supported, so just hardwire it 
for now
  
  Revision  Changes    Path
  1.29      +3 -2      modperl-2.0/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Makefile.PL,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- Makefile.PL       2001/03/26 22:07:12     1.28
  +++ Makefile.PL       2001/03/27 02:32:49     1.29
  @@ -85,8 +85,9 @@
   sub generate_xs {
       my $httpd_version = shift;
   
  -    my $tables_version =
  -      $httpd_version =~ /-dev$/ ? 'current' : $httpd_version;
  +    my $tables_version = 'current';
  +    #XXX: support versioning
  +    #$httpd_version =~ /-dev$/ ? 'current' : $httpd_version;
   
       my $tables_dir = "xs/tables/$tables_version";
       unshift @INC, $tables_dir;
  
  
  

Reply via email to