svn commit: r111864 - /perl/modperl/trunk/todo/release

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 11:39:19 2004
New Revision: 111864

URL: http://svn.apache.org/viewcvs?view=rev&rev=111864
Log:
for RC2 need to temporarily fix makemanifest to exclude Apache-Test/META.yml

Modified:
   perl/modperl/trunk/todo/release

Modified: perl/modperl/trunk/todo/release
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/todo/release?view=diff&rev=111864&p1=perl/modperl/trunk/todo/release&r1=111863&p2=perl/modperl/trunk/todo/release&r2=111864
==
--- perl/modperl/trunk/todo/release (original)
+++ perl/modperl/trunk/todo/release Tue Dec 14 11:39:19 2004
@@ -4,6 +4,9 @@
 
 -- see also todo/api_status
 
+* for RC2 need to temporarily fix makemanifest to exclude
+  Apache-Test/META.yml
+
 * pools that go out of scope:
 
   perl -MApache2 -MAPR::Pool -MAPR::PerlIO -le '; 


svn commit: r111874 - /perl/modperl/trunk/lib/ModPerl/Manifest.pm

2004-12-14 Thread gozer
Author: gozer
Date: Tue Dec 14 12:59:39 2004
New Revision: 111874

URL: http://svn.apache.org/viewcvs?view=rev&rev=111874
Log:
Removed a leftover useless variable.


Modified:
   perl/modperl/trunk/lib/ModPerl/Manifest.pm

Modified: perl/modperl/trunk/lib/ModPerl/Manifest.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/Manifest.pm?view=diff&rev=111874&p1=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r1=111873&p2=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r2=111874
==
--- perl/modperl/trunk/lib/ModPerl/Manifest.pm  (original)
+++ perl/modperl/trunk/lib/ModPerl/Manifest.pm  Tue Dec 14 12:59:39 2004
@@ -34,11 +34,6 @@
 Apache-Test/META.yml
 };
 
-my @repos = qw(
-Apache-Test
-docs
-);
-
 sub get_svn_files {
 my @files;
 


svn commit: r111891 - /perl/modperl/trunk/Changes /perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 14:41:54 2004
New Revision: 111891

URL: http://svn.apache.org/viewcvs?view=rev&rev=111891
Log:
fix compilation issues in ModPerl::Util::current_perl_id (on some
builds newSVpvf can't be resolved but Perl_newSVpvf works just
fine)

Modified:
   perl/modperl/trunk/Changes
   perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111891&p1=perl/modperl/trunk/Changes&r1=111890&p2=perl/modperl/trunk/Changes&r2=111891
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 14:41:54 2004
@@ -12,6 +12,10 @@
 
 =item 1.99_19-dev
 
+fix compilation issues in ModPerl::Util::current_perl_id (on some
+builds newSVpvf can't be resolved but Perl_newSVpvf works just
+fine). [Stas, Markus Wichitill <[EMAIL PROTECTED]>]
+
 fix APR::Error::str to return a lexical variable, rather than a
 string. This function is called by SvTRUE in modperl_errsv() via
 overload and on win32 (and randomly on linux) causes crashes via:

Modified: perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h?view=diff&rev=111891&p1=perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h&r1=111890&p2=perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h&r2=111891
==
--- perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h  (original)
+++ perl/modperl/trunk/xs/ModPerl/Util/ModPerl__Util.h  Tue Dec 14 14:41:54 2004
@@ -15,10 +15,10 @@
 
 #ifdef USE_ITHREADS
 #define mpxs_ModPerl__Util_current_perl_id() \
-newSVpvf("0x%lx", (unsigned long)aTHX)
+Perl_newSVpvf(aTHX_ "0x%lx", (unsigned long)aTHX)
 #else
 #define mpxs_ModPerl__Util_current_perl_id() \
-newSVpvf("0x%lx", 0)
+Perl_newSVpvf(aTHX_ "0x%lx", 0)
 #endif
 
 static MP_INLINE void mpxs_ModPerl__Util_untaint(pTHX_ I32 items,


svn commit: r111905 - /perl/modperl/trunk/Changes /perl/modperl/trunk/lib/ModPerl/BuildOptions.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 17:06:25 2004
New Revision: 111905

URL: http://svn.apache.org/viewcvs?view=rev&rev=111905
Log:
fix Makefile.PL arguments parser to support more than one MP_foo
option on the same line (including .makepl_args.mod_perl2 file)

Modified:
   perl/modperl/trunk/Changes
   perl/modperl/trunk/lib/ModPerl/BuildOptions.pm

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111905&p1=perl/modperl/trunk/Changes&r1=111904&p2=perl/modperl/trunk/Changes&r2=111905
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 17:06:25 2004
@@ -12,6 +12,9 @@
 
 =item 1.99_19-dev
 
+fix Makefile.PL arguments parser to support more than one MP_foo
+option on the same line (including .makepl_args.mod_perl2 file) [Stas]
+
 fix compilation issues in ModPerl::Util::current_perl_id (on some
 builds newSVpvf can't be resolved but Perl_newSVpvf works just
 fine). [Stas, Markus Wichitill <[EMAIL PROTECTED]>]

Modified: perl/modperl/trunk/lib/ModPerl/BuildOptions.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/BuildOptions.pm?view=diff&rev=111905&p1=perl/modperl/trunk/lib/ModPerl/BuildOptions.pm&r1=111904&p2=perl/modperl/trunk/lib/ModPerl/BuildOptions.pm&r2=111905
==
--- perl/modperl/trunk/lib/ModPerl/BuildOptions.pm  (original)
+++ perl/modperl/trunk/lib/ModPerl/BuildOptions.pm  Tue Dec 14 17:06:25 2004
@@ -75,7 +75,13 @@
 my @unknown;
 my $continue = "";
 
+my @data = ();
 for (@$lines) {
+# more than one entry on the same line
+push @data, split /(?=MP_)/, $_;
+}
+
+for (@data) {
 #XXX: this "parser" should be more robust
 chomp;
 s/^\s+//; s/\s+$//;


svn commit: r111906 - /perl/modperl/trunk/lib/ModPerl/Manifest.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 17:07:07 2004
New Revision: 111906

URL: http://svn.apache.org/viewcvs?view=rev&rev=111906
Log:
fix indentation

Modified:
   perl/modperl/trunk/lib/ModPerl/Manifest.pm

Modified: perl/modperl/trunk/lib/ModPerl/Manifest.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/Manifest.pm?view=diff&rev=111906&p1=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r1=111905&p2=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r2=111906
==
--- perl/modperl/trunk/lib/ModPerl/Manifest.pm  (original)
+++ perl/modperl/trunk/lib/ModPerl/Manifest.pm  Tue Dec 14 17:07:07 2004
@@ -54,10 +54,10 @@
 push @files, $dir ? "$dir/$file" : $file;
  }
 }
+close $fh;
 
-close $fh;
 }}, $cwd);
-
+
 return @files;
 }
 


svn commit: r111907 - /perl/modperl/trunk/Changes /perl/modperl/trunk/lib/ModPerl/TestRun.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 17:08:30 2004
New Revision: 111907

URL: http://svn.apache.org/viewcvs?view=rev&rev=111907
Log:
for make test, skip configuring fastcgi if it's found in the global
httpd.conf, as it causes crashes in the test suite

Modified:
   perl/modperl/trunk/Changes
   perl/modperl/trunk/lib/ModPerl/TestRun.pm

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111907&p1=perl/modperl/trunk/Changes&r1=111906&p2=perl/modperl/trunk/Changes&r2=111907
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 17:08:30 2004
@@ -12,6 +12,9 @@
 
 =item 1.99_19-dev
 
+for make test, skip configuring fastcgi if it's found in the global
+httpd.conf, as it causes crashes in the test suite [Stas]
+
 fix Makefile.PL arguments parser to support more than one MP_foo
 option on the same line (including .makepl_args.mod_perl2 file) [Stas]
 

Modified: perl/modperl/trunk/lib/ModPerl/TestRun.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/TestRun.pm?view=diff&rev=111907&p1=perl/modperl/trunk/lib/ModPerl/TestRun.pm&r1=111906&p2=perl/modperl/trunk/lib/ModPerl/TestRun.pm&r2=111907
==
--- perl/modperl/trunk/lib/ModPerl/TestRun.pm   (original)
+++ perl/modperl/trunk/lib/ModPerl/TestRun.pm   Tue Dec 14 17:08:30 2004
@@ -62,11 +62,13 @@
 return $self;
 }
 
-# don't inherit LoadModule perl_module from the apache httpd.conf
+# - don't inherit LoadModule perl_module from the apache httpd.conf
+# - loaded fastcgi crashes some mp2 tests
+my %skip = map { ("$_.c" => 1) } qw(mod_perl fastcgi);
 sub should_skip_module {
 my($self, $name) = @_;
 
-$name eq 'mod_perl.c' ? 1 : $self->SUPER::should_skip_module($name);
+exists $skip{$name} ? 1 : $self->SUPER::should_skip_module($name);
 }
 
 1;


svn commit: r111911 - /perl/modperl/trunk/Changes /perl/modperl/trunk/lib/ModPerl/WrapXS.pm /perl/modperl/trunk/todo/bugs_build

2004-12-14 Thread gozer
Author: gozer
Date: Tue Dec 14 17:46:20 2004
New Revision: 111911

URL: http://svn.apache.org/viewcvs?view=rev&rev=111911
Log:
modperl_exports.c now wraps all exported functions in a #ifndef
function_name wrapper to help in weeding out functions that only
make sense for certain Perl configurations (perlio, threads).

This was a fix for modperl_io_apache_init() being exported wrongly
when building static against perl-5.6.1


Modified:
   perl/modperl/trunk/Changes
   perl/modperl/trunk/lib/ModPerl/WrapXS.pm
   perl/modperl/trunk/todo/bugs_build

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111911&p1=perl/modperl/trunk/Changes&r1=111910&p2=perl/modperl/trunk/Changes&r2=111911
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 17:46:20 2004
@@ -12,6 +12,10 @@
 
 =item 1.99_19-dev
 
+modperl_exports.c now wraps all exported functions in a #ifndef
+function_name wrapper to help in weeding out functions that only
+make sense for certain Perl configurations (perlio, threads) [Gozer]
+
 for make test, skip configuring fastcgi if it's found in the global
 httpd.conf, as it causes crashes in the test suite [Stas]
 

Modified: perl/modperl/trunk/lib/ModPerl/WrapXS.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/WrapXS.pm?view=diff&rev=111911&p1=perl/modperl/trunk/lib/ModPerl/WrapXS.pm&r1=111910&p2=perl/modperl/trunk/lib/ModPerl/WrapXS.pm&r2=111911
==
--- perl/modperl/trunk/lib/ModPerl/WrapXS.pm(original)
+++ perl/modperl/trunk/lib/ModPerl/WrapXS.pmTue Dec 14 17:46:20 2004
@@ -1302,7 +1302,12 @@
 next if $entry->{name} =~ /^($ithreads_exports)/;
 }
 ( my $name ) = $entry->{name} =~ /^modperl_(.*)/;
-print $fh "const void *modperl_hack_$name = (const void 
*)modperl_$name;\n";
+print $fh <<"EOF";
+#ifndef modperl_$name
+const void *modperl_hack_$name = (const void *)modperl_$name;
+#endif
+
+EOF
 }
 }
 

Modified: perl/modperl/trunk/todo/bugs_build
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/todo/bugs_build?view=diff&rev=111911&p1=perl/modperl/trunk/todo/bugs_build&r1=111910&p2=perl/modperl/trunk/todo/bugs_build&r2=111911
==
--- perl/modperl/trunk/todo/bugs_build  (original)
+++ perl/modperl/trunk/todo/bugs_build  Tue Dec 14 17:46:20 2004
@@ -44,6 +44,11 @@
 
http://marc.theaimsgroup.com/?l=apache-modperl&m=108334017416318&w=2
 Static works OK!
 
+* Need to cleanup functions only needed for certain build flavors
+  (perlio/threads/etc) out of lib/ModPerl/WrapXS.pm:$ithread_exports
+  and use the newer, simpler #ifdef technique (see modperl_io_apache_init
+  for an example)
+
 * we should stop generating xs/apache_*, at least for a reason that
   it's incomplete and will be never complete as we don't keep up with
   changes with ap_/apr_ namespace. Also we don't have the logic to


svn commit: r111916 - /perl/modperl/trunk/lib/ModPerl/BuildOptions.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 18:26:31 2004
New Revision: 111916

URL: http://svn.apache.org/viewcvs?view=rev&rev=111916
Log:
more robust parser, 
- leaving -DMP_* alone
- correctly handling lines starting with # and including MP_Foo opts

Modified:
   perl/modperl/trunk/lib/ModPerl/BuildOptions.pm

Modified: perl/modperl/trunk/lib/ModPerl/BuildOptions.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/BuildOptions.pm?view=diff&rev=111916&p1=perl/modperl/trunk/lib/ModPerl/BuildOptions.pm&r1=111915&p2=perl/modperl/trunk/lib/ModPerl/BuildOptions.pm&r2=111916
==
--- perl/modperl/trunk/lib/ModPerl/BuildOptions.pm  (original)
+++ perl/modperl/trunk/lib/ModPerl/BuildOptions.pm  Tue Dec 14 18:26:31 2004
@@ -77,16 +77,20 @@
 
 my @data = ();
 for (@$lines) {
-# more than one entry on the same line
-push @data, split /(?=MP_)/, $_;
+chomp;
+s/^\s+//; s/\s+$//;
+next if /^\#/ || /^$/;
+last if /^__END__/;
+
+# more than one entry on the same line (but make sure to leave
+# -DMP_* alone)
+push @data, split /(?=\WMP_)/, $_;
 }
 
 for (@data) {
 #XXX: this "parser" should be more robust
-chomp;
+
 s/^\s+//; s/\s+$//;
-next if /^\#/ || /^$/;
-last if /^__END__/;
 
 $_ = "$continue $_" if $continue;
 


svn commit: r111931 - /perl/modperl/trunk/t/conf/extra.last.conf.in /perl/modperl/trunk/t/response/TestDirective/pod.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 20:01:07 2004
New Revision: 111931

URL: http://svn.apache.org/viewcvs?view=rev&rev=111931
Log:
extend the =pod in config test, to test that the code in =pod is not seen 
by Apache (even though it'd have been an error with just a string, but 
better do a real check, in case Apache somehow have ignored the error)

Modified:
   perl/modperl/trunk/t/conf/extra.last.conf.in
   perl/modperl/trunk/t/response/TestDirective/pod.pm

Modified: perl/modperl/trunk/t/conf/extra.last.conf.in
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/t/conf/extra.last.conf.in?view=diff&rev=111931&p1=perl/modperl/trunk/t/conf/extra.last.conf.in&r1=111930&p2=perl/modperl/trunk/t/conf/extra.last.conf.in&r2=111931
==
--- perl/modperl/trunk/t/conf/extra.last.conf.in(original)
+++ perl/modperl/trunk/t/conf/extra.last.conf.inTue Dec 14 20:01:07 2004
@@ -61,10 +61,19 @@
 
 ### - ###
 =pod
-This is some pod data
+
+The following line is not seen by Apache
+
+PerlSetVar TestDirective__pod_hidden whatever
+
 =over apache
+
 PerlSetVar TestDirective__pod_over_worked yes
+
 =back
+
 This is some more pod
+
 =cut
+
 PerlSetVar TestDirective__pod_cut_worked yes

Modified: perl/modperl/trunk/t/response/TestDirective/pod.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/t/response/TestDirective/pod.pm?view=diff&rev=111931&p1=perl/modperl/trunk/t/response/TestDirective/pod.pm&r1=111930&p2=perl/modperl/trunk/t/response/TestDirective/pod.pm&r2=111931
==
--- perl/modperl/trunk/t/response/TestDirective/pod.pm  (original)
+++ perl/modperl/trunk/t/response/TestDirective/pod.pm  Tue Dec 14 20:01:07 2004
@@ -10,13 +10,14 @@
 sub handler {
 my $r = shift;
 
-plan $r, tests => 3;
+plan $r, tests => 4;
 
-ok t_cmp($r->dir_config->get('TestDirective__pod_over_worked'), 'yes');
-ok t_cmp($r->dir_config->get('TestDirective__pod_cut_worked'), 'yes');
+ok t_cmp $r->dir_config->get('TestDirective__pod_hidden'),  undef;
+ok t_cmp $r->dir_config->get('TestDirective__pod_over_worked'), 'yes';
+ok t_cmp $r->dir_config->get('TestDirective__pod_cut_worked'),  'yes';
 
 #XXX: How to test that __END__ works proprely without cloberring all the 
other tests?
-ok t_cmp('__END__', '__END__');
+ok t_cmp '__END__', '__END__';
 
 Apache::OK;
 }


svn commit: r111910 - /perl/modperl/trunk/lib/Apache/PerlSections.pm

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 17:32:11 2004
New Revision: 111910

URL: http://svn.apache.org/viewcvs?view=rev&rev=111910
Log:
cleanup

Modified:
   perl/modperl/trunk/lib/Apache/PerlSections.pm

Modified: perl/modperl/trunk/lib/Apache/PerlSections.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/Apache/PerlSections.pm?view=diff&rev=111910&p1=perl/modperl/trunk/lib/Apache/PerlSections.pm&r1=111909&p2=perl/modperl/trunk/lib/Apache/PerlSections.pm&r2=111910
==
--- perl/modperl/trunk/lib/Apache/PerlSections.pm   (original)
+++ perl/modperl/trunk/lib/Apache/PerlSections.pm   Tue Dec 14 17:32:11 2004
@@ -79,9 +79,9 @@
 
 unless ($self->{symbols}) {
 no strict;
-
+
 $self->{symbols} = [];
-
+
 #XXX: Here would be a good place to warn about NOT using 
 # Apache::ReadConfig:: directly in  sections
 foreach my $pack ($self->package, $self->SPECIAL_PACKAGE) {
From jeff Wed Dec 15 01:29:53 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Tue Dec 14 17:29:53 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: archive@mail-archive.com
Delivery-date: Tue, 14 Dec 2004 17:29:53 -0800
Received: from exprod5mx117.postini.com ([64.18.0.89] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1CeNzF-0005CH-00
for ; Tue, 14 Dec 2004 17:29:53 -0800
Received: from source ([209.239.33.40]) by exprod5mx117.postini.com 
([64.18.4.10]) with SMTP;
Tue, 14 Dec 2004 19:32:33 CST
Received: (from [EMAIL PROTECTED])
by host24.websitesource.com (8.12.10/8.12.10) id iBF1WXno017632
for archive@mail-archive.com; Tue, 14 Dec 2004 20:32:33 -0500
Resent-Date: Tue, 14 Dec 2004 20:31:29 -0500
X-Authentication-Warning: host24.websitesource.com: dbrewer set sender to 
[EMAIL PROTECTED] using -f
Message-ID: <[EMAIL PROTECTED]>
From: "Ryan Lee" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
References: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]>
Subject: Re: Some really neat northern lights photos
Date: Wed, 15 Dec 2004 01:37:28 -
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2800.1437
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1441
Resent-Message-ID: <[EMAIL PROTECTED]>
Resent-From: [EMAIL PROTECTED]
X-Mailing-List: <[EMAIL PROTECTED]> archive/latest/134872
X-Loop: [EMAIL PROTECTED]
Precedence: list
Resent-Sender: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
X-pstn-levels: (S:99.9/99.9 R:95.9108 P:95.9108 M:94.8624 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c 
X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] 
X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: 
X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham 
version=2.64

http://www.iww.is/art/shs/pages/thumbs.html

Cheers,
Ryan


- Original Message - 
From: "Rebekah Gonzalez" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, December 15, 2004 1:19 AM
Subject: Re: Some really neat northern lights photos


> does anyone have the link for those photos?
> 
> rg2
> *PENTAX SAMURAI*


svn commit: r111913 - /perl/modperl/trunk/Changes

2004-12-14 Thread stas
Author: stas
Date: Tue Dec 14 17:55:24 2004
New Revision: 111913

URL: http://svn.apache.org/viewcvs?view=rev&rev=111913
Log:
that fixes 5.6.x static build

Modified:
   perl/modperl/trunk/Changes

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111913&p1=perl/modperl/trunk/Changes&r1=111912&p2=perl/modperl/trunk/Changes&r2=111913
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 17:55:24 2004
@@ -16,8 +16,9 @@
 is capable of handling multiple META.yml files in one distro [Gozer]
 
 modperl_exports.c now wraps all exported functions in a #ifndef
-function_name wrapper to help in weeding out functions that only
-make sense for certain Perl configurations (perlio, threads) [Gozer]
+function_name wrapper to help in weeding out functions that only make
+sense for certain Perl configurations (perlio, threads) (which also
+fixes static build against perlio-disabled perls, like 5.6.x) [Gozer]
 
 for make test, skip configuring fastcgi if it's found in the global
 httpd.conf, as it causes crashes in the test suite [Stas]
From jeff Wed Dec 15 01:59:41 2004
Return-Path: [EMAIL PROTECTED]
Delivery-Date: Tue Dec 14 17:59:41 2004
Return-path: <[EMAIL PROTECTED]>
Envelope-to: archive@jab.org
Delivery-date: Tue, 14 Dec 2004 17:59:41 -0800
Received: from exprod5mx97.postini.com ([64.18.0.85] helo=psmtp.com)
by toko.jab.org with smtp (Exim 3.36 #1 (Debian))
id 1CeOS5-0005Th-00
for ; Tue, 14 Dec 2004 17:59:41 -0800
Received: from source ([208.186.168.62]) by exprod5mx97.postini.com 
([64.18.4.10]) with SMTP;
Tue, 14 Dec 2004 21:02:20 EST
Received: from localhost ([EMAIL PROTECTED])
by vps.vlists.net (8.11.6/8.11.6) with SMTP id iBF22Jg11943
for ; Tue, 14 Dec 2004 20:02:20 -0600
Received: by vps.vlists.net (TLB v0.11a (1.26 tibbs 1998/09/22 04:41:41)); Tue, 
14 Dec 2004 20:01:57 -0600 (CST)
Received: (from [EMAIL PROTECTED])
by vps.vlists.net (8.11.6/8.11.6) id iBF21vW11388
for felvtalk-utils; Tue, 14 Dec 2004 20:01:57 -0600
Received: from web20322.mail.yahoo.com (web20322.mail.yahoo.com [216.136.227.8])
by delete-12-30-vps.vlists.net (8.11.6/8.11.6) with SMTP id iBF21eb11363
for <[EMAIL PROTECTED]>; Tue, 14 Dec 2004 20:01:40 -0600
Received: (qmail 59722 invoked by uid 60001); 15 Dec 2004 02:01:23 -
Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys
DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws;
  s=s1024; d=yahoo.com;
  
b=vtt2NLiwcDjJPmtKcu/OghBH744Fcfjc8kFnLe/G19iEpVwInRLt7oTH1y1V84ZimrK6MpUZS1j0QqEf+wY3dv4EUjRqHXFLviHfyInJqQ/IGK+hDJzLf0hBzzcdFc7ZyBe8tk9C1BIrOe7CvlA7IJ19c0PHJkAEhyofH7dAfbY=
  ;
Message-ID: <[EMAIL PROTECTED]>
Received: from [216.49.105.3] by web20322.mail.yahoo.com via HTTP; Tue, 14 Dec 
2004 18:01:23 PST
Date: Tue, 14 Dec 2004 18:01:23 -0800 (PST)
From: Lora <[EMAIL PROTECTED]>
Subject: Massive Spraying Issue!
To: [EMAIL PROTECTED]
In-Reply-To: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Virus-Information: Virus Scanned By VLists.Net For Your Protection.
Virus-Status: Virus Scanner Found No Virus
Spam-Status: not spam, SpamAssassin (score=-2.594, required 5,
autolearn=not spam, AWL -0.01, BAYES_00 -2.60,
DRUGS_DEPRESSION 0.01)
Sender: [EMAIL PROTECTED]
Precedence: list
Reply-To: [EMAIL PROTECTED]
X-pstn-levels: (S: 2.04201/99.18632 R:95.9108 P:95.9108 M:94.8624 C:98.9754 )
X-pstn-settings: 1 (0.1500:0.1500) gt3 gt2 gt1 r p m c 
X-pstn-addresses: from <[EMAIL PROTECTED]> [294/10] 
X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on toko.jab.org
X-Spam-Level: 
X-Spam-Status: No, hits=-4.9 required=4.0 tests=BAYES_00 autolearn=ham 
version=2.64

Okay group, this is a matter of life and death. No
joke! If Dartagnan does not completely and
successfully quit spraying I have no choice but to
relinquish him into the care of the local county
Humane Society and have him euthanized.

This is an extremely emotional decsion for me to make
since I am completely anti-PTS! I absolutley do not
believe in euthanasia. After Peeper passed it was
enough trauma for me.

But my house is traumatized! It is completley ruined
and beyond restoration. Nothing and I mean absolutely
nothing is sacred to Dartagnan!

He spays electrical, metal, plastic, carboard, wood,
fabric, and even glass! I have lost hundreds of
thousands of dollars replacing the soiled items.

ELECTRICAL:

He sprays, my electric outlets i.e. plug-ins and phone
jacks! I have electrical shorts in the phone line as
well as with the appliances. Smokes just rolls out the
outlets!

METAL:

He sprays my dishwasher, washing machine, dryer, the
metal storm doors, door HINGES themselves, portable
heaters, the oven, even the actual stove top and the
water heater! He actally even extinguished the pilot
light! I literally had no hot water

svn commit: r111912 - /perl/modperl/trunk/Changes /perl/modperl/trunk/lib/ModPerl/Manifest.pm /perl/modperl/trunk/todo/release

2004-12-14 Thread gozer
Author: gozer
Date: Tue Dec 14 17:51:22 2004
New Revision: 111912

URL: http://svn.apache.org/viewcvs?view=rev&rev=111912
Log:
Ignore Apache-Test/META.yml in distribution tarballs until PAUSE
is capable of handling multiple META.yml files in one distro


Modified:
   perl/modperl/trunk/Changes
   perl/modperl/trunk/lib/ModPerl/Manifest.pm
   perl/modperl/trunk/todo/release

Modified: perl/modperl/trunk/Changes
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/Changes?view=diff&rev=111912&p1=perl/modperl/trunk/Changes&r1=111911&p2=perl/modperl/trunk/Changes&r2=111912
==
--- perl/modperl/trunk/Changes  (original)
+++ perl/modperl/trunk/Changes  Tue Dec 14 17:51:22 2004
@@ -12,6 +12,9 @@
 
 =item 1.99_19-dev
 
+Ignore Apache-Test/META.yml in distribution tarballs until PAUSE
+is capable of handling multiple META.yml files in one distro [Gozer]
+
 modperl_exports.c now wraps all exported functions in a #ifndef
 function_name wrapper to help in weeding out functions that only
 make sense for certain Perl configurations (perlio, threads) [Gozer]

Modified: perl/modperl/trunk/lib/ModPerl/Manifest.pm
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/lib/ModPerl/Manifest.pm?view=diff&rev=111912&p1=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r1=111911&p2=perl/modperl/trunk/lib/ModPerl/Manifest.pm&r2=111912
==
--- perl/modperl/trunk/lib/ModPerl/Manifest.pm  (original)
+++ perl/modperl/trunk/lib/ModPerl/Manifest.pm  Tue Dec 14 17:51:22 2004
@@ -114,4 +114,6 @@
 t/response/TestPerl/ithreads.pm
 # incomplete
 t/apr-ext/perlio
+# PAUSE breaks if a dist has more than one META.yml
+Apache-Test/META.yml
 

Modified: perl/modperl/trunk/todo/release
Url: 
http://svn.apache.org/viewcvs/perl/modperl/trunk/todo/release?view=diff&rev=111912&p1=perl/modperl/trunk/todo/release&r1=111911&p2=perl/modperl/trunk/todo/release&r2=111912
==
--- perl/modperl/trunk/todo/release (original)
+++ perl/modperl/trunk/todo/release Tue Dec 14 17:51:22 2004
@@ -4,9 +4,6 @@
 
 -- see also todo/api_status
 
-* for RC2 need to temporarily fix makemanifest to exclude
-  Apache-Test/META.yml
-
 * pools that go out of scope:
 
   perl -MApache2 -MAPR::Pool -MAPR::PerlIO -le ';