summaryrefslogtreecommitdiffstats
path: root/c++
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r27795] Removed some autotools generated files that were not caught byDana Robinson2015-09-151-1534/+0
| | | | | | the last checkin. Tested on: bin/chkmanifest
* [svn-r27794] Reintegration merge of features/autotools_rework branch with trunkDana Robinson2015-09-154-4119/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTES: - Developers will have to run autogen.sh before building with the autotools. - autogen.sh takes the -p option to mimic the old bin/reconfigure behavior. - The generated error, overflow and version headers have been left in place. - The generated H5LT parser code has also been left in place. - There are no changes for CMake users at this time. Tested on: h5committest
| * [svn-r27745] Merge trunk revision 27744Allen Byrne2015-09-101-1/+1
| |
| * [svn-r27638] Merged r27500-27631 from trunk.Dana Robinson2015-09-014-77/+4
| |\
| * \ [svn-r27507] Merge of r27237-27500 from the trunk.Dana Robinson2015-08-146-33/+58
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested w/ h5committest NOTES: - The manifest may still be messed up. - Cmake fails since the dual binary work needs to be merged with this repo's CMake externals.
| * \ \ [svn-r27222] Merge of r27035-27221 from the trunk.Dana Robinson2015-06-173-8/+8
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Tested on 64-bit linux VM: Serial: C++ and Fortran 2003 Parallel: Fortran
| * \ \ \ [svn-r27038] Merge of r26393-27031 from the trunk.Dana Robinson2015-05-0745-291/+872
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Tested on 64-bit linux VM w/ C++ and Fortran 2003
| * | | | | [svn-r26435] Remove DEFAULT_LIBS from configure.ac and irix6.x config file whichJerome Soumagne2015-03-111-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | was using it. Remove references to IRIX/irix* platform.
| * | | | | [svn-r26422] Fixes autogen.sh errors caused by r26410 that produced:Dana Robinson2015-03-112-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CXX_SHARED_CONDITIONAL does not appear in AM_CONDITIONAL This was due to a removed AM_CONDITIONAL macro in configure.ac. The CXX_SHARED_CONDITIONAL code was removed from the Makefile.am files. Additionally, the C++ shared library build settings field in libhdf5.settings file was updated. Tested on: local linux VM w/ C++ --enable-shared --enable-static --enable-shared --disable-static --disable-shared --enable-static
| * | | | | [svn-r26274] Merge of r26096 to r26271 from trunk.Dana Robinson2015-02-224-4/+4
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested on: jam - serial: C++/Fortran parallel: Fortran
| * | | | | | [svn-r26097] Removed configure and Makefile.in files from version control.Dana Robinson2015-02-024-5602/+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-022-2/+2
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Tested on: jam with Fortran and C++
| * | | | | | | [svn-r26069] Removed the option to selectively disable internal filters like ↵Dana Robinson2015-01-294-20/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | n-bit at compile time. Fixes HDFFV-9086 Tested on: jam, both serial and parallel w/ fortran & C++
| * | | | | | | [svn-r26051] Fix for HDFFV-9092Scot Breitenfeld2015-01-274-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-r27768] Description:Quincey Koziol2015-09-143-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Complete revamp of package initialization/shutdown mechanism in the library. Each package now has a single init/term routine. This new way should avoid packages being re-initialized during library shutdown and is also be _much_ more proactive about giving feedback for resource leaks internal to the library. Introduces a new "module" header file for packages in the library (e.g src/H5Fmodule.h) which sets up some necessary package configuration macros for the FUNC_ENTER/LEAVE macros. (The VFL drivers have their own slightly modified version of this header, src/H5FDdrvr_module.h) Also cleaned up a bunch of resources leaks all across the library and tests, along with addressing many warnings, as I encountered them. Tested on: MacOSX/64 10.10.5 (amazon) w/serial & parallel Linux/64 3.10.x (kituo) w/serial & parallel Linux/64 2.6.x (ostrich) w/serial
* | | | | | | | [svn-r27767] Snapshot version 1.9 release 231HDF Tester2015-09-142-2/+2
| | | | | | | |
* | | | | | | | [svn-r27690] Snapshot version 1.9 release 230HDF Tester2015-09-072-2/+2
| |_|_|_|_|_|/ |/| | | | | |
* | | | | | | [svn-r27625] Added preprocessor commands for PGI compiler.Scot Breitenfeld2015-08-314-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | tested: h5committest
* | | | | | | [svn-r27622] Snapshot version 1.9 release 229HDF Tester2015-08-312-2/+2
| | | | | | |
* | | | | | | [svn-r27572] Removed VMS-specific code from the library.Dana Robinson2015-08-243-76/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The only remaining code consists of a few floating-point tests that rely on pre-generated and checked-in VMS files. These have been left alone, even though they will not be possible to recreate, since testing VMS float behavior is still important. Tested on: h5committest
* | | | | | | [svn-r27551] Snapshot version 1.9 release 228HDF Tester2015-08-242-2/+2
| | | | | | |
* | | | | | | [svn-r27517] Removed all perl scripts from configure.Scot Breitenfeld2015-08-174-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested: h5committest
* | | | | | | [svn-r27511] Snapshot version 1.9 release 227HDF Tester2015-08-172-2/+2
| |_|_|_|_|/ |/| | | | |
* | | | | | [svn-r27496] Description:Binh-Minh Ribler2015-08-112-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used HTML_EXTRA_FILES for image files. Platform tested: Re-run Doxygen on cpp_doc_config and verified the html files on a Windows 7 machine.
* | | | | | [svn-r27494] Purpose: Fix HDFFV-9288Binh-Minh Ribler2015-08-112-2/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Description: Added footer to include copyright and helpdesk info. Platform tested: Re-run Doxygen on cpp_doc_config and verified the html files on a Windows 7 machine.
* | | | | | [svn-r27493] Trying again to merge the F2003_v1.10 branch to the trunk.Scot Breitenfeld2015-08-114-18/+94
| | | | | | | | | | | | | | | | | | | | | | | | Tested: h5committest --PASSED--
* | | | | | [svn-r27489] reverted merge of branchScot Breitenfeld2015-08-114-94/+18
| | | | | |
* | | | | | [svn-r27470] svn merge -r27425:27460 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-08-055-18/+6
|\ \ \ \ \ \
| * | | | | | [svn-r27432] Snapshot version 1.9 release 226HDF Tester2015-07-272-2/+2
| | | | | | |
* | | | | | | [svn-r27469] Merge from trunk with dual-binary CMake code.Allen Byrne2015-08-058-31/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested: local linux with CMake
* | | | | | | [svn-r27426] svn merge -r27377:27425 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-222-2/+2
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | [svn-r27412] Snapshot version 1.9 release 225HDF Tester2015-07-202-2/+2
| | | | | | |
* | | | | | | [svn-r27378] svn merge -r27326:27377 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-143-4/+5
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | [svn-r27372] Snapshot version 1.9 release 224HDF Tester2015-07-132-2/+2
| | | | | | |
| * | | | | | [svn-r27364] Add Mac Framework supportAllen Byrne2015-07-091-2/+3
| | | | | | |
* | | | | | | [svn-r27357] svn merge -r27208:27356 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-092-2/+2
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | [svn-r27339] Snapshot version 1.9 release 223HDF Tester2015-07-062-2/+2
| | | | | | |
* | | | | | | [svn-r27327] svn merge -r27208:27326 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-022-2/+2
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | [svn-r27262] Snapshot version 1.9 release 222HDF Tester2015-06-222-2/+2
| | |_|_|_|/ | |/| | | |
* | | | | | [svn-r27221] Reworked Fortran autools REAL KIND detection.Scot Breitenfeld2015-06-164-0/+20
| | | | | |
* | | | | | [svn-r27187] svn merge -r27135:27186 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-06-102-2/+2
|\ \ \ \ \ \ | |/ / / / /
| * | | | | [svn-r27159] Snapshot version 1.9 release 221HDF Tester2015-06-082-2/+2
| | | | | |
* | | | | | [svn-r27186] added fix for jam with promoted reals and integersScot Breitenfeld2015-06-104-0/+4
| | | | | |
* | | | | | [svn-r27167] more DT fixesScot Breitenfeld2015-06-094-0/+4
| | | | | |
* | | | | | [svn-r27164] various bug fixes for DTScot Breitenfeld2015-06-084-0/+4
| | | | | |
* | | | | | [svn-r27154] fixed issue with mis-matching long double between Fortran and CScot Breitenfeld2015-06-054-0/+4
| | | | | |
* | | | | | [svn-r27151] fixed __float128 errorsScot Breitenfeld2015-06-044-0/+4
| | | | | |
* | | | | | [svn-r27140] fixed interger*16 supportScot Breitenfeld2015-06-034-0/+4
| | | | | |
* | | | | | [svn-r27137] svn merge -r27115:27135 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-06-024-9/+9
|\ \ \ \ \ \ | |/ / / / /
| * | | | | [svn-r27133] - Add a new attribute function characterstic for format:Mohamad Chaarawi2015-06-012-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * H5_ATTR_FORMAT(X,Y,Z) __attribute__((format(X, Y, Z))) - Rename UNUSED attribute characterstic to H5_ATTR_UNUSED. - Rename NORETURN attribute characterstic to H5_ATTR_NORETURN tested with h5committest.