swarm-support
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Any one using Compaq(DEC) Tru64 UNIX?


From: W . Northcott
Subject: Re: Any one using Compaq(DEC) Tru64 UNIX?
Date: Wed, 24 Jan 2001 18:17:45 +1000



Bill Northcott wrote stuff like this:--

>2.  Configure runs.  Make fails thus:

lines removed
>HDF5Object.m: In function `-[HDF5(c) _createEnd]':
>HDF5Object.m:1185: warning: passing arg 5 of `H5Tregister' from
incompatible pointer type
>HDF5Object.m:1191: warning: passing arg 5 of `H5Tregister' from
incompatible pointer type
>HDF5Object.m: In function `-[HDF5(c) _drop]':
>HDF5Object.m:2046: warning: passing arg 5 of `H5Tunregister' from
incompatible pointer type
>make[3]: *** [HDF5Object.lo] Error 1

We (Patrick) fixed this with the patch below.

The following Make error remains:
MODULES="defobj collections activity objectbase random simtools gui
simtoolsgui space analysis"
TOP_BUILDDIR='/home/bank/s9573347/src/swarm-2001-01-23a'
BUILDDIR='/home/bank/s9573347/src/swarm-2001-01-23a/src/defobj'
SWARMSRCDIR='../..' /usr/local/bin/emacs -batch -l
'/home/bank/s9573347/src/swarm-2001-01-23a/src/defobj/modulemap.elc' -f
generate-module-map
gperf -k \* -r -t modulemap > modulemap.c
/bin/sh: gperf: not found


Time to go today.

Bill Northcott

****************patch**********************
diff -c -r ../swarm-2001-01-23/src/defobj/HDF5Object.m
../swarm-2001-01-23a/src/defobj/HDF5Object.m
*** ../swarm-2001-01-23/src/defobj/HDF5Object.m Wed Jan 24 10:25:36 2001
--- ../swarm-2001-01-23a/src/defobj/HDF5Object.m        Wed Jan 24
18:08:02 2001
***************
*** 1182,1194 ****
                         REF2STRING_CONV,
                         H5T_STD_REF_OBJ,
                         H5T_C_S1,
!                        ref_string) < 0)
          raiseEvent (SaveError, "unable to register ref->string
converter");
        if (H5Tregister (H5T_PERS_SOFT,
                         STRING2REF_CONV,
                         H5T_C_S1,
                         H5T_STD_REF_OBJ,
!                        string_ref) < 0)
          raiseEvent (LoadError, "unable to register string->ref
converter");
      }
    hdf5InstanceCount++;
--- 1182,1194 ----
                         REF2STRING_CONV,
                         H5T_STD_REF_OBJ,
                         H5T_C_S1,
!                        (H5T_conv_t) &ref_string) < 0)
          raiseEvent (SaveError, "unable to register ref->string
converter");
        if (H5Tregister (H5T_PERS_SOFT,
                         STRING2REF_CONV,
                         H5T_C_S1,
                         H5T_STD_REF_OBJ,
!                        (H5T_conv_t) &string_ref) < 0)
          raiseEvent (LoadError, "unable to register string->ref
converter");
      }
    hdf5InstanceCount++;
***************
*** 2043,2052 ****
    if (hdf5InstanceCount == 0)
      {
        if (H5Tunregister (H5T_PERS_SOFT, REF2STRING_CONV, -1, -1,
!                          ref_string) < 0)
          raiseEvent (SaveError, "unable to unregister ref->string
converter");
        if (H5Tunregister (H5T_PERS_SOFT, STRING2REF_CONV, -1, -1,
!                          string_ref) < 0)
          raiseEvent (LoadError, "unable to unregister string->ref
converter");
      }
    [super drop];
--- 2043,2052 ----
    if (hdf5InstanceCount == 0)
      {
        if (H5Tunregister (H5T_PERS_SOFT, REF2STRING_CONV, -1, -1,
!                          (H5T_conv_t) &ref_string) < 0)
          raiseEvent (SaveError, "unable to unregister ref->string
converter");
        if (H5Tunregister (H5T_PERS_SOFT, STRING2REF_CONV, -1, -1,
!                          (H5T_conv_t) &string_ref) < 0)
          raiseEvent (LoadError, "unable to unregister string->ref
converter");
      }
    [super drop];



                  ==================================
   Swarm-Support is for discussion of the technical details of the day
   to day usage of Swarm.  For list administration needs (esp.
   [un]subscribing), please send a message to <address@hidden>
   with "help" in the body of the message.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]