RE: Extending an embedded Perl interpreter without a .pm file

2005-02-21 Thread Southern, David
d functions are available without a .pm file. Thanks for the tips, you guys are great! David -Original Message- From: Nick Ing-Simmons [mailto:[EMAIL PROTECTED] Sent: February 20, 2005 9:30 AM To: Southern, David Cc: perl-xs@perl.org Subject: Re: Extending an embedded Perl interpreter wit

Re: Extending an embedded Perl interpreter without a .pm file

2005-02-20 Thread Nick Ing-Simmons
David Southern <[EMAIL PROTECTED]> writes: > >So, the question: Is there a way that I can make XSUBs availiable to my perl >interpreter without having to have the .pm file around at all? Of course. If you look at what your DynTrans.pm file does it probably does something like use XSLoader qw(loa

RE: Extending an embedded Perl interpreter without a .pm file

2005-02-14 Thread Southern, David
Perl interpreter without a .pm file On Mon, 14 Feb 2005, Southern, David wrote: > Hi all, I've been searching for an answer to this questions for a > while now. Perlmonks.org suggested this list, I wonder if anyone > might have some insight that the could share: > > I

Re: Extending an embedded Perl interpreter without a .pm file

2005-02-14 Thread Stanley Hopcroft
Dear Sir, I am writing to thank you for your letter and hope that you will tolerate this probably stupid reply .. On Mon, Feb 14, 2005 at 01:10:39PM -0700, Southern, David wrote: .. [snip] > > So, the problem: In order for this to work, I have to have DynTrans.pm > in the directory where I run

Re: Extending an embedded Perl interpreter without a .pm file

2005-02-14 Thread Steven N. Hirsch
On Mon, 14 Feb 2005, Southern, David wrote: > Hi all, I've been searching for an answer to this questions for a while > now. Perlmonks.org suggested this list, I wonder if anyone might have > some insight that the could share: > > I have a C application that needs to execute fragments of Perl sc

Extending an embedded Perl interpreter without a .pm file

2005-02-14 Thread Southern, David
Hi all, I've been searching for an answer to this questions for a while now. Perlmonks.org suggested this list, I wonder if anyone might have some insight that the could share: I have a C application that needs to execute fragments of Perl script provided by the user. I have successfully embedde