I�ve traced this problem to the apparant failure of the lstat command to
set _
in Inline.pm

replacing line  1174 of _rmtree

    if ( -d _ ){

with

  if ( -d "$root" ){

caused things to start working.


I have

Inline 0.42
perl 5.6.0
redhat 7.1

Jim


Jim Edwards wrote:

> Hi,
>
> I have a pair of applications, one is in C, the other is in Perl.  They
> both have working Gtk+ gui code and I want to combine them into a single
> program so that one is called from a callback of the other.  I�ve played
> around with a few ways to do this including using Inline.
>
> To get started I had to hard code a bunch of the Gtk and glib stuff
> along with the location of my own library , but I finally got all of the
> stuff to compile only to get to this:
>
> perl IVT/testOpenGridDialog.pl
> Using IVT/blib
> Using /home/jedwards/PDL-IO-Grads/blib
> Can't unlink file '/home/jedwards/vis5d+/_Inline/build/Vis5D_648c':
>
> at IVT/testOpenGridDialog.pl line 42
> BEGIN failed--compilation aborted at IVT/testOpenGridDialog.pl line 42.
>
> I�ve no clue why it wouldn�t be able to unlink that dir and why that
> would stop it from continuing.  Any Ideas?
>
> Thanks,
> Jim

Reply via email to