| timbo@cvs.perl.org 2005-06-03, 8:27 pm |
| Author: timbo
Date: Wed Dec 8 13:07:41 2004
New Revision: 607
Modified:
dbd-oracle/trunk/Changes
dbd-oracle/trunk/Makefile.PL
Log:
Changed Makefile.PL to avoid risk of sqlplus hanging thanks to Mark Dedlow.
Modified: dbd-oracle/trunk/Changes
====================
====================
====================
==================
--- dbd-oracle/trunk/Changes (original)
+++ dbd-oracle/trunk/Changes Wed Dec 8 13:07:41 2004
@@ -2,7 +2,8 @@
Fixed csform setting for Oracle 8.0.
- Changed Makfile.PL to prefer ~/rdbms/public over other ~/rdbms/* for .h files.
+ Changed Makefile.PL to avoid risk of sqlplus hanging thanks to Mark Dedlow.
+ Changed Makefile.PL to prefer ~/rdbms/public over other ~/rdbms/* for .h files.
Changed README.vms re logical name tables thanks to Jakob Snoer.
Added VMS logical name checks to Makefile.PL thanks to Jakob Snoer.
Modified: dbd-oracle/trunk/Makefile.PL
====================
====================
====================
==================
--- dbd-oracle/trunk/Makefile.PL (original)
+++ dbd-oracle/trunk/Makefile.PL Wed Dec 8 13:07:41 2004
@@ -1328,6 +1328,7 @@
my $sqlplus_exe = ($os eq 'Win32') ? "sqlplus.exe" : "sqlplus";
local $ENV{PATH} = join $Config{path_sep}, $ENV{PATH}, "$OH/bin", $OH;
+ local $ENV{SQLPATH} = ""; # avoid $SQLPATH/login.sql causing sqlplus to hang
if (find_bin($sqlplus_e
xe)) {
# Try to use the _SQLPLUS_RELEASE predefined variable from sqlplus
|