summaryrefslogtreecommitdiffstats
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r26132] reverted change 26177Scot Breitenfeld2015-02-051-0/+41
| | | | | | svn merge -c -26117 . Shared Fortran libraries don't work on Mac, the check for building shared on Mac needs to stay in.
* [svn-r26127] Fixed typo.Scot Breitenfeld2015-02-051-1/+1
|
* [svn-r26117] Autotools work HDFFV-9067,Scot Breitenfeld2015-02-031-41/+0
| | | | | | Removed restiction of disabling shared libraries on the MAC, H5_FORTRAN_SHARED was replaced with HAVE_SHARED_CONDITIONAL since H5_FORTRAN_SHARED was removed. tested: jam
* [svn-r26115] explain why If RUNSERIAL or RUNPARALLEL is the word `none' then ↵Mohamad Chaarawi2015-02-031-1/+2
| | | | replace it with empty string.
* [svn-r26114] remove option to toggle large file support.Mohamad Chaarawi2015-02-021-94/+19
|
* [svn-r26100] Removed maintainer mode (AM_MAINTAINER_MODE) from configure.ac.Dana Robinson2015-02-021-12/+0
| | | | | | | | | | | This is no longer needed since we don't check in generated files anymore. Actually, it was not really recommended in the first place: http://www.gnu.org/software/automake/manual/html_node/maintainer_002dmode.html Part of: HDFFV-9122 Tested on: jam
* [svn-r26096] Merged r26024-26095 from trunk.Dana Robinson2015-02-021-1/+1
|\ | | | | | | Tested on: jam with Fortran and C++
| * [svn-r26092] Snapshot version 1.9 release 212HDF Tester2015-02-011-1/+1
| |
* | [svn-r26086] Solaris no longer has issues with requiring early checking for timeDana Robinson2015-01-301-14/+7
| | | | | | | | | | | | | | | | | | functions so the checks were merged with the other system call checks. Fixes HDFFV-9083 Tested on: Linux (jam) and Solaris (emu)
* | [svn-r26085] Improved the direct VFD configure checks.Dana Robinson2015-01-301-7/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | - Results of O_DIRECT and posix_memalign() checks are now output so users can more easily diagnose problems. - Configure now fails if --enable-direct-vfd was requested but either O_DIRECT or posix_memalign() are not present. Part of HDFFV-7566 Tested on: jam (configure only)
* | [svn-r26084] Configure now just checks for O_DIRECT being defined instead of ↵Dana Robinson2015-01-301-24/+14
| | | | | | | | | | | | | | | | | | | | | | trying to build and run a program using it, which is problematic (depends on file system, issues with cross-compiling). Part of HDFFV-9057 Tested on: jam (configure only)
* | [svn-r26083] Changed the default for building the direct VFD to 'no'.Dana Robinson2015-01-301-6/+8
| | | | | | | | | | | | | | | | | | 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-r26082] Moved the high-level library checks up to the same place whereDana Robinson2015-01-301-40/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | Fortran and C++ are checked. This will make it easier to handle threadsafe/high-level combinations later. Also changed the default of --enable-pthread to 'check' and removed yes/no behavior. If you ask for thread-safety, you can't disable Pthreads... Part of HDFFV-8719 Tested on: jam (configure only)
* | [svn-r26081] Moved the check for pthread_attr_setscope() into the ↵Dana Robinson2015-01-291-32/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-291-10/+0
| | | | | | | | | | | | | | | | | | | | 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-291-44/+0
| | | | | | | | | | | | Part of HDFFV-9085 Tested on: jam
* | [svn-r26071] Moved setting H5_DEFAULT_VFD from configure to src/H5private.h.Dana Robinson2015-01-291-28/+0
| | | | | | | | | | | | Fixes HDFFV-9081 Tested on: jam
* | [svn-r26069] Removed the option to selectively disable internal filters like ↵Dana Robinson2015-01-291-67/+0
| | | | | | | | | | | | | | | | | | | | n-bit at compile time. Fixes HDFFV-9086 Tested on: jam, both serial and parallel w/ fortran & C++
* | [svn-r26060] Fix for HDFFV-9091Scot Breitenfeld2015-01-271-11/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 405-408::fortran vars should be scoped Scoped: HAVE_SIZEOF HAVE_C_SIZEOF HAVE_STORAGE_SIZE FORTRAN_DEFAULT_REALisDBLE to where the tests are (in m4/aclocal_fc.m4) Tested: jam (gnu)
* | [svn-r26059] Fix for: HDFFV-9095 Scot Breitenfeld2015-01-271-1/+1
| | | | | | | | | | | | | | 4159:: Check if Fortran's default real is double precision. If it is and HL is being built then configure should fail due to bug HDFFV-889. Fix: This check should be located where HL is check for, and it is. Updated the comment to elimenate confusion.
* | [svn-r26057] Fix for: HDFFV-9094Scot Breitenfeld2015-01-271-17/+1
| | | | | | | | | | | | | | | | | | | | change include 'mpif.h' to module in tests Solution: changed to 'USE mpi' and moved the tests to m4/aclocal_fc.m4 Tested: jam (mpicc, mpif90)
* | [svn-r26055] Updates for:Mohamad Chaarawi2015-01-271-197/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | 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-r26054] Fix for: HDFFV-9089Scot Breitenfeld2015-01-271-1/+1
| | | | | | | | | | | | 375::Compile the Fortran 77/90/95 interface -> remove 77 from comment Removed from comment.
* | [svn-r26052] Fixed false positive tests for intrensic functions.Scot Breitenfeld2015-01-271-6/+5
| | | | | | | | | | Tested: jam (mpi, gfortran, intel) --enable-fortran, and --enable-fortran --enable-fortran2003
* | [svn-r26051] Fix for HDFFV-9092Scot Breitenfeld2015-01-271-165/+19
| | | | | | | | | | | | | | | | | | | | | | | | 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-r26047] Fix for HDFFV-9092Scot Breitenfeld2015-01-271-77/+43
| | | | | | | | | | | | | | | | | | 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 tested: jam
* | [svn-r26042] Updated configure.ac so that POSIX_C_SOURCE=200112L and GNU_SOURCEDana Robinson2015-01-271-2/+11
| | | | | | | | | | | | | | | | | | are defined. The former is for posix_memalign() and the latter for the O_DIRECT flag for open(). Both are for direct VFD support. Fixes HDFFV-9088 Tested on: jam
* | [svn-r26029] Updated the comment on the Cygwin 'srcdir= and time' test to ↵Dana Robinson2015-01-261-0/+5
| | | | | | | | | | | | | | | | | | | | indicate that it's still an issue with recent versions of Cygwin. Fixes HDFFV-9082 Tested on: jam (bin/reconfigure only - just a comment change)
* | [svn-r26028] Removed code from configure.ac that #defined ↵Dana Robinson2015-01-261-9/+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-r25981] Snapshot version 1.9 release 211HDF Tester2015-01-181-1/+1
|
* [svn-r25980] Reverting check-in 25978, C_LONG_DOUBLE seems to be 16 bytes ↵Scot Breitenfeld2015-01-151-2/+1
| | | | sometimes and 10 bytes other times. Not sure why.
* [svn-r25978] Bug fix for HDFFV-8847Scot Breitenfeld2015-01-131-1/+2
| | | | Tested: h5committest
* [svn-r25975] Snapshot version 1.9 release 210HDF Tester2015-01-111-1/+1
|
* [svn-r25949] Snapshot version 1.9 release 209HDF Tester2015-01-041-1/+1
|
* [svn-r25924] Snapshot version 1.9 release 208HDF Tester2014-12-281-1/+1
|
* [svn-r25915] Snapshot version 1.9 release 207HDF Tester2014-12-211-1/+1
|
* [svn-r25912] Revert change r25701: Add LD path to HDF5 install directory to ↵Larry Knox2014-12-191-5/+1
| | | | | | | | | address HDFFV-8944. The change broke DESTDIR builds where an older HDF5 is installed in the --prefix directory. The original problem remains. Tested with h5committest
* [svn-r25900] HDFFV-9046: reorganize hdf5/perform/ directory Albert Cheng2014-12-171-1/+1
| | | | | | Moved perform/ to tools/perform. Updated all the configure related files for the new location. Tested: h5committested plus tested in jam and kite.
* [svn-r25886] Snapshot version 1.9 release 206HDF Tester2014-12-141-1/+1
|
* [svn-r25864] Snapshot version 1.9 release 205HDF Tester2014-12-071-1/+1
|
* [svn-r25855] Snapshot version 1.9 release 204HDF Tester2014-11-301-1/+1
|
* [svn-r25834] Snapshot version 1.9 release 203HDF Tester2014-11-231-1/+1
|
* [svn-r25762] Snapshot version 1.9 release 202HDF Tester2014-11-021-1/+1
|
* [svn-r25736] Snapshot version 1.9 release 201HDF Tester2014-10-261-1/+1
|
* [svn-r25720] Snapshot version 1.9 release 200HDF Tester2014-10-191-1/+1
|
* [svn-r25701] Add LD path to HDF5 install directory to address HDFFV-8944.Larry Knox2014-10-141-2/+6
| | | | Tested with h5committest and failed external daily tests.
* [svn-r25693] Snapshot version 1.9 release 199HDF Tester2014-10-121-1/+1
|
* [svn-r25668] Snapshot version 1.9 release 198HDF Tester2014-10-051-1/+1
|
* [svn-r25627] Snapshot version 1.9 release 197HDF Tester2014-09-281-1/+1
|
* [svn-r25604] Snapshot version 1.9 release 196HDF Tester2014-09-211-1/+1
|