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 do...@hyperreal.org on 1999/08/04 04:33:15 UTC

cvs commit: modperl Changes MANIFEST Makefile.PL ToDo

dougm       99/08/03 19:33:15

  Modified:    .        Changes MANIFEST Makefile.PL ToDo
  Log:
  mod_perl_version.h removed from MANIFEST
  
  Revision  Changes    Path
  1.333     +2 -0      modperl/Changes
  
  Index: Changes
  ===================================================================
  RCS file: /home/cvs/modperl/Changes,v
  retrieving revision 1.332
  retrieving revision 1.333
  diff -u -r1.332 -r1.333
  --- Changes	1999/08/04 01:56:10	1.332
  +++ Changes	1999/08/04 02:33:13	1.333
  @@ -8,6 +8,8 @@
   
   =item 1.21_01-dev
   
  +mod_perl_version.h removed from MANIFEST
  +
   fix modules/sandwich test
   
   apxs/aix port [Paul J. Reder <re...@raleigh.ibm.com>]
  
  
  
  1.56      +0 -1      modperl/MANIFEST
  
  Index: MANIFEST
  ===================================================================
  RCS file: /home/cvs/modperl/MANIFEST,v
  retrieving revision 1.55
  retrieving revision 1.56
  diff -u -r1.55 -r1.56
  --- MANIFEST	1999/08/04 00:31:24	1.55
  +++ MANIFEST	1999/08/04 02:33:13	1.56
  @@ -73,7 +73,6 @@
   Leak/Makefile.PL
   Leak/typemap
   src/modules/perl/perl_PL.h
  -src/modules/perl/mod_perl_version.h
   src/modules/perl/Exports.c
   src/modules/perl/File.xs
   src/modules/perl/Constants.xs
  
  
  
  1.130     +1 -0      modperl/Makefile.PL
  
  Index: Makefile.PL
  ===================================================================
  RCS file: /home/cvs/modperl/Makefile.PL,v
  retrieving revision 1.129
  retrieving revision 1.130
  diff -u -r1.129 -r1.130
  --- Makefile.PL	1999/06/11 17:14:27	1.129
  +++ Makefile.PL	1999/08/04 02:33:13	1.130
  @@ -113,6 +113,7 @@
      t/logs/error_log
      t/conf/srm.conf
      t/logs/httpd.pid
  +   src/modules/perl/mod_perl_version.h
   };
   #t/conf/httpd.conf
   #t/net/config.pl
  
  
  
  1.195     +0 -2      modperl/ToDo
  
  Index: ToDo
  ===================================================================
  RCS file: /home/cvs/modperl/ToDo,v
  retrieving revision 1.194
  retrieving revision 1.195
  diff -u -r1.194 -r1.195
  --- ToDo	1999/08/04 00:31:25	1.194
  +++ ToDo	1999/08/04 02:33:14	1.195
  @@ -13,8 +13,6 @@
   
   - SetEnv PATH cause garbled value (is it mod_env or mod_perl?)
   
  -- mod_perl_version.h should not be directly written to
  -
   - libapreq: Apache::Cookie format sync w/ CGI.pm
   
   - document Apache::File
  
  
  

Re: cvs commit: modperl Changes MANIFEST Makefile.PL ToDo

Posted by Doug MacEachern <do...@cp.net>.
On Fri, 6 Aug 1999, Ask Bjoern Hansen wrote:

> On 4 Aug 1999 dougm@hyperreal.org wrote:
> 
> >   Modified:    .        Changes MANIFEST Makefile.PL ToDo
> >   Log:
> >   mod_perl_version.h removed from MANIFEST
> 
> Hmn, why did you do that?

because that file is generated by Makefile.PL, it's not in the CVS tree.
I have no idea why it was in the MANIFEST in the first place :)

> My builds seem to fail because of this.

sorry, it failed because Makefile.PL copies the src/modules/perl/* files
listed in the MANIFEST, I just changed so mod_perl_version.h will be
copied too.

-Doug


Re: cvs commit: modperl Changes MANIFEST Makefile.PL ToDo

Posted by Ask Bjoern Hansen <as...@valueclick.com>.
On Sat, 7 Aug 1999, Stas Bekman wrote:

> On Fri, 6 Aug 1999, Ask Bjoern Hansen wrote:
> 
> > On 4 Aug 1999 dougm@hyperreal.org wrote:
> > 
> > >   Modified:    .        Changes MANIFEST Makefile.PL ToDo
> > >   Log:
> > >   mod_perl_version.h removed from MANIFEST
> > 
> > Hmn, why did you do that?
> > 
> > My builds seem to fail because of this.
> 
> Ditto... I've fallen back to 1.21

RCS file: /home/cvs/modperl/MANIFEST,v
retrieving revision 1.56
diff -c -r1.56 MANIFEST
*** MANIFEST    1999/08/04 02:33:13     1.56
--- MANIFEST    1999/08/07 14:10:25
***************
*** 73,78 ****
--- 73,79 ----
  Leak/Makefile.PL
  Leak/typemap
  src/modules/perl/perl_PL.h
+ src/modules/perl/mod_perl_version.h
  src/modules/perl/Exports.c
  src/modules/perl/File.xs
  src/modules/perl/Constants.xs
Index: Makefile.PL
===================================================================
RCS file: /home/cvs/modperl/Makefile.PL,v
retrieving revision 1.130
diff -c -r1.130 Makefile.PL
*** Makefile.PL 1999/08/04 02:33:13     1.130
--- Makefile.PL 1999/08/07 14:10:26
***************
*** 113,119 ****
     t/logs/error_log
     t/conf/srm.conf
     t/logs/httpd.pid
-    src/modules/perl/mod_perl_version.h
  };
  #t/conf/httpd.conf
  #t/net/config.pl
--- 113,118 ----

worked for me :-)


 - ask

-- 
ask bjoern hansen - <http://www.netcetera.dk/~ask/>
more than 30M impressions per day, <http://valueclick.com>


Re: cvs commit: modperl Changes MANIFEST Makefile.PL ToDo

Posted by Stas Bekman <sb...@iil.intel.com>.
On Fri, 6 Aug 1999, Ask Bjoern Hansen wrote:

> On 4 Aug 1999 dougm@hyperreal.org wrote:
> 
> >   Modified:    .        Changes MANIFEST Makefile.PL ToDo
> >   Log:
> >   mod_perl_version.h removed from MANIFEST
> 
> Hmn, why did you do that?
> 
> My builds seem to fail because of this.

Ditto... I've fallen back to 1.21

> 
> 
>  - ask
> 
> -- 
> ask bjoern hansen - <http://www.netcetera.dk/~ask/>
> more than 25M impressions per day, <http://valueclick.com>
> 
> 



_______________________________________________________________________
Stas Bekman  mailto:sbekman@iil.intel.com    www.singlesheaven.com/stas  
Perl,CGI,Apache,Linux,Web,Java,PC at  www.singlesheaven.com/stas/TULARC
www.apache.org  & www.perl.com  == www.modperl.com  ||  perl.apache.org
single o-> + single o-+ = singlesheaven    http://www.singlesheaven.com


Re: cvs commit: modperl Changes MANIFEST Makefile.PL ToDo

Posted by Ask Bjoern Hansen <as...@valueclick.com>.
On 4 Aug 1999 dougm@hyperreal.org wrote:

>   Modified:    .        Changes MANIFEST Makefile.PL ToDo
>   Log:
>   mod_perl_version.h removed from MANIFEST

Hmn, why did you do that?

My builds seem to fail because of this.


 - ask

-- 
ask bjoern hansen - <http://www.netcetera.dk/~ask/>
more than 25M impressions per day, <http://valueclick.com>