Author: turnstep
Date: Tue Sep 16 07:28:00 2008
New Revision: 11794

Modified:
   DBD-Pg/trunk/Changes
   DBD-Pg/trunk/META.yml
   DBD-Pg/trunk/Makefile.PL
   DBD-Pg/trunk/Pg.pm
   DBD-Pg/trunk/README
   DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm

Log:
Vesion bump, add -lm


Modified: DBD-Pg/trunk/Changes
==============================================================================
--- DBD-Pg/trunk/Changes        (original)
+++ DBD-Pg/trunk/Changes        Tue Sep 16 07:28:00 2008
@@ -1,5 +1,10 @@
 ('GSM' is Greg Sabino Mullane, [EMAIL PROTECTED])
 
+2.10.4
+
+       - Force use of math library when compiling. Per report 
+               of AIX problems by Rainer Tammer.
+
 2.10.3 Released August 31, 2008 (subversion r11706)
 
        - Previous version had wrong SIGNATURE file

Modified: DBD-Pg/trunk/META.yml
==============================================================================
--- DBD-Pg/trunk/META.yml       (original)
+++ DBD-Pg/trunk/META.yml       Tue Sep 16 07:28:00 2008
@@ -1,6 +1,6 @@
 --- #YAML:1.1
 name                        : DBD-Pg
-version                     : 2.10.3
+version                     : 2.10.4
 abstract                    : DBI PostgreSQL interface
 author:              
   - Greg Sabino Mullane <[EMAIL PROTECTED]>
@@ -38,10 +38,10 @@
 provides:
   DBD::Pg:
     file                    : Pg.pm
-    version                 : 2.10.3
+    version                 : 2.10.4
   Bundle::DBD::Pg:
     file                    : lib/Bundle/DBD/Pg.pm
-    version                 : 2.10.3
+    version                 : 2.10.4
 
 keywords:
   - Postgres

Modified: DBD-Pg/trunk/Makefile.PL
==============================================================================
--- DBD-Pg/trunk/Makefile.PL    (original)
+++ DBD-Pg/trunk/Makefile.PL    Tue Sep 16 07:28:00 2008
@@ -7,7 +7,7 @@
 use 5.006001;
 
 ## No version.pm for this one, as the prereqs are not loaded yet.
-my $VERSION = '2.10.3';
+my $VERSION = '2.10.4';
 
 my $lib;
 BEGIN {
@@ -184,7 +184,7 @@
         VERSION_FROM   => 'Pg.pm',
         INC            => "-I$POSTGRES_INCLUDE -I$dbi_arch_dir",
         OBJECT         => "Pg\$(OBJ_EXT) dbdimp\$(OBJ_EXT) quote\$(OBJ_EXT) 
types\$(OBJ_EXT)",
-        LIBS           => ["-L$POSTGRES_LIB -lpq"],
+        LIBS           => ["-L$POSTGRES_LIB -lpq -lm"],
         AUTHOR         => 'Greg Sabino Mullane',
         ABSTRACT       => 'PostgreSQL database driver for the DBI module',
         PREREQ_PM      => {

Modified: DBD-Pg/trunk/Pg.pm
==============================================================================
--- DBD-Pg/trunk/Pg.pm  (original)
+++ DBD-Pg/trunk/Pg.pm  Tue Sep 16 07:28:00 2008
@@ -17,7 +17,7 @@
 {
        package DBD::Pg;
 
-       use version; our $VERSION = qv('2.10.3');
+       use version; our $VERSION = qv('2.10.4');
 
        use DBI ();
        use DynaLoader ();

Modified: DBD-Pg/trunk/README
==============================================================================
--- DBD-Pg/trunk/README (original)
+++ DBD-Pg/trunk/README Tue Sep 16 07:28:00 2008
@@ -6,7 +6,7 @@
 DESCRIPTION:
 ------------
 
-This is version 2.10.3 of DBD::Pg, the Perl interface to Postgres using DBI. 
+This is version 2.10.4 of DBD::Pg, the Perl interface to Postgres using DBI. 
 The web site for this interface, and the latest version, can be found at:
 
        http://search.cpan.org/dist/DBD-Pg/

Modified: DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm
==============================================================================
--- DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm   (original)
+++ DBD-Pg/trunk/lib/Bundle/DBD/Pg.pm   Tue Sep 16 07:28:00 2008
@@ -4,7 +4,7 @@
 use strict;
 use warnings;
 
-$VERSION = '2.10.3';
+$VERSION = '2.10.4';
 
 1;
 

Reply via email to