Author: timbo
Date: Mon Jan 2 07:51:59 2012
New Revision: 15063
Modified:
dbi/trunk/Changes
dbi/trunk/dbixs_rev.h
dbi/trunk/lib/DBI/ProxyServer.pm
Log:
Changed DBI::ProxyServer to require DBI at compile-time RT62672
Modified: dbi/trunk/Changes
==============================================================================
--- dbi/trunk/Changes (original)
+++ dbi/trunk/Changes Mon Jan 2 07:51:59 2012
@@ -20,6 +20,7 @@
Removed old code that was an inneffective attempt to detect
people doing DBI->{Attrib}.
Clear ParamValues on bind_param param count error RT66127 (Tim Bunce)
+ Changed DBI::ProxyServer to require DBI at compile-time RT62672 (Tim Bunce)
Added pod for default_user to DBI::DBD (Martin J. Evans)
Added CON, ENC and DBD trace flags and extended 09trace.t (Martin J. Evans)
Modified: dbi/trunk/dbixs_rev.h
==============================================================================
--- dbi/trunk/dbixs_rev.h (original)
+++ dbi/trunk/dbixs_rev.h Mon Jan 2 07:51:59 2012
@@ -1,4 +1,4 @@
-/* Mon Jan 2 14:56:41 2012 */
-/* Mixed revision working copy (15055M:15060) */
+/* Mon Jan 2 15:17:49 2012 */
+/* Mixed revision working copy (15055M:15062) */
/* Code modified since last checkin */
#define DBIXS_REVISION 15055
Modified: dbi/trunk/lib/DBI/ProxyServer.pm
==============================================================================
--- dbi/trunk/lib/DBI/ProxyServer.pm (original)
+++ dbi/trunk/lib/DBI/ProxyServer.pm Mon Jan 2 07:51:59 2012
@@ -26,7 +26,7 @@
use strict;
use RPC::PlServer 0.2001;
-# require DBI; # deferred till AcceptVersion() to aid threading
+require DBI;
require Config;