Re: Undefined subroutine Scalar::Util::refaddr

2006-11-09 Thread Peter Gordon
On Thu, 2006-11-09 at 01:14 +0100, Roderich Schupp wrote: On 11/7/06, Peter Gordon [EMAIL PROTECTED] wrote: At this point either I have made a mistake and/or am thoroughly confused. No, it's what I suspected. Your build of PAR has been done against some older version of perl (or at least

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-09 Thread Steffen Mueller
Hi Roderich, hi Peter, Roderich Schupp schrieb: [...] As for the flashing-windows-when-using-backticks thing: I once wrote an application using Tk, it drove a third party app using their command line interface (including reading and interpreting the output of such). It used IPC::Run3 for that.

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-08 Thread Roderich Schupp
On 11/7/06, Peter Gordon [EMAIL PROTECTED] wrote: At this point either I have made a mistake and/or am thoroughly confused. No, it's what I suspected. Your build of PAR has been done against some older version of perl (or at least of Scalar::Util) - that's the stuff extracted with my script.

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-07 Thread Peter Gordon
On Mon, 2006-11-06 at 14:38 +0100, Steffen Mueller wrote: Roderich Schupp schrieb: [...] You could try what happens for system() (don't remember). If system() doesn't flash a DOS box with --gui, you could replace the backticks by using IPC::Run3 (that allows you to catch stdout/stderr

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-06 Thread Roderich Schupp
On 11/6/06, Peter Gordon [EMAIL PROTECTED] wrote: has Scalar/Util.pm (and also Scalar/Util.so or Scalar/Util.dll) been packaged, run unzip -l your_executable to check # unzip -l app_diag.exe | grep Util 56: 2050 11-06-06 08:21 lib/List/Util.pm 61: 3572 11-06-06 08:21

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-06 Thread Steffen Mueller
Roderich Schupp schrieb: [...] You could try what happens for system() (don't remember). If system() doesn't flash a DOS box with --gui, you could replace the backticks by using IPC::Run3 (that allows you to catch stdout/stderr into a string, but way more flexible as backticks), because it

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-05 Thread Roderich Schupp
On 11/5/06, Steffen Mueller [EMAIL PROTECTED] wrote: My money is on option three. Blech, mine too. The thought occurred to me that we might solve this problem by appending the required modules to a stripped-down copy of parl.exe just before I just did a little experiment (on Linux, but

Re: Undefined subroutine Scalar::Util::refaddr

2006-11-05 Thread Steffen Mueller
Roderich Schupp schrieb: On 11/5/06, Steffen Mueller [EMAIL PROTECTED] wrote: The thought occurred to me that we might solve this problem by appending the required modules to a stripped-down copy of parl.exe just before I just did a little experiment (on Linux, but should work on Windows,