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 st...@apache.org on 2003/03/24 07:33:32 UTC

cvs commit: modperl-2.0/lib/ModPerl Code.pm

stas        2003/03/23 22:33:32

  Modified:    lib/ModPerl Code.pm
  Log:
  make sure that modperl_largefiles.h and modperl_perl_unembed.h are
  installed
  
  Revision  Changes    Path
  1.95      +4 -2      modperl-2.0/lib/ModPerl/Code.pm
  
  Index: Code.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/Code.pm,v
  retrieving revision 1.94
  retrieving revision 1.95
  diff -u -r1.94 -r1.95
  --- Code.pm	8 Mar 2003 09:15:16 -0000	1.94
  +++ Code.pm	24 Mar 2003 06:33:31 -0000	1.95
  @@ -590,14 +590,16 @@
                        gtop util io filter bucket mgv pcw global env cgi
                        perl perl_global perl_pp sys module svptr_table
                        const constants);
  +my @h_src_names = qw(perl_unembed);
   my @g_c_names = map { "modperl_$_" } qw(hooks directives flags xsinit);
   my @c_names   = ('mod_perl', (map "modperl_$_", @c_src_names));
   sub c_files { [map { "$_.c" } @c_names, @g_c_names] }
   sub o_files { [map { "$_.o" } @c_names, @g_c_names] }
   sub o_pic_files { [map { "$_.lo" } @c_names, @g_c_names] }
   
  -my @g_h_names = map { "modperl_$_" } qw(hooks directives flags trace);
  -my @h_names = (@c_names, map { "modperl_$_" }
  +my @g_h_names = map { "modperl_$_" } qw(hooks directives flags trace
  +                                        largefiles);
  +my @h_names = (@c_names, map { "modperl_$_" } @h_src_names,
                  qw(types time apache_includes perl_includes));
   sub h_files { [map { "$_.h" } @h_names, @g_h_names] }