summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r22141] Snapshot version 1.8 release 9 (snap14)HDF Tester2012-03-261-12/+12
|
* [svn-r22086] Snapshot version 1.8 release 9 (snap13)HDF Tester2012-03-191-12/+12
|
* [svn-r22041] Snapshot version 1.8 release 9 (snap12)HDF Tester2012-03-121-12/+12
|
* [svn-r22023] Snapshot version 1.8 release 9 (snap11)HDF Tester2012-03-051-11/+11
|
* [svn-r22013] HDFFV-7560:Allen Byrne2012-03-021-1/+1
| | | | | | | | | | Merge 1.8 and h5dump/tools and tests based on tools library from trunk. Reduced warnings. HDFFV-7949: Remove duplicated functions in h5ls Tested: local linux,h5committest
* [svn-r21961] Snapshot version 1.8 release 9 (snap10)HDF Tester2012-02-201-12/+12
|
* [svn-r21911] Snapshot version 1.8 release 9 (snap9)HDF Tester2012-02-061-12/+12
|
* [svn-r21899] Snapshot version 1.8 release 9 (snap8)HDF Tester2012-01-301-12/+12
|
* [svn-r21885] Snapshot version 1.8 release 9 (snap7)HDF Tester2012-01-231-12/+12
|
* [svn-r21877] Snapshot version 1.8 release 9 (snap6)HDF Tester2012-01-161-12/+12
|
* [svn-r21868] Snapshot version 1.8 release 9 (snap5)HDF Tester2012-01-091-12/+12
|
* [svn-r21858] Snapshot version 1.8 release 9 (snap4)HDF Tester2012-01-021-12/+12
|
* [svn-r21851] Snapshot version 1.8 release 9 (snap3)HDF Tester2011-12-261-12/+12
|
* [svn-r21832] Snapshot version 1.8 release 9 (snap2)HDF Tester2011-12-191-12/+12
|
* [svn-r21800] Snapshot version 1.8 release 9 (snap1)HDF Tester2011-12-051-12/+12
|
* [svn-r21776] Snapshot version 1.8 release 9 (snap0)HDF Tester2011-11-281-12/+12
|
* [svn-r21752] Purpose:Mike McGreevy2011-11-141-1/+3
| | | | | | | | | | | | | | Revert part of r21421 (F2003 merge to 1.8) which unintentionally removed a line from configure.in that sets FC=no when fortran is not enabled. This ensures that configure doesn't run compiler checks on a fortran compiler when it won't be used. (and can cause failures in configure when no fortran compiler is present as well as issues with the resulting src/Makefile when building DLLs on Cygwin) Tested: h5committest; manually on jam & bangan (Cygwin).
* [svn-r21723] Pushed trunk rev 21722 to the 1.8 branch. This reverts linking ↵Dana Robinson2011-11-061-3/+2
| | | | to the bsd-compat library on linux. Tested on jam, more extensive testing was performed on the trunk branch.
* [svn-r21638] Update 1.8 branch version to 1.8.9-snap0Mike McGreevy2011-10-211-12/+12
|
* [svn-r21588] Snapshot version 1.8 release 8 (snap18)HDF Tester2011-10-171-12/+12
|
* [svn-r21559] Description:Scot Breitenfeld2011-10-141-94/+23
| | | | | | Merged r21525 from trunk; removes hard coded compatability checks for F2003 compilers, replaced with a test program for features. Tested: jam (gnu)
* [svn-r21533] Description:Quincey Koziol2011-10-121-1/+1
| | | | | | | | | Bring r21442 and r21529 from trunk to 1.8 branch: Add new API routines for querying if collective raw data I/O was actually performed collectively. Tested: Linux/32 2.6 (jam) (h5committested on trunk)
* [svn-r21528] Merge of 21517 and 21520 from trunk:Dana Robinson2011-10-121-55/+141
| | | | | | | | | | - Added checks for clock_gettime() to configure.in. Tested on Linux, FreeBSD, Solaris, MacOSX to ensure they are found correctly and everything builds. No code currently reliess on clock_gettime(). - Brought Windows and VMS H5pubconf.h files into sync with the Linux file. Some data sizes were corrected in both VMS and Windows. Tested on Windows. Ray will test on VMS when this is pushed to the 1.8.x branch.
* [svn-r21500] Snapshot version 1.8 release 8 (snap17)HDF Tester2011-10-101-12/+12
|
* [svn-r21479] Merge revision 21101 from trunk to 1.8 branch:Mike McGreevy2011-10-051-56/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HDFFV-7639 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-r21444] Snapshot version 1.8 release 8 (snap16)HDF Tester2011-10-031-12/+12
|
* [svn-r21421] Merged the Fortran 2003 changes from the trunk into the 1.8 ↵Scot Breitenfeld2011-09-271-11/+167
| | | | | | | | | | | branch, used: svn merge -r 20506:21414 https://svn.hdfgroup.uiuc.edu/hdf5/trunk/fortran Tested: jam (gnu, intel, pgi compilers) Also merged effected non-Fortran files: svn merge -r21247:r21248 https://svn.hdfgroup.uiuc.edu/hdf5/trunk/src/libhdf5.settings.in
* [svn-r21416] Snapshot version 1.8 release 8 (snap15)HDF Tester2011-09-261-12/+12
|
* [svn-r21399] Snapshot version 1.8 release 8 (snap14)HDF Tester2011-09-191-12/+12
|
* [svn-r21375] Snapshot version 1.8 release 8 (snap13)HDF Tester2011-09-121-12/+12
|
* [svn-r21361] Snapshot version 1.8 release 8 (snap12)HDF Tester2011-09-051-12/+12
|
* [svn-r21330] Snapshot version 1.8 release 8 (snap11)HDF Tester2011-08-291-11/+11
|
* [svn-r21314] Merge of 21302 (bin/trace bugfix) from trunk. Tested on jam ↵Dana Robinson2011-08-251-1/+1
| | | | (minor change).
* [svn-r21276] Snapshot version 1.8 release 8 (snap10)HDF Tester2011-08-221-12/+12
|
* [svn-r21226] Snapshot version 1.8 release 8 (snap9)HDF Tester2011-08-151-12/+12
|
* [svn-r21186] Snapshot version 1.8 release 8 (snap8)HDF Tester2011-08-081-12/+12
|
* [svn-r21159] Snapshot version 1.8 release 8 (snap7)HDF Tester2011-08-011-12/+12
|
* [svn-r21150] Snapshot version 1.8 release 8 (snap6)HDF Tester2011-07-251-12/+12
|
* [svn-r21134] Description:Quincey Koziol2011-07-201-1/+1
| | | | | | | | | | | | | | | | | | Bring r21133 from trunk to 1.8 branch: More code cleanups to reduce coupling between packages that use the H5F internal routines, but really aren't part of the H5F "package". Tested on: FreeBSD/32 8.2 (loyalty) w/gcc4.6, w/C++ & FORTRAN, in debug mode FreeBSD/64 8.2 (freedom) w/gcc4.6, w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (koala) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, w/threadsafe, in production mode Linux/PPC 2.6 (heiwa) w/C++ & FORTRAN, w/threadsafe, in debug mode
* [svn-r21067] Purpose:Mike McGreevy2011-07-051-2/+2
| | | | | | | | | | | | | | | Fix HDFFV-7522 "--enable-production=xxx will produce incorrect configure summary" Description: Fixed a typo in configure.in that resulted in "-enableval" being displayed by the configure summary (and set in the CONFIG_MODE makefile variable) if the production mode was set to anything other than yes, no, or profile. The summary and CONFIG_MODE variable will now be set to the value specified by the user. Tested: jam, h5committest
* [svn-r21065] Snapshot version 1.8 release 8 (snap5)HDF Tester2011-07-041-12/+12
|
* [svn-r21044] Purpose:Mike McGreevy2011-06-281-29/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix HDFFV-7592 "Remove PACKEDBITS option from autotools files" Description: The code for h5dump's packed bits feature was conditionally compiled in via this option during its 'beta' release in 1.8.5. Now that the feature is fully supported, h5dump has since been changed to always compile the packed bits code (having removed the #ifdef H5_HAVE_H5DUMP_PACKED_BITS checks), so this option in configure is no longer needed. This commit removes the --enable-h5dump-packed-bits configure option, including the help summary from './configure --help' and the libhdf5.settings output summary, the PACKED_BITS Makefile variable, and the definition of H5_HAVE_H5DUMP_PACKED_BITS define in appropriate pubconf header files (which has already been removed from use in source code as of r20722). Note that this option was never added to the trunk, thus this commit only need occur on the 1.8 branch. Tested: - Configure output, help, & summary verified on jam - h5committested
* [svn-r21035] Snapshot version 1.8 release 8 (snap4)HDF Tester2011-06-271-12/+12
|
* [svn-r21002] Description:Scot Breitenfeld2011-06-201-1/+1
| | | | | | Brought r20958-20960 for DS fortran APIs from trunk. Tested: jam (intel)
* [svn-r21001] Snapshot version 1.8 release 8 (snap3)HDF Tester2011-06-201-12/+12
|
* [svn-r20932] Snapshot version 1.8 release 8 (snap2)HDF Tester2011-06-061-12/+12
|
* [svn-r20924] Snapshot version 1.8 release 8 (snap1)HDF Tester2011-05-301-12/+12
|
* [svn-r20898] Merge of configure changes 20891-2,4 from the trunk.Dana Robinson2011-05-241-4/+19
|
* [svn-r20889] Snapshot version 1.8 release 8 (snap1)HDF Tester2011-05-231-12/+12
|
* [svn-r20659] Description:Quincey Koziol2011-04-281-32/+32
| | | | | | | | | | | Bring r20657 from trunk back to 1.8 branch: Correct check for pthreads routine from pthread_join() to pthread_self() as intended. Tested on FreeBSD/32 6.3 (duty) in debug mode (h5committested on trunk)