mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-18 15:15:56 +08:00
[svn-r15992] Merge with 1.8 rev 15973
make -b accept both MEMORY and NATIVE Tested: linux
This commit is contained in:
parent
8f00f520ff
commit
4c08397e79
@ -3220,8 +3220,11 @@ set_binary_form(const char *form)
|
||||
{
|
||||
int bform=-1;
|
||||
|
||||
if (strcmp(form,"NATIVE")==0) /* native form */
|
||||
if (strcmp(form,"NATIVE")==0 ||
|
||||
strcmp(form,"MEMORY")==0)
|
||||
{/* native form */
|
||||
bform = 0;
|
||||
}
|
||||
else if (strcmp(form,"FILE")==0) /* file type form */
|
||||
bform = 1;
|
||||
else if (strcmp(form,"LE")==0) /* convert to little endian */
|
||||
|
Loading…
Reference in New Issue
Block a user