summaryrefslogtreecommitdiffstats
path: root/src/H5Edefin.h
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2006-11-10 19:56:04 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2006-11-10 19:56:04 (GMT)
commit911e79b273bddac85c698b77718516b8a8ee9ab2 (patch)
tree50541570407c04ef30d3c706de5ea75fd0993608 /src/H5Edefin.h
parent227a79d5513e305d047020d96b1ac8b4f8bf44b5 (diff)
downloadhdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.zip
hdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.tar.gz
hdf5-911e79b273bddac85c698b77718516b8a8ee9ab2.tar.bz2
[svn-r12887] A fix for linking issues.
Should disable linking against shared libraries in Fortran for compilers that don't support shared libraries. Should also fix problem when the wrong Fortran file extension was specified. If these changes don't solve the Daily Test issues, I'll look at backing out the autotool version change until I have time to fix them. Tested on heping, kagiso, juniper.
Diffstat (limited to 'src/H5Edefin.h')
-rw-r--r--src/H5Edefin.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5Edefin.h b/src/H5Edefin.h
index 72441c7..4a4a98c 100644
--- a/src/H5Edefin.h
+++ b/src/H5Edefin.h
@@ -181,13 +181,6 @@ hid_t H5E_CANTNEXT_g = FAIL; /* Can't move to next iterator location
hid_t H5E_BADSELECT_g = FAIL; /* Invalid selection */
hid_t H5E_CANTCOMPARE_g = FAIL; /* Can't compare objects */
-/* Argument errors */
-hid_t H5E_UNINITIALIZED_g = FAIL; /* Information is uinitialized */
-hid_t H5E_UNSUPPORTED_g = FAIL; /* Feature is unsupported */
-hid_t H5E_BADTYPE_g = FAIL; /* Inappropriate type */
-hid_t H5E_BADRANGE_g = FAIL; /* Out of range */
-hid_t H5E_BADVALUE_g = FAIL; /* Bad value */
-
/* B-tree related errors */
hid_t H5E_NOTFOUND_g = FAIL; /* Object not found */
hid_t H5E_EXISTS_g = FAIL; /* Object already exists */
@@ -201,6 +194,13 @@ hid_t H5E_CANTLIST_g = FAIL; /* Unable to list node */
hid_t H5E_CANTMODIFY_g = FAIL; /* Unable to modify record */
hid_t H5E_CANTREMOVE_g = FAIL; /* Unable to remove object */
+/* Argument errors */
+hid_t H5E_UNINITIALIZED_g = FAIL; /* Information is uinitialized */
+hid_t H5E_UNSUPPORTED_g = FAIL; /* Feature is unsupported */
+hid_t H5E_BADTYPE_g = FAIL; /* Inappropriate type */
+hid_t H5E_BADRANGE_g = FAIL; /* Out of range */
+hid_t H5E_BADVALUE_g = FAIL; /* Bad value */
+
/* Datatype conversion errors */
hid_t H5E_CANTCONVERT_g = FAIL; /* Can't convert datatypes */
hid_t H5E_BADSIZE_g = FAIL; /* Bad size for object */