Re: perl-oci installation problem

[email protected] (Tim Bunce) Mon, 6 Aug 2001 00:23:51 +0100
Newsgroups perl.dbi.oracle-oci
Message-ID <[email protected]>
On Tue, Jul 31, 2001 at 06:34:59PM +0200, itamar elem wrote:
> 
> This is perl, v5.6.1 built for sun4-solaris-thread-multi
> Binary build 626 provided by ActiveState Tool Corp.

> extra.xsh: In function `boot_Oracle__OCI':
> extra.xsh:5: warning: passing arg 1 of `Perl_require_pv' from incompatible pointer type
> extra.xsh:5: too few arguments to function `Perl_require_pv'

Ah, that'll be because your perl is built with MULTIPLICITY/USE_THREADS
with PERL_IMPLICIT_CONTEXT.

Try exiting extra.xsh and changing:

	Perl_require_pv("DBD::Oracle");
to
	Perl_require_pv(aTHX_ "DBD::Oracle");

Please let me know if that fixes it or not. Thanks.

Tim.