Ticket #1469 (closed defect: fixed)

Opened 10 months ago

Last modified 9 months ago

package.xml misses pdo

Reported by: till Owned by: jwage
Priority: major Milestone: 1.0.3
Component: Attributes Version: 0.11.0
Severity: Keywords:
Cc: Has Test: no
Status: Pending Core Response Has Patch: yes

Description

OK, this is a minor but I installed your fine package through PEAR and usually it's supposed to alert me of whatever I am missing (dependencies) in order to run a package. Your package doesn't list PDO etc. as dependency which is sort of critical, and yes, I didn't have it installed on my dev box.

I just had "regular" sqlite.so, etc.. Anyway, a patch is included, you get my drift.

--- package.xml.original        Thu Sep 18 13:30:40 2008
+++ package.xml Thu Sep 18 13:32:38 2008
@@ -1321,7 +1321,18 @@ requiring needless code duplication.</de
     <channel>pear.php.net</channel>
     <min>1.3.6</min>
    </package>
+   <extension>
+    <name>pdo</name>
+   </extension>
   </required>
+  <optional>
+   <extension>
+    <name>pdo_mysql</name>
+   </extension>
+   <extension>
+    <name>pdo_sqlite</name>
+   </extension>
+  </optional>
  </dependencies>
  <phprelease />
  <changelog>

Change History

Changed 10 months ago by till

Here are all PDO-related extensions:

  • pdo_dblib
  • pdo_mysql
  • pdo_odbc
  • pdo_sqlite
  • pdo_firebird
  • pdo_oci
  • pdo_pgsql

Changed 10 months ago by romanb

  • milestone set to 1.0.3

Changed 9 months ago by jwage

  • status changed from new to closed
  • resolution set to fixed

In r4981 this issue is fixed. Thanks for the report.

Changed 9 months ago by till

  • status changed from closed to reopened
  • resolution fixed deleted

You guys don't support postgres etc?

Changed 9 months ago by jwage

  • status changed from reopened to closed
  • resolution set to fixed

Fixed by r4989

Note: See TracTickets for help on using tickets.