summaryrefslogtreecommitdiffstats
path: root/config/cmake/H5pubconf.h.in
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r24700] Updated packaging process to align with latest hdf cmake standards.Allen Byrne2014-02-111-2/+2
|
* [svn-r24385] Add missing H5_ prefixAllen Byrne2013-10-311-3/+3
| | | | Tested: local linux
* [svn-r24192] Correct test and usage of defines for cmake configureAllen Byrne2013-09-231-1/+1
|
* [svn-r24190] remove comment that caused linux build warnings and correct use ↵Allen Byrne2013-09-231-39/+39
| | | | | | of cmakedefine vs define in template. Tested: local linux
* [svn-r24167] HDFFV-8513, HDFFV-8522 Plugin testing in h5repack, h5dump.Allen Byrne2013-09-191-1/+1
| | | | | | | Add more usage info for UserMacros. Add new option information about the Plugin default path. Tested: local linux, jam
* [svn-r24104] HDFFV-8345: add User Defined filters to h5repack.Allen Byrne2013-09-061-0/+3
| | | | | | Reviewed in H5T-61 Tested: local linux - cmake and autotools
* [svn-r23384] Copy dynamic lib to a plugins folder for testing. This will ↵Allen Byrne2013-03-191-0/+6
| | | | | | avoid the segfault with looking for the library with other libraries. Tested: local linux
* [svn-r23111] Purpose:Dana Robinson2012-12-191-0/+3
| | | | | | | | | | | | | | | | | | | Fixes for HDF5 1.8.10 p1 HDFFV-7975 Changed the max single I/O operation size on Darwin/Mac OS X. HDFFV-8124 and HDFFV-8158 Fixed a core VFD bug when large blocks of data are read. HDFFV-8246 Added more fields to the VFD read/write error messages. Tested on: 64-bit Windows 7, Visual Studio 2010, CMake 64-bit Mac OS X Snow Leopard (Fred), Fortran, C++ 64-bit BE Linux (Ostrich), Fortran, C++ 32-bit LE Linux (jam), Fortran, C++ (also parallel w/ Fortran)
* [svn-r23044] Restore build configuration defines for cmakeAllen Byrne2012-11-211-0/+18
|
* [svn-r22602] Allen Byrne2012-07-251-18/+0
|
* [svn-r22471] Add check for MINGW - ws2_32 libraryAllen Byrne2012-06-181-0/+3
| | | | Tested: windows - mingw
* [svn-r22450] Update winsock define to match autotools configure checkAllen Byrne2012-06-111-1/+1
|
* [svn-r22175] MinGW compile issues fixed.Allen Byrne2012-03-281-0/+3
| | | | | | Reviewed Tested: windows (big test using stdio ony fails - this will be filed for further investigation)
* [svn-r21538] Removed obsolete Windows STDIO VFD configuration options from ↵Dana Robinson2011-10-131-7/+0
| | | | | | CMake config files. Tested on Windows
* [svn-r21523] Added CLOCK_GET_TIME define to cmake configureAllen Byrne2011-10-111-0/+3
| | | | Tested: local linux
* [svn-r21493] Add new mach/mach_time.h header check.Allen Byrne2011-10-071-0/+3
|
* [svn-r21366] JIRA HDFFV-2748 replace use of _WIN32 in source. Created new ↵Allen Byrne2011-09-061-0/+6
| | | | | | defines H5_HAVE_WIN32_API and H5_HAVE_VISUAL_STUDIO defines to use. These can be properly set during configurration. Tested: windows and local linux - reviewed internally
* [svn-r21171] Commit HDFFV-5929 winthreads define fixAllen Byrne2011-08-041-0/+3
| | | | | | Change reference of generated executables in src and fortran/src to use $<TARGETFILE:xxx> format. Tested: local linux
* [svn-r21101] HDFFV-7639Mike McGreevy2011-07-141-7/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: Remove H5_MPI_SPECIAL_COLLECTIVE_IO_WORKS and H5_MPI_COMPLEX_DERIVED_DATATYPE_WORKS #defines from source. Description: Two advanced parallel functionalities, special collective IO and complex derived datatypes, are not supported by older implementations of mpi, and thus our code limits the use of these features with #ifdefs and has checks in configure to set them (or not). Unfortunately, configure can't actually run a parallel check to see if these features are working (nor not) so it resorts to looking in the config files where they are explicity enabled or disabled based on versions of mpi, sytems being built on, or for no documented reason at all (i.e. just set to on or off as some 'default'). Overriding these settings is easy if need be, provided it is known that it needs to be done to get improved performance, and oftentimes it is not. Most new MPI implementations successfully handle the functionality requested when these #defines are set, and many of the "turn these features off" cases in the config files are for old (> 5 years) versions of MPI and retired systems (such as NCSA's tungsten). Therefore, the decision has been made to remove the support for these old versions of MPI and systems that cannot handle these behaviors. The #ifdefs and supporting setup in the config/ files and configure script has been removed, and the code executed when these options were not set removed from the source. In passing, this commit also cleans up some whitespace issues in both t_mpi.c and H5Dmpio.c. Furthermore, in t_mpi.c, the special collective IO test was not getting regularly run due to it being written to work only with four processes (we regularly test with six, previously with three), and thus it failed when actually run due to an out of bounds data buffer assignment. It has been modified to run at any number of processes greater than four, and the memory problem has been fixed so the test passes. Tested: jam, h5committest, ember
* [svn-r21026] Add configure check for endianess and adjust test depending on ↵Allen Byrne2011-06-231-0/+2
| | | | | | status of check Tested: heiwa
* [svn-r20713] Packed Bits Merge:Allen Byrne2011-05-031-3/+0
| | | | | | | | | removed option defines and #ifdef/#endif refactored all printf to HDfprintf in h5dump.c formatted and indention improvements synched with 1.8 branch Tested: local linux
* [svn-r20677] Merge packed bits option from 1.8 branch to trunk. CMake only. ↵Allen Byrne2011-04-291-0/+3
| | | | | | Autotools merge to come. Tested: local Linux
* [svn-r20476] Removed all references to memory.hDana Robinson2011-04-111-4/+1
|
* [svn-r20472] Add message that H5_HAVE_WIN_THREADS requires WINVER >= 0x600 ↵Allen Byrne2011-04-111-0/+3
| | | | (VISTA or WIN7)
* [svn-r19895] Remove use of /MT compile flag for building static libs and ↵Allen Byrne2010-12-291-0/+9
| | | | programs. Added BUILT_AS_STATIC_LIBRARY define to set the windows import/export defines correctly for static libraries.
* [svn-r19884] Corrected time_of_day define configuration, found during ↵Allen Byrne2010-12-131-1/+1
| | | | | | parallel CMake build. Tested: local linux
* [svn-r19811] Correct define typoAllen Byrne2010-11-171-1/+1
|
* [svn-r19779] Comment out H5_SIZEOF_PTRDIFF_T define to fix Windows errors.Allen Byrne2010-11-131-1/+1
|
* [svn-r19776] Corrected handling of largefile and linux_lfs handling.Allen Byrne2010-11-121-1/+30
| | | | | Synched cmake version of H5pubconf.h.in Added another variation of H5detect warning to ignore list.
* [svn-r19509] Improve CMake support for CYGWIN.Allen Byrne2010-10-041-0/+4
| | | | | | Correct script comment in testh5diff.sh Tested: Windows Cygwin
* [svn-r19211] Updated cmake file with community suggested changes for cmake ↵Allen Byrne2010-08-101-3/+0
| | | | | | | | install files. Removed configure check for fseek Tested: local linux
* [svn-r19165] Add configure changes from r19160 to CMake.Allen Byrne2010-08-021-0/+9
|
* [svn-r19107] Move Resources folder to config/cmakeAllen Byrne2010-07-201-0/+745
Tested: Local Linux