Hi,
I guess the ./scripts/perl/Makefile.PL has a small problem.
In the lines 6 and 7:
check_lib_or_exit( lib => 'openbabel' , libpath => @ENV{"LD_LIBRARY_PATH"}
);

@ENV{...} looks quite weird to me.  Also it doesn't seem to correctly parse
the environmental variable, "$LD_LIBRARY_PATH".

With the original code, I consistently get the message "Can't build and link
to 'openbabel'".

I changed the lines into
check_lib_or_exit( lib => 'openbabel' , libpath => [ split ':',
$ENV{"LD_LIBRARY_PATH"} ] );

The, it worked fine.

-- 
Best,
InSuk Joung
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
OpenBabel-scripting mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbabel-scripting

Reply via email to