Purpose:
Bug Fix
Description:
Trailing ,'s after a list of initializers to an array were causing
some compilers to barf.
Solution:
Put the commas before the elements in the list so we don't have an
empty trailing comma.
Platforms tested:
Linux (pp)
Purpose:
Bug fix
Description:
SP3 xlc compiler does not allow trailing comma in enum
construction.
Solution:
Replaced
enum {
var1 =0,
var2,
etc,
}
with
enum {
var1 = 0
,var2
,etc
}
as it is done in the 1.5 branch
Platforms tested:
NERSC SP3 and modi4.
Purpose:
Back port of Feature Add
Description:
Added the feature to specify which driver you want for the H5dumper
using the command-line flag "-f D or --filedriver=D".
Platforms tested:
Linux
Purpose:
[is this a bug fix? feature? ...]
Description:
[describe the bug, or describe the new feature, etc]
Solution:
[details about the changes, algorithm, etc...]
[Please as detail as you can since your own explanation is
better than others guessing it from the code.]
Platforms tested:
[machines you have tested the changed version. This is absolute
important. Test it out on at least two or three different platforms
such as Big-endian-32bit (SUN/IRIX), little-endian-32(LINUX) and
64-bit (IRIX64/UNICOS/DEC-ALPHA) would be good.]