Re: Fwd: AUTOLOAD error in a module

2004-01-18 Thread Luca Ognibene
On Sun, Jan 18, 2004 at 10:08:53AM -0800, drieux wrote: > >On Jan 18, 2004, at 9:32 AM, Luca Ognibene wrote: > >> > >>package gai; > >>require Exporter; > >>require DynaLoader; > >>@ISA = qw(Exporter DynaLoader); > >>package gai; > >>bootstrap gai; > >>package gai; > >>@EXPORT = qw( ); > >>1; > >

Fwd: AUTOLOAD error in a module

2004-01-18 Thread drieux
Sometimes life is Ironic. I had meant to send this to the list, sent it, and then remembered that I wanted to add something. As a general rule of good form, one should leave all upper case package names to "sections" and all lower case package names to 'pragma' - as such one may want to think about

Re: AUTOLOAD error in a module

2004-01-18 Thread Luca Ognibene
On Sat, Jan 17, 2004 at 06:58:56PM -0800, drieux wrote: > > >but when he try to launch a simple example : > > ./hello-world.pl > > Use of inherited AUTOLOAD for non-method gai::gai_init() is deprecated > > at ./hello-world.pl line 9. Can't locate auto/gai/gai_init.al in @INC > > (@INC contains: /u

Re: AUTOLOAD error in a module

2004-01-17 Thread drieux
On Jan 16, 2004, at 11:08 AM, Luca Ognibene wrote: Don't know if this is the correct list.. tell me if i'm wrong! I'm doing perl bindings for a c library (gai). I've used swig with some typemaps.. It works in mine pc, but when i've sended my works to gai's author.. : perl Makefile.PL works fine, m

Re: AUTOLOAD error in a module

2004-01-17 Thread Wiggins d'Anconia
Luca Ognibene wrote: Don't know if this is the correct list.. tell me if i'm wrong! I'm doing perl bindings for a c library (gai). I've used swig with some typemaps.. It works in mine pc, but when i've sended my works to gai's author.. : perl Makefile.PL works fine, make works fine, make install wo

AUTOLOAD error in a module

2004-01-16 Thread Luca Ognibene
Don't know if this is the correct list.. tell me if i'm wrong! I'm doing perl bindings for a c library (gai). I've used swig with some typemaps.. It works in mine pc, but when i've sended my works to gai's author.. : perl Makefile.PL works fine, make works fine, make install works fine! but when h