[scilab-Users] Building Scilab 5.3.0-beta 4 on Fedora 13

Sylvestre Ledru sylvestre.ledru at scilab.org
Thu Oct 14 14:17:23 CEST 2010


Please consider switching to the dev at lists.scilab.org mailing list
instead of the user ML.

Le jeudi 14 octobre 2010 à 05:12 -0700, Rob Farmer a écrit :
> On Wed, Oct 13, 2010 at 21:22, Dean S. Messing <deanm at sharplabs.com> wrote:
> > I've spent too much time on this now to give up. :-) I've also made some
> > progress since I first wrote, thanks to the help I've received and lots
> > and lots of Googling.  Anyway, back to getting ./configure to complete
> > with errors.
> 
> I didn't look in detail and may be wrong, but based on a quick skim of
> the configure script, it seems to get your error, the following Java
> program worked:
> 
> import ncsa.hdf.hdf5lib.HDF5Constants;
> 
> public class conftest {
>     public static void main(String[] argv) {
> 
>     }
> }
> 
> But this didn't:
> 
> import ncsa.hdf.hdf5lib.H5;
> 
> public class conftest {
>     public static void main(String[] argv) {
>         String minVersion="1.8.4";
>                             int[] vers = new int[3];
>                 try { H5.H5get_libversion(vers); }
>                 catch (Throwable ex) {System.exit(-1);}
>                 String ver = vers[0] + "."+ vers[1] +"."+vers[2];
> 
>                             System.out.println(ver);
>                                   if (minVersion.compareTo(ver) < 0) {
>                                    System.exit(-1);
>                                 }
> 
>     }
> }
> 
> So maybe try saving this and running it to see what is going on? 
You probably have a real error message which will tell you want is
wrong ;)
If it is "no such method on H5.H5get_libversion", it is probably an too
old version of jhdf. 
It is about a symbol or a library missing, it is probably that the jhdf
library cannot find the libjhdf.so (JNI lib).

Sylvestre





More information about the users mailing list