----- Original Message ----- 
From: "P Kishor" <[email protected]>

>  Fixing that Makefile will really make
> things a lot easier.

Is that the fix where you want to change

$hash{'LDDLFLAGS'} = " -shared -L$plplot_lib_path -L/usr/local/lib ";
to
$hash{'LDDLFLAGS'} = " -bundle -undefined dynamic_lookup -L/usr/local/lib ";

Might that change break things for someone else ? If so, then we need to 
instead do:

$hash{'LDDLFLAGS'} = <some condition> ?
  " -bundle -undefined dynamic_lookup -L/usr/local/lib " :
  " -shared -L$plplot_lib_path -L/usr/local/lib ";

and we need to know what "<some condition>" is.
Perhaps the condition is that $^O eq 'MacOS'.
Would that do the job correctly ?
Or do there exist MacOS installations where we want 
" -shared -L$plplot_lib_path -L/usr/local/lib " instead of 
 " -bundle -undefined dynamic_lookup -L/usr/local/lib " ?

Cheers,
Rob


_______________________________________________
Perldl mailing list
[email protected]
http://mailman.jach.hawaii.edu/mailman/listinfo/perldl

Reply via email to