summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r26135] Updated autogen.sh to always run API-oriented scripts. RemovedDana Robinson2015-02-065-2230/+0
| | | | | | | | | | the -s option from autogen.sh. Removed several generated H5E files from version control as well as H5version.h since these will always be regenerated. Part of: HDFFV-9120 Tested on: Local Ubuntu VM
* [svn-r26129] Removed some additional generated files that were triggering ↵Dana Robinson2015-02-051-662/+0
| | | | | | | | | | autotools re-builds, which would fail due to incorrect autotools versions. Part of: HDFFV-9120 Tested on: jam
* [svn-r26114] remove option to toggle large file support.Mohamad Chaarawi2015-02-021-1/+0
|
* [svn-r26097] Removed configure and Makefile.in files from version control.Dana Robinson2015-02-021-1946/+0
| | | | | | | | | Developers will now have to run bin/reconfigure (deprecated, will be removed soon) or autogen.sh after checking out code. Part of: HDFFV-9120 Tested on: jam with Fortran and C++
* [svn-r26096] Merged r26024-26095 from trunk.Dana Robinson2015-02-024-4/+10
|\ | | | | | | Tested on: jam with Fortran and C++
| * [svn-r26092] Snapshot version 1.9 release 212HDF Tester2015-02-012-3/+3
| |
| * [svn-r26040] HDFFV-9018: Install pdb files to bin folder with dlls.Allen Byrne2015-01-261-1/+1
| |
| * [svn-r26036] HDFFV-8736: Patch H5PL.c and test for cygwin plugin support.Allen Byrne2015-01-261-0/+6
| | | | | | | | Tested: local linux and cygwin
* | [svn-r26083] Changed the default for building the direct VFD to 'no'.Dana Robinson2015-01-301-1/+1
| | | | | | | | | | | | | | | | | | Updated the direct VFD help string to make it more clear where it is suported. Part of HDFFV-7566 and HDFFV-7567 Tested on: jam (configure only)
* | [svn-r26081] Moved the check for pthread_attr_setscope() into the ↵Dana Robinson2015-01-291-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | thread-safe checks section. Documented its necessity and added a cross-compiling option and helpful comment. Also removed a check for BSDgettimeofday from configure.ac, which was for Irix 5.3 support. Part of HDFFV-9087 Tested on: jam with threadsafe
* | [svn-r26079] Removed obsolete HAVE___TM_GMTOFF defines. This is an artifact ↵Dana Robinson2015-01-292-9/+3
| | | | | | | | | | | | | | | | | | | | of the Linux fork of glibc. It's been deprecated since at least 1997. Part of HDFFV-9085 Tested on: jam
* | [svn-r26076] Removed gettimeofday() time zone struct functionality.Dana Robinson2015-01-292-34/+0
| | | | | | | | | | | | Part of HDFFV-9085 Tested on: jam
* | [svn-r26075] Removed (HD)BSDtimeofday and H5_HAVE_BSDGETTIMEOFDAY. This is ↵Dana Robinson2015-01-292-18/+4
| | | | | | | | | | | | | | | | | | | | an obsolete system call from Irix 5.3. Part of HDFFV-9085 Tested on: jam
* | [svn-r26072] Updated libhdf5.settings.in so that it no longer lists internal ↵Dana Robinson2015-01-291-1/+0
| | | | | | | | | | | | | | | | filters. Part of HDFFV-9086 Tested on: jam (configure only)
* | [svn-r26071] Moved setting H5_DEFAULT_VFD from configure to src/H5private.h.Dana Robinson2015-01-292-3/+4
| | | | | | | | | | | | Fixes HDFFV-9081 Tested on: jam
* | [svn-r26069] Removed the option to selectively disable internal filters like ↵Dana Robinson2015-01-298-83/+35
| | | | | | | | | | | | | | | | | | | | n-bit at compile time. Fixes HDFFV-9086 Tested on: jam, both serial and parallel w/ fortran & C++
* | [svn-r26055] Updates for:Mohamad Chaarawi2015-01-271-9/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | Discuss and Remove Infering parallel compilers (C and Fortran) from configure.ac https://jira.hdfgroup.uiuc.edu/browse/HDFFV-9068 Remove restriction to build shared with parallel https://jira.hdfgroup.uiuc.edu/browse/HDFFV-9069 Cleanup parallel sections in configure.ac https://jira.hdfgroup.uiuc.edu/browse/HDFFV-9096 tested h5committest
* | [svn-r26051] Fix for HDFFV-9092Scot Breitenfeld2015-01-271-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Change AC_TRY_RUN TO AC_TRY_COMPILE Changed all the instances of AC_TRY_RUN for the Fortran and C++ tests to use AC_COMPILE_IFELSE and moved all the tests to new files in m4 directory: aclocal_cxx.m4 (for C++ tests) aclocal_fc.m4 (for Fortran tests) tested: jam
* | [svn-r26028] Removed code from configure.ac that #defined ↵Dana Robinson2015-01-261-3/+0
|/ | | | | | | | | | | | | | | (H5)_NO_SHARED_WRITING under CodeWarrior as a work-around to broken open() functionality (it's not clear which version). The only effect of this #define was to cause test_file_close() in test/tfile.c to be skipped. Fixes HDFFV-9080 Tested on: jam We don't have CodeWarrior, so I just ensured the deletion didn't adversely affect a typical build.
* [svn-r26012] make the print format for address overflow error windows friendly.Mohamad Chaarawi2015-01-231-4/+4
|
* [svn-r26005] fix error return value. minor change.Mohamad Chaarawi2015-01-221-2/+2
|
* [svn-r26002] move checks on reading/writing beyond file eoa outside of the ↵Mohamad Chaarawi2015-01-226-21/+14
| | | | | | file drivers and into a centralized place in H5FD_read/write. tested h5committest.
* [svn-r25994] revert adding the has_mpi_atomicity feature flag and use the ↵Mohamad Chaarawi2015-01-213-11/+4
| | | | | | has_mpi flag instead.
* [svn-r25984] change the message flag H5O_MSG_FLAG_FAIL_IF_UNKNOWN toMohamad Chaarawi2015-01-204-11/+12
| | | | | | | | H5O_MSG_FLAG_FAIL_IF_UNKNOWN_AND_OPEN_FOR_WRITE. Will add a new H5O_MSG_FLAG_FAIL_IF_UNKNOWN_ALWAYS with the new avoid_truncate patch coming later. tested h5committest
* [svn-r25983] HDFFV-1125: Eliminate IS_H5FD_MPI() macro use in the library ↵Mohamad Chaarawi2015-01-206-17/+13
| | | | | | | | and replace with driver feature flag(s). Add an MPI atomicity feature flag and remove the macro from the library. tested Parallel on Jam.
* [svn-r25981] Snapshot version 1.9 release 211HDF Tester2015-01-182-3/+3
|
* [svn-r25980] Reverting check-in 25978, C_LONG_DOUBLE seems to be 16 bytes ↵Scot Breitenfeld2015-01-151-3/+0
| | | | sometimes and 10 bytes other times. Not sure why.
* [svn-r25978] Bug fix for HDFFV-8847Scot Breitenfeld2015-01-131-0/+3
| | | | Tested: h5committest
* [svn-r25975] Snapshot version 1.9 release 210HDF Tester2015-01-112-3/+3
|
* [svn-r25949] Snapshot version 1.9 release 209HDF Tester2015-01-042-3/+3
|
* [svn-r25929] Description:Quincey Koziol2014-12-2915-94/+137
| | | | | | | | | | Clean up EOF code within library and add 'mem_type' parameter to 'get_eof' VFD callback, to avoid various ambiguous situations, particularly with the multi VFD. (Supports changes for 'avoid_truncate' feature also) Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel h5committest forthcoming
* [svn-r25928] Description:Quincey Koziol2014-12-291-2/+2
| | | | | | | | Minor code cleanups found while reviewing 'avoid_truncate' changes. Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel (too minor to require h5committest)
* [svn-r25924] Snapshot version 1.9 release 208HDF Tester2014-12-282-3/+3
|
* [svn-r25922] mpi version check for new mpi 3 features should be >= 3 rather ↵Mohamad Chaarawi2014-12-232-7/+7
| | | | than == 3.
* [svn-r25921] - wrap MPI 3 usage with MPI_VERSION compile time check.Mohamad Chaarawi2014-12-232-6/+39
| | | | - build out unbuffered stdout/err for windows
* [svn-r25915] Snapshot version 1.9 release 207HDF Tester2014-12-212-3/+3
|
* [svn-r25886] Snapshot version 1.9 release 206HDF Tester2014-12-142-3/+3
|
* [svn-r25881] Description:Quincey Koziol2014-12-102-69/+21
| | | | | | | | Minor code/comment cleanups, found while reviewing 'avoid truncate' code. Tested on: MacOSX/64 10.10.1 (amazon) w/serial & parallel (Too minor to require h5committest)
* [svn-r25868] HDFFV-9041: Definitions needed to be a semi-colon separated list.Allen Byrne2014-12-091-4/+1
|
* [svn-r25864] Snapshot version 1.9 release 205HDF Tester2014-12-072-3/+3
|
* [svn-r25855] Snapshot version 1.9 release 204HDF Tester2014-11-302-3/+3
|
* [svn-r25834] Snapshot version 1.9 release 203HDF Tester2014-11-236-937/+937
|
* [svn-r25766] Description:Quincey Koziol2014-11-0332-3728/+2870
| | | | | | | | | | Revert r25273, 25283 & 25439 (the hyperslab improvement changes). They are buggy and it's taking me a long time to correct the problem. I'll check in a revised form of the changes when I've got them straightened out. Tested on: Mac OSX 10.10.0 (amazon) w/gcc 4.9.x, C++, FORTRAN Linux 2.6.x (jam) w/parallel
* [svn-r25762] Snapshot version 1.9 release 202HDF Tester2014-11-022-3/+3
|
* [svn-r25736] Snapshot version 1.9 release 201HDF Tester2014-10-262-3/+3
|
* [svn-r25721] The return type of H5A_create was changed from hid_t to H5A_t *Albert Cheng2014-10-201-1/+1
| | | | | | | but the test was not changed (still doing H5A_create(...) < 0). Fixed the error by changing to compare against NULL. Tested: ADA AIX machine where the old code was flagged as an error by the AIX compiler.
* [svn-r25720] Snapshot version 1.9 release 200HDF Tester2014-10-192-3/+3
|
* [svn-r25693] Snapshot version 1.9 release 199HDF Tester2014-10-122-3/+5
|
* [svn-r25668] Snapshot version 1.9 release 198HDF Tester2014-10-052-3/+3
|
* [svn-r25661] Update the default setting for the memb_addr array when use ↵Mohamad Chaarawi2014-10-031-1/+1
| | | | | | | | passes NULL to equally divide all the address space between all the members. Before there was one chunk of the address space not being used. tested h5committest, and multi vfd make check on jam.