You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by ra...@apache.org on 2003/12/03 06:17:34 UTC

cvs commit: httpd-apreq-2/win32 Configure.pl

randyk      2003/12/02 21:17:34

  Modified:    win32    Configure.pl
  Log:
  allow for Apache/2.\d.
  
  Revision  Changes    Path
  1.26      +2 -2      httpd-apreq-2/win32/Configure.pl
  
  Index: Configure.pl
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/win32/Configure.pl,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- Configure.pl	5 Nov 2003 05:32:06 -0000	1.25
  +++ Configure.pl	3 Dec 2003 05:17:34 -0000	1.26
  @@ -224,8 +224,8 @@
       die qq{No httpd header found under $apache/include}
           unless -e qq{$apache/include/httpd.h};
       my $vers = qx{"$apache/bin/Apache.exe" -v};
  -    die qq{"$apache" does not appear to be version 2.0}
  -        unless $vers =~ m!Apache/2.0!;
  +    die qq{"$apache" does not appear to be version 2.x}
  +        unless $vers =~ m!Apache/2.\d!;
       return 1;
   }