summaryrefslogtreecommitdiffstats
path: root/src/H5public.h
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r5019] Snapshot version 1.5 release 21HDF Admin2002-02-271-2/+2
|
* [svn-r4930] Snapshot version 1.5 release 20HDF Admin2002-02-091-2/+2
|
* [svn-r4864] Snapshot version 1.5 release 19HDF Admin2002-01-261-2/+2
|
* [svn-r4812] Snapshot version 1.5 release 18HDF Admin2002-01-111-2/+2
|
* [svn-r4796] Purpose:Quincey Koziol2002-01-081-0/+6
| | | | | | | | | | | | | Bug fix Description: The value of H5_SIZEOF_SSIZE_T is not being updated to reflect the correct size of the ssize_t typedef, if we have to define it ourselves. Solution: Undef H5_SIZEOF_SSIZE_T at beginning of block where we define the typedef for ssize_t and then re-define it to the correct size when we've chosen a size. Platforms tested: FreeBSD 4.5 (sleipnir)
* [svn-r4780] Snapshot version 1.5 release 17HDF Admin2002-01-051-2/+2
|
* [svn-r4679] Snapshot version 1.5 release 16Albert Cheng2001-12-061-2/+2
|
* [svn-r4635] Purpose:Quincey Koziol2001-11-211-2/+5
| | | | | | | | | | | Code cleanup (sorta) Description: H5_SIZEOF_HSIZE_T was missing from among the definitions we provide for the variables we declare. Solution: Added it. Platforms tested: FreeBSD 4.4 (hawkwind)
* [svn-r4598] Snapshot version 1.5 release 15HDF Admin2001-11-101-2/+2
|
* [svn-r4578] Snapshot version 1.5 release 14HDF Admin2001-10-271-2/+2
|
* [svn-r4540] Snapshot version 1.5 release 13HDF Admin2001-10-131-2/+2
|
* [svn-r4529] Snapshot version 1.5 release 12HDF Admin2001-10-061-2/+2
|
* [svn-r4501] Snapshot version 1.5 release 11HDF Admin2001-09-301-2/+2
|
* [svn-r4311] Snapshot version 1.5 release 10HDF Admin2001-08-041-2/+2
|
* [svn-r4270] Snapshot version 1.5 release 9HDF Admin2001-07-281-2/+2
|
* [svn-r4253] Snapshot version 1.5 release 8Albert Cheng2001-07-221-2/+2
|
* [svn-r4184] Purpose:Quincey Koziol2001-07-111-2/+2
| | | | Roll a snapshot for the FLASH folks at Argonne to test with.
* [svn-r4017] Purpose:Quincey Koziol2001-06-191-0/+6
| | | | | | | | | | | | | Code cleanup Description: Several system header files needed to be included on Linux machines to get the prototypes for some of the system calls we are using. Solution: Added a new feature test macro for including the <features.h> header on Linux machines, to set up compile macros for system header files. Platforms tested: Linux (eirene), FreeBSD 4.3 (hawkwind)
* [svn-r3939] Snapshot version 1.5 release 6Albert Cheng2001-05-251-2/+2
| | | | (Somehow snapshot did not commit these files in the last release.)
* [svn-r3925] Snapshot version 1.5 release 5HDF Admin2001-05-131-2/+2
|
* [svn-r3911] Purpose:Albert Cheng2001-05-111-1/+1
| | | | | | | | | | Cosmetic adjustment Description: Changed Version information from just "HDF5 version ..." to "HDF5 library version" since this is really about a library implementation. Platforms tested: eirene (used "h5vers -s ..." to see the effect.)
* [svn-r3897] ./hdf5/src/H5public.hRobb Matzke2001-05-091-0/+1
| | | | | | | Implemented the string version number stuff for Albert. 2001-05-09 16:24:18 Robb Matzke <matzke@llnl.gov> *: Added definition for H5_VERS_INFO, which is a string representation of the hdf5 version number.
* [svn-r3889] Snapshot version 1.5 release 4HDF Admin2001-05-061-1/+1
|
* [svn-r3791] Snapshot version 1.5 release 3HDF Admin2001-04-081-1/+1
|
* [svn-r3781] Purpose:Bill Wendling2001-04-051-2/+2
| | | | | | | | | | | | | | | | | | Update Description: Changed #include <hdf_file.h> construct to #include "hdf_file.h" so that the GNU compiler can more easily pick up the dependencies which it places in the .depend and Dependencies files. Also regenerated the Dependencies to go along with this. Platforms tested: Linux
* [svn-r3776] Snapshot version 1.5 release 2HDF Admin2001-04-051-1/+1
|
* [svn-r3742] Purpose:Quincey Koziol2001-04-011-0/+15
| | | | | | | | | | | Code cleanup Description: ssize_t is not defined on certain (non-UNIX) platforms. Solution: Added steps to configure to generate SIZEOF_SSIZE_T macro and then used the new macro to define ssize_t for platforms which don't have it. Platforms tested: FreeBSD 4.3 (hawkwind)
* [svn-r3741] Purpose:Albert Cheng2001-03-311-0/+8
| | | | | | | | | | | | | | | | | | | | Improvment Description: H5config.h and H5pubconf.h are generated by configure. It does not have the #ifndef _H5config_H ... #endif guard to prevent duplicated definitions if it is included more than once. It is messy to try make configure to put in those guards. Solution: HDF5 has set an internal rule that H5public.h includes H5pubconf.h and H5private.h includes H5config.h. Source files should NOT include H5config.h or H5pubconf.h directly but include it via H5public.h or H5private.h respectively. The #ifndef ... #endif in the H5public.h and H5private.h would prevent repeated definitions from repeated include. Adjusted H5FDstream.c and H5FDstream.h to follow this rule. Platforms tested: modi4, eirene.
* [svn-r3677] Purpose:Albert Cheng2001-03-201-4/+0
| | | | | | | | | | | | | Bug fix (sort of) Description: The RCSID string in H5public.h was causing the C++ code problem as it was included multiple times and C++ did not like multiple definitions of the same static variable. Solution: Since we don't really make use of the RCSID strings as we have not installed it in all source files, we decided to remove it. Platforms tested: eirene (linux), modi4 (IRIX64-64) both serial and parallel modes.
* [svn-r3603] Snapshot version 1.5 release 1HDF Admin2001-03-101-1/+1
|
* [svn-r3530] Snapshot version 1.5 release 0HDF Admin2001-03-011-1/+1
|
* [svn-r3398] Purpose:Quincey Koziol2001-02-101-2/+2
| | | | Update the version number after the tree split.
* [svn-r3371] Snapshot version 1.4 release 0 (beta3-pre4)Elena Pourmal2001-02-061-1/+1
|
* [svn-r3325] Snapshot version 1.4 release 0 (beta3-pre3)Albert Cheng2001-01-251-1/+1
|
* [svn-r3315] Snapshot version 1.4 release 0 (beta3-pre2)Albert Cheng2001-01-191-1/+1
|
* [svn-r3291] Snapshot version 1.4 release 0 (beta3-pre1)Albert Cheng2001-01-131-1/+1
|
* [svn-r3290] Changed H5_VERS_SUBRELEASE to identify this as beta3-pre-release1.Albert Cheng2001-01-131-1/+1
|
* [svn-r3258] Snapshot version 1.4 release 0 (beta3-snap0)HDF Admin2001-01-101-1/+1
|
* [svn-r3208] Changed the SUBRELEASE information from just 'beta3' to ↵Albert Cheng2000-12-281-1/+1
| | | | | | | | | 'beta3-snap0' to indicate it is before beta3 release may be attempted. Platform Tested: eirene--compiled without errors.
* [svn-r3189] Purpose:Quincey Koziol2000-12-221-1/+1
| | | | Changed version number to beta3, now that beta2 is out.
* [svn-r3165] Increase subrelease string to beta2 to avoid confusion.Albert Cheng2000-12-201-1/+1
|
* [svn-r3161] Purpose:Albert Cheng2000-12-191-3/+3
| | | | | | | | | | | | | | | | | | | Prepare for 1.4.0beta1 release README: src/H5public.h: Updated with 1.4.0beta1 version information. configure.in: Changed default setting to --enable-production --disable-debug. configure: Derived from configure.in via autoconf. Platforms tested: Eirene (linux) running just the configure command and compared difference with previous configure output to verify expected difference.
* [svn-r3147] Snapshot version 1.3 release 36HDF Admin2000-12-161-1/+1
|
* [svn-r3106] Snapshot version 1.3 release 35HDF Admin2000-12-091-1/+1
|
* [svn-r2998] Snapshot version 1.3 release 34HDF Admin2000-11-251-1/+1
|
* [svn-r2995] Snapshot version 1.3 release 33HDF Admin2000-11-221-1/+1
|
* [svn-r2879] Snapshot version 1.3 release 33Albert Cheng2000-11-131-1/+1
|
* [svn-r2638] Snapshot version 1.3 release 31HDF Admin2000-10-071-1/+1
|
* [svn-r2588] Snapshot version 1.3 release 30HDF Admin2000-09-231-1/+1
|
* [svn-r2519] Snapshot version 1.3 release 29Albert Cheng2000-09-061-1/+1
|