]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 408766: Apache::DBI was unnecessary and was causing problems for some users.
authormkanat%bugzilla.org <>
Wed, 19 Dec 2007 06:41:58 +0000 (06:41 +0000)
committermkanat%bugzilla.org <>
Wed, 19 Dec 2007 06:41:58 +0000 (06:41 +0000)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=justdave, a=mkanat

Bugzilla/DB.pm
Bugzilla/Install/Requirements.pm
docs/xml/installation.xml
mod_perl.pl

index ec241bcca78917d57e28a97818f6ebc43bf2cc09..40cd3e3a12b19d902cacc23623436b54bf2c9ce5 100644 (file)
@@ -1065,7 +1065,6 @@ sub db_new {
     }
 
     # connect using our known info to the specified db
-    # Apache::DBI will cache this when using mod_perl
     my $self = DBI->connect($dsn, $user, $pass, $attributes)
         or die "\nCan't connect to the database.\nError: $DBI::errstr\n"
         . "  Is your database installed and up and running?\n  Do you have"
index 05f74e81f5ddd69941ddda60481b695a692332ca..714bb387148b727e55b64a6d1a0afb880ffbace7 100644 (file)
@@ -225,12 +225,6 @@ sub OPTIONAL_MODULES {
         version => '3.11',
         feature => 'mod_perl'
     },
-    {
-        package => 'Apache-DBI',
-        module  => 'Apache::DBI',
-        version => '0.96',
-        feature => 'mod_perl'
-    },
     );
 
     my $all_modules = _get_extension_requirements(
index 58b7d33aaff002846a839f677455f79fbf1ef4f7..572d16f33a0673357f5ce6573946c9a20aff80f9 100644 (file)
@@ -1,5 +1,5 @@
 <!-- <!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"> -->
-<!-- $Id: installation.xml,v 1.147 2007/10/19 06:46:18 mkanat%bugzilla.org Exp $ -->
+<!-- $Id: installation.xml,v 1.148 2007/12/19 00:42:00 mkanat%bugzilla.org Exp $ -->
 <chapter id="installing-bugzilla">
   <title>Installing Bugzilla</title>
 
           </para>
         </listitem>
 
-        <listitem>
-          <para>
-            Apache::DBI
-            (&min-apache-dbi-ver;) for mod_perl2
-          </para>
-        </listitem>
       </orderedlist>
       </para>
 
       <para>Bugzilla also requires a more up-to-date version of the CGI
       perl module to be installed, version &min-mp-cgi-ver; as opposed to &min-cgi-ver;
       </para>
-      
-      <para>Finally, Bugzilla also requires <literal>Apache::DBI</literal>
-      (&min-apache-dbi-ver;) to be installed as well.</para>
     </section>
   </section>
   
index bc22a774f0615deffedf824285a84013e8312908..b4a8f297eaec06cba050f041589d96e87f904b3c 100644 (file)
@@ -28,7 +28,6 @@ use strict;
 # startup, so we always specify () after using any module in this
 # file.
 
-use Apache::DBI ();
 use Apache2::ServerUtil;
 use Apache2::SizeLimit;
 use ModPerl::RegistryLoader ();