Return-Path: Delivered-To: apmail-perl-modperl-cvs-archive@perl.apache.org Received: (qmail 52807 invoked by uid 500); 24 Mar 2003 06:33:42 -0000 Mailing-List: contact modperl-cvs-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@perl.apache.org Delivered-To: mailing list modperl-cvs@perl.apache.org Received: (qmail 52796 invoked by uid 500); 24 Mar 2003 06:33:42 -0000 Delivered-To: apmail-modperl-2.0-cvs@apache.org Date: 24 Mar 2003 06:33:32 -0000 Message-ID: <20030324063332.18317.qmail@icarus.apache.org> From: stas@apache.org To: modperl-2.0-cvs@apache.org Subject: cvs commit: modperl-2.0/lib/ModPerl Code.pm X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N 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] }