Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-10-24 Thread Seth Gottlieb
I didn't do anything with PDO either. I just: * Put files from the full Oracle install some header files into the directory rdbms/public and network (neither of which are created by the version of the Instant Client that I installed). I found the instructions most helpful (http://www.gos

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-10-24 Thread Dario Lopez-Kästen
Jet Wilda wrote: Here http://www.zope.org/Members/jetfu/HowToInstallDcOracle2/howto_view is a how to I wrote up on how I got DCOracle2 to install with Oracle 10g hi, I just had reason to go back to use DCOracle2 on Linux and Oracle 10g Your Howto indicates that PDO is needed in order to c

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-29 Thread Seth Gottlieb
e2 to install with Oracle 10g Jet Message: 6 Date: Thu, 29 Sep 2005 10:57:23 -0400 From: Seth Gottlieb <[EMAIL PROTECTED]> Subject: Re: [Zope-DB] Installing DCOracle2 with Oracle 10g To: "Matthew T.Kromer" <[EMAIL PROTECTED]> Cc: zope-db@zope.org Message-ID: <[EMAIL

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-29 Thread Jet Wilda
Here http://www.zope.org/Members/jetfu/HowToInstallDcOracle2/howto_view is a how to I wrote up on how I got DCOracle2 to install with Oracle 10g Jet > > Message: 6 > Date: Thu, 29 Sep 2005 10:57:23 -0400 > From: Seth Gottlieb <[EMAIL PROTECTED]> > Subject: Re: [Zope-DB]

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-29 Thread Seth Gottlieb
I think that did the trick. It seemed to compile. This is what I did for those who also run into the same trouble: changed all instances (3) of "dword *" to "dvoid *" in src/dco2.c changed "DEFS= @DEFS@" to "DEFS= " in src/Makefile skipped all the Oracle detection logic and hard coded: ORADEF="-

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-29 Thread Matthew T . Kromer
Heh, I should have read the problem a bit closer: i686-pc-linux-gnu-gcc -pthread -shared ./dco2.o -L/usr/lib/oracle/10.1.0.4/client/lib/ -lclntsh -lcommon -lcore4 -lnlsrtl3 -Wl,-rpath,/usr/lib/oracle/10.1.0.4/client/lib -o ./dco2.so /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.5-20050130/../../..

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-28 Thread Seth Gottlieb
Thanks for responding. I commented out line 92: #include and moved #include (which was around line 126) to the first of the includes. I still get the same error message. Anything else to try? Thanks, Seth Matthew T. Kromer wrote: Not sure, but I think DCOracle2 includes both Python.h and

Re: [Zope-DB] Installing DCOracle2 with Oracle 10g

2005-09-28 Thread Matthew T. Kromer
Not sure, but I think DCOracle2 includes both Python.h and stdio.h -- try removing stdio.h and making the python.h include the first include. On Sep 28, 2005, at 2:38 PM, Seth Gottlieb wrote: I have been trying to compile DCOracle2 and found the instructions from "evstumpf at ucdavis." Wh