Author: turnstep
Date: Mon Mar 12 19:08:16 2007
New Revision: 9244
Modified:
DBD-Pg/trunk/Makefile.PL
Log:
Show POSTGRES_LIB and POSTGRES_INCLUDE when building.
Modified: DBD-Pg/trunk/Makefile.PL
==============================================================================
--- DBD-Pg/trunk/Makefile.PL (original)
+++ DBD-Pg/trunk/Makefile.PL Mon Mar 12 19:08:16 2007
@@ -7,7 +7,7 @@
use DBI 1.45;
use DBI::DBD;
-my $VERSION = "1.49";
+my $VERSION = "1.50";
my $lib;
BEGIN {
@@ -56,6 +56,8 @@
my $os = $^O;
print "OS: $os\n";
print "PostgreSQL version: $serverversion (default port: $defaultport)\n";
+print "POSTGRES_INCLUDE: $ENV{POSTGRES_INCLUDE}\n";
+print "POSTGRES_LIB: $ENV{POSTGRES_LIB}\n";
if ($serverversion < 1) {
die "Could not determine the PostgreSQL library version.\n".