You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by kh...@hyperreal.org on 1999/04/07 20:24:11 UTC

cvs commit: modperl Makefile.PL

khera       99/04/07 11:24:10

  Modified:    .        Makefile.PL
  Log:
  Added a couple of comments to make XEmacs perl-mode happy with
  font-highlighting of this file. (XEmacs' perl-mode is quite lame in
  parsing quoted strings which are "HEREIS" or qq{} type quotes, thus we
  need to help it along with comments.
  
  Revision  Changes    Path
  1.124     +8 -1      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.123
  retrieving revision 1.124
  diff -u -r1.123 -r1.124
  --- Makefile.PL	1999/01/22 02:56:30	1.123
  +++ Makefile.PL	1999/04/07 18:24:09	1.124
  @@ -67,6 +67,8 @@
   sleep(1);
   }
   
  +#'
  +
   %Apache::MyConfig::Setup = ();
   eval 'require Apache::MyConfig' ;
   
  @@ -1047,6 +1049,8 @@
   
       if($PERL_SSI) {
   	cp "t/modules/ssi.test", "t/modules/ssi.t";
  +    } else {
  +      unlink "t/modules/ssi.t";	# might be there from prior run
       }
   
       mkdir "t/docs/subr", 0755;
  @@ -1377,6 +1381,8 @@
   EOF
   }
   
  +#'
  +
   sub MY::manifypods {
       my $self = shift;
       my $ver = $self->{VERSION} || "";
  @@ -1512,6 +1518,7 @@
       #XXX think about this some more
       iedit $mf, "s/^#STATIC_SRC.*/STATIC_SRC = @xs_files/";
       iedit $mf, "s/^#STATIC_EXTS.*/STATIC_EXTS = @xs_names/";
  +
   =cut
   
       unless ($USE_APACI) {
  @@ -1652,7 +1659,7 @@
   
               #XXX hack
               $repl = quotemeta('CFLAGS=$(CFLAGS)');
  -            iedit $mf, qq(s:\Q\"CFLAGS=\$(CFLAGS)"\E:'$repl':;);
  +            iedit $mf, qq(s:\Q\"CFLAGS=\$(CFLAGS)"\E:'$repl':;); #"
   	}
   	my $repl = q{AUX_CFLAGS='\$(CFLAGS)'};
   	iedit $mf, qq{s/AUX_CFLAGS="..CFLAGS."/$repl/};