AIX DBD::Oracle perl Makefile.PL seg faults

2011-01-30 Thread Williams, Stephen
Morning all, I am having trouble with trying to compile the DBD drive for Oracle on my AIX 5.3 TL11 host. I have DBI-1.616 installed on the node fine, but when I go to run the perl Makefile.PL I keep getting a core dump. The perl installation is the OS supplied perl (information below). root

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
Sent: Friday, January 28, 2011 4:24 PM To: ericbamba...@discover.com Cc: dbi-users@perl.org; John Scoles Subject: RE: AIX DBD::Oracle perl Makefile.PL core dumps All standard lib paths. I would have thought it may be the lib lib32 issue but even when I attempted to modify the Makefile.PL to poin

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
, January 28, 2011 4:15 PM To: Williams, Stephen Cc: dbi-users@perl.org; John Scoles Subject: RE: AIX DBD::Oracle perl Makefile.PL core dumps Are you using a nonstandard LIBPATH? Are you mixing/matching 32/64 bit oracle libraries with a 32/64 bit perl? We're had to stick to 32 bit oracle libs on o

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
em. From: John Scoles [mailto:sco...@pythian.com] Sent: Friday, January 28, 2011 4:15 PM To: Williams, Stephen Cc: dbi-users@perl.org Subject: Re: AIX DBD::Oracle perl Makefile.PL core dumps On Fri, Jan 28, 2011 at 4:01 PM, Williams, Stephen mailto:stephen.willi...@twcable.com>> wrote

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread ericbambach1
Road, Riverwoods IL 60015 P: 224.405.2896 ericbamba...@discover.com "Williams, Stephen" 01/28/2011 03:02 PM To John Scoles cc "dbi-users@perl.org" Subject RE: AIX DBD::Oracle perl Makefile.PL core dumps root@nimdinf01:/var/tmp/DBD-Oracle-1.27 ] perl Makefile.PL

Re: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread John Scoles
On Fri, Jan 28, 2011 at 4:01 PM, Williams, Stephen < stephen.willi...@twcable.com> wrote: > root@nimdinf01:/var/tmp/DBD-Oracle-1.27 ] perl Makefile.PL > Illegal instruction (core dumped) > > Here is a truss > > statx("/usr/opt/perl5/lib/5.8.8/aix-thread-multi/auto

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
root@nimdinf01:/var/tmp/DBD-Oracle-1.27 ] perl Makefile.PL Illegal instruction (core dumped) Here is a truss statx("/usr/opt/perl5/lib/5.8.8/aix-thread-multi/auto/DBI", 0x20008CB8, 128, 010) Err#2 ENOENT statx("/usr/opt/perl5/lib/5.8.8/auto/DBI", 0x20008CB8, 128, 010) Err#2

Re: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread John Scoles
post what happens on the perl Makefile.PL Cheers John On Fri, Jan 28, 2011 at 3:22 PM, Williams, Stephen < stephen.willi...@twcable.com> wrote: > Afternoon all, > > I am having trouble with trying to compile the DBD drive for Oracle on my > AIX 5.3 TL11 host. I have DBI-1.616 ins

RE: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
-Original Message- From: Martin J. Evans [mailto:martin.ev...@easysoft.com] Sent: Friday, January 28, 2011 3:34 PM To: dbi-users@perl.org Subject: Re: AIX DBD::Oracle perl Makefile.PL core dumps On 28/01/2011 20:22, Williams, Stephen wrote: > Afternoon all, > > I am having tro

Re: AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Martin J. Evans
On 28/01/2011 20:22, Williams, Stephen wrote: Afternoon all, I am having trouble with trying to compile the DBD drive for Oracle on my AIX 5.3 TL11 host. I have DBI-1.616 installed on the node fine, but when I go to run the perl Makefile.PL I keep getting a core dump. The perl installation is

AIX DBD::Oracle perl Makefile.PL core dumps

2011-01-28 Thread Williams, Stephen
Afternoon all, I am having trouble with trying to compile the DBD drive for Oracle on my AIX 5.3 TL11 host. I have DBI-1.616 installed on the node fine, but when I go to run the perl Makefile.PL I keep getting a core dump. The perl installation is the OS supplied perl (information below

Re: PERL MAKEFILE.PL

2010-04-26 Thread John Scoles
Leonard Cowan wrote: I'm get this error :WARNING: Oracle build rule discovery failed (512). What is this usually means nothing what did the 'make' results show?? cheers John [r...@linux4 DBD-Oracle-1.24]# perl Makefile.PL Using DBI 1.609 (for perl 5.012000 on i686-l

PERL MAKEFILE.PL

2010-04-25 Thread Leonard Cowan
I'm get this error :WARNING: Oracle build rule discovery failed (512). What is this [r...@linux4 DBD-Oracle-1.24]# perl Makefile.PL Using DBI 1.609 (for perl 5.012000 on i686-linux) installed in /usr/local/lib/perl5/site_perl/5.12.0/i686-linux/auto/DBI/ Configuring DBD::Oracle for

DBD::Oracle perl Makefile.PL issues

2007-10-05 Thread Dan King
I am having a problem with DBD ::Oracle installing on a Windows XP computer. I have followed the readme file up to the point where I am supposed to run perl Makefile.PL. At this point I receive the following output: C:\OTRS\Perl\cpan\build\DBD-Oracle-1.19>perl Makefile.PL Using DBI 1.57 (

Re: Force perl Makefile.PL to use gcc instead of cc

2006-01-20 Thread James D. White
By default, Makefile.PL gets the compiler and compiler options from the Perl compiler that is running it, by using the compiler and options used to build the compiler itself . All you should need to create the Makefile is perl Makefile.PL (or possibly /usr/local/bin/perl Makefile.PL

Re: Force perl Makefile.PL to use gcc instead of cc

2006-01-20 Thread Alan Burlison
the Makefile to point to gcc, it uses cc specific compile options and fails anyway. Any ideas? Yes, install the perlgcc module from CPAN, then: perlgcc perl Makefile.PL; make install. -- Alan Burlison --

Force perl Makefile.PL to use gcc instead of cc

2006-01-20 Thread Jon August
Hi, I'm trying to compile DBD::Oracle and on the configure, it assumes I want to use cc (This is solaris 9) instead of gcc. I have tried setting CC=gcc and I've tried moving cc to somewhere else, but I can't get it to generate the Makefile with gcc. If I modify the Makefile to point to gcc, it u

problem making DBD::ORACLE 1.48 on solaris .... solved by perl Makefile.pl -nob

2005-04-21 Thread jon . m . landenburger
Hi, Had a problem doing the "make" step for the building of DBD::ORACLE 1.48.  I then redid the "perl Makefile.PL" step using the -nob option, as suggested in the readme.  That seemed to solve my problem.  The readme mentioned if I had such a problem and solution to send log

RE: DBD:Oracle "perl Makefile.PL" problem

2004-02-26 Thread Howell, Andrew
Yes. This also works. Andrew -Original Message- From: Tim Bunce [mailto:[EMAIL PROTECTED] Sent: February 25, 2004 5:21 PM To: Howell, Andrew Cc: 'Tim Bunce'; '[EMAIL PROTECTED]' Subject: Re: DBD:Oracle "perl Makefile.PL" problem On Wed, Feb 25, 2004 at 04

Re: DBD:Oracle "perl Makefile.PL" problem

2004-02-25 Thread Tim Bunce
On Wed, Feb 25, 2004 at 04:29:06PM -0500, Howell, Andrew wrote: > Changing "cc=echo" to "cc=" seems to have fixed the problem. > > Applying the changes below in a separate also run seemed to fixed the > problem. Actually that wasn't a good fix. Here's what I've adopted now: --- Makefile.PL (revi

RE: DBD:Oracle "perl Makefile.PL" problem

2004-02-25 Thread Howell, Andrew
c: '[EMAIL PROTECTED]'; '[EMAIL PROTECTED]' Subject: Re: DBD:Oracle "perl Makefile.PL" problem On Wed, Feb 25, 2004 at 12:49:34PM -0500, Howell, Andrew wrote: > > make -f /usr2/opt2/app/oracle/product/8.0.5/rdbms/demo/demo_rdbms.mk build > ECHODO=echo ECHO=echo

Re: DBD:Oracle "perl Makefile.PL" problem

2004-02-25 Thread Tim Bunce
On Wed, Feb 25, 2004 at 12:49:34PM -0500, Howell, Andrew wrote: > > make -f /usr2/opt2/app/oracle/product/8.0.5/rdbms/demo/demo_rdbms.mk build > ECHODO=echo ECHO=echo GENCLNTSH='echo genclntsh' CC=echo OPTIMIZE= CCFLAGS= > EXE=DBD_ORA_EXE OBJS=DBD_ORA_OBJ.o > > echo echo -L/usr2/opt2/app/oracle/p

Re: DBD:Oracle "perl Makefile.PL" problem

2004-02-25 Thread Tim Bunce
On Wed, Feb 25, 2004 at 12:49:34PM -0500, Howell, Andrew wrote: > > make -f /usr2/opt2/app/oracle/product/8.0.5/rdbms/demo/demo_rdbms.mk build > ECHODO=echo ECHO=echo GENCLNTSH='echo genclntsh' CC=echo OPTIMIZE= CCFLAGS= > EXE=DBD_ORA_EXE OBJS=DBD_ORA_OBJ.o > > echo echo -L/usr2/opt2/app/oracle/p

DBD:Oracle "perl Makefile.PL" problem

2004-02-25 Thread Howell, Andrew
2.6, Sparc (Patch level 35) gcc = 2.95.3 (binary installed from sunfreeware.com) perl = 5.8.3 (binary installed from sunfreeware.com) DBI = 1.40 DBD:Oracle = 1.15 # perl Makefile.PL -v > command.log 2>&1 # cat command.log Using DBI 1.40

Re: Can't perl Makefile.PL wit Informix!!!

2001-10-09 Thread Jonathan Leffler
"Ing. Roberto Andrade Fonseca" wrote: > I have running an Informix IDS FOR LINUX 7.30.UC5. > When I try to make the Makefile, I get an error!: > > [informix@everest DBD-Informix-1.00.PC1]$ perl Makefile.PL > > Configuring Informix Database Driver for Perl Versio

Can't perl Makefile.PL wit Informix!!!

2001-10-09 Thread Ing. Roberto Andrade Fonseca
Hi: I have running an Informix IDS FOR LINUX 7.30.UC5. When I try to make the Makefile, I get an error!: [informix@everest DBD-Informix-1.00.PC1]$ perl Makefile.PL Configuring Informix Database Driver for Perl Version 1.00.PC1 (2000-03-03) (aka DBD::Informix) You are using DBI

DBI-- "perl Makefile.PL PREFIX=~/perl" works BUT "make" fails

2001-08-31 Thread Rice, Wayne R (Sybase)
I'm making some progress... Now this is my situation when trying to install DBI: 1. The command "perl Makefile.PL PREFIX=~/perl" works. 2. "make" fails with the following: ricew@spnode01> make cc -c -D_ALL_SOURCE -D_ANSI_C_SOURCE -D_POSIZ_SOURCE -qmaxmem

Error with perl Makefile.PL

2001-02-08 Thread Daniel Berger
Hi all, Running Solaris 8 x86, with Oracle 8.1.6, perl 5.6, DBI 1.14. Tried to install DBD::Oracle and got this during the make: Using DBD::Oracle 1.06. Using DBI 1.14 installed in /usr/local/lib/perl5/site_perl/5.6.0/i86pc-solaris/auto/DBI Writing Makefile for DBD::Oracle Constant subroutine _