summaryrefslogtreecommitdiffstats
path: root/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r7993] Purpose:Quincey Koziol2003-12-291-29/+0
| | | | | | | | | | | | Code cleanup, bug fixes Description: Wrap up rest of changes necessary for fixing the "short" MPI-I/O read problem that Robb reported. Platforms tested: FreeBSD 4.9 (sleipnir) too minor to require h5committest
* [svn-r7982] Snapshot version 1.7 release 13HDF Admin2003-12-281-1/+1
|
* [svn-r7974] Snapshot version 1.7 release 12HDF Admin2003-12-211-1/+1
|
* [svn-r7955] Snapshot version 1.7 release 11HDF Admin2003-12-141-1/+1
|
* [svn-r7875] Purpose:Quincey Koziol2003-11-241-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Omnibus floating-point bug fix changes Description: There are a number of problems in the floating-point conversion code that were exposed by Ray's recent int<->float checkin: - The 'my_isnan' code in test/dtypes.c was broken and would always return true. The meant that the actual values in the float<->float conversion tests were _never_ checked, hiding the other bugs included in this checkin. - A recent change I made to the type conversion code used "FLT_MIN" instead of "-FLT_MAX" for the most negative 'float' value for the double->float conversion, which meant that any the negative number that was converted from a double to a float would have been mapped to zero, essentially. - A change that Robb appeared to have made ~2.5 years ago to the "generic" float->float conversion routine appears to be incorrect and I've backed it out. - Floating-point conversions on SGI's which converted denormalized values would be mapped to zero instead of being propertly preserved in the new type. This was addressed by an SGI-specific system call to prevent the behavior. Solution: Described above, generally. Platforms tested: FreeBSD 4.9 (sleipnir) h5committest Misc. update: release_docs/RELEASE update forthcoming...
* [svn-r7831] Snapshot version 1.7 release 10HDF Admin2003-11-091-1/+1
|
* [svn-r7829] Purpose:Quincey Koziol2003-11-081-24/+0
| | | | | | | | | | | | | | | | | Bug fix & code cleanup Description: Allowing the library to call malloc with a size of 0 bytes causes problems for some users, so we check for allocations of 0 bytes and disallow them now. Cleaned up some code which could call malloc with 0 size. Changed some code calling HDmalloc directly to call H5MM_malloc(), which allows us to check for 0 sized allocations. Platforms tested: FreeBSD 4.9 (sleipnir) too minor to require h5committest
* [svn-r7807] Snapshot version 1.7 release 9HDF Admin2003-11-021-1/+1
|
* [svn-r7770] Purpose:Bill Wendling2003-10-281-5/+22
| | | | | | | | | | | | | | More Checks Description: Added checks for correctly working "basename" and "xargs" programs. Mike McKay was having troubles with the xargs. The basename check was just a good idea. Platforms tested: Verbena, Arabica, Modi4 Misc. update:
* [svn-r7739] Snapshot version 1.7 release 8HDF Admin2003-10-261-1/+1
|
* [svn-r7698] Purpose:Bill Wendling2003-10-221-11/+10
| | | | | | | | | | | | Feature Add Description: Readded the FPHDF5 configuration option. Platforms tested: Linux (small and configure-specific) Misc. update:
* [svn-r7668] Snapshot version 1.7 release 7HDF Admin2003-10-191-1/+1
|
* [svn-r7634] Purpose:Albert Cheng2003-10-151-1/+1
| | | | | | | | | | | | | | updated help page Description: help message for enable-stream-vfd was still default=no. changed to default=yes. Platforms tested: no h5committest. Only tested in eirene since change is simple. Misc. update:
* [svn-r7618] Purpose:Bill Wendling2003-10-131-0/+13
| | | | | | | | | | | | Add check Description: Added a check to make sure that the "tr" program actually works. Platforms tested: Linux (small fix and only to configure) Misc. update:
* [svn-r7605] Snapshot version 1.7 release 6HDF Admin2003-10-121-1/+1
|
* [svn-r7603] Purpose:Bill Wendling2003-10-101-1/+2
| | | | | | | | | | | | | Update Description: Enable the stream-vfd driver by default. --disable-stream-vfd if you don't want it. Platforms tested: Linux (configuration change, no need for full testing) Misc. update:
* [svn-r7558] Snapshot version 1.7 release 5HDF Admin2003-10-071-1/+1
|
* [svn-r7502] Snapshot version 1.7 release 4HDF Admin2003-09-211-1/+1
|
* [svn-r7496] Purpose:Pedro Vicente Nunes2003-09-191-0/+1
| | | | | | | | | | | | included the new tool h5repack in the configure files Platforms tested: linux (small change) Misc. update:
* [svn-r7480] Purpose:Quincey Koziol2003-09-161-2/+20
| | | | | | | | | | | | | | | | | Bug fix Description: The MPI_File_set_size() routine on ASCI Red is not able to extend files so that they are larger than 2GB. Solution: Add an extra macro which controls whether MPI_File_set_size() can handle >2GB offsets or if our "older" way of reading a byte, then writing a byte at the appropriate offset should be used. Platforms tested: FreeBSD 4.9 (sleipnir) h5committest
* [svn-r7472] Snapshot version 1.7 release 3HDF Admin2003-09-141-1/+1
|
* [svn-r7436] Snapshot version 1.7 release 2HDF Admin2003-08-311-1/+1
|
* [svn-r7433] Purpose:Quincey Koziol2003-08-311-1/+1
| | | | Corrected typo in help string
* [svn-r7397] Snapshot version 1.7 release 1HDF Admin2003-08-241-1/+1
|
* [svn-r7366] Purpose:Bill Wendling2003-08-151-13/+13
| | | | | | | | | | | | | | | | Readd Description: Readded the FPHDF5 enabling flags. Platforms tested: AIX (Copper: Fortran & C++) Linux (Verbena: Fortran & C++) IRIX (Modi4: Parallel & Fortran) (Sol is down) Misc. update:
* [svn-r7290] Purpose:Quincey Koziol2003-08-081-13/+12
| | | | | | | | | | | | | | Code cleanup/minor bug fixes Description: Corrected a few typos and changed the order that the printf() format strings are tested for 'long long's to move 'll' ahead of 'q', since 'll' is the form for the ANSI C99 standard. Platforms tested: h5committested Misc. update:
* [svn-r7282] Purpose:Bill Wendling2003-08-041-0/+1
| | | | | | | | | | | | | | | | | Bug Fix Description: On "user02", the Fortran compiler is "efc". We weren't testing for this compiler (and I don't know how it was succeeding before...). Solution: Added efc to the list of Fortran compilers we check for. Platforms tested: Couldn't test as I don't have access to user02. But this doesn't affect other platforms. Misc. update:
* [svn-r7277] Purpose:Bill Wendling2003-07-301-0/+6
| | | | | | | | | | | | | | | | | | Bug Fix Description: C++ on Irix 6.5 needs some special libraries (libCio or some such thing). These were defined using the DEFAULT_LIBS macro. However, they weren't being placed into the Makefiles since it wasn't AC_SUBST'ed in configure.in and wasn't declared in commence.in. Solution: Added to configure.in and also added and commence.in Platforms tested: Modi4 (C++, small change and only Irix specific) Misc. update:
* [svn-r7269] Purpose:Bill Wendling2003-07-281-203/+466
| | | | | | | | | | | | | | | | | | | | | | | | | | Update Description: Revamped the configuration system. The configurations for the Fortran and C++ libraries are no longer separate from the "main" configuration system. This involved removing the "configure*" and "aclocal.m4" files from the fortran/ and c++/ subdirectories. Also merging settings in the config/ subdirectories into the main config/ subdirectory. Fortran header files had to be modified a little for Linux. It was checking if it was a Linux machine by some #defines, however with the -std=c99 switch, these defines weren't there. I added a check for some other ones which should be there whether the -std=c99 switch is used or not. Platforms tested: Verbena (Fortran & C++) Sol (Fortran & C++) Copper (Fortran & C++) Modi4 (Parallel, Fortran, & C++) Misc. update:
* [svn-r7266] Snapshot version 1.7 release 0HDF Admin2003-07-271-1/+1
|
* [svn-r7190] Purpose:Albert Cheng2003-07-091-0/+5
| | | | | | | | | | | | | | | | | | | | | | | Feature change. Description: --prefix default was /usr/local. This is not approprirate for development version since it is not likely that one would want to install a development version in the /usr/local area. Solution: Change --prefix default to `pwd`/hdf5, a directory in the build directory. This eliminates the problem that the builder may not have permission to install in the default install directory. It also allows multiple builds in the same host or multiple srcdir using the same source. Platforms tested: h5committested. Also tested in eirene by trying various configure combination to verify the new effect. Misc. update:
* [svn-r7180] Purpose:Quincey Koziol2003-07-071-11/+11
| | | | | | | | | | | Version update Description: Change from 1.4 compatibility to 1.6 compatibility. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7166] Purpose:Quincey Koziol2003-07-031-5/+5
| | | | | | | | | | Update configuration Description: Now that we've split the tree (Yea!), change the main trunk back to debug on and production off. Also, change the version # to 1.7.0
* [svn-r7145] Purpose:Albert Cheng2003-07-031-5/+5
| | | | | | | | | | | | | update for release Description: Set the version information to 1.6.0-pre1 to get ready for v1.6 release. Platforms tested: h5committested. Misc. update:
* [svn-r7131] Purpose: Maintenance for the fifth round of testingElena Pourmal2003-07-011-1/+1
| | | | | | | | | | | Description: Bumped version number for 1.5.63 after creating a tar ball for the next round of testing Solution: Platforms tested: Misc. update:
* [svn-r7108] Purpose:Quincey Koziol2003-06-261-22/+30
| | | | | | | | | | | | | Code cleanup Description: Make the default for the function stack work like the default for the API tracing: when debug is enabled, the function stack defaults to on and when debug is disabled, the function stack defaults to off. Platforms tested: FreeBSD 4.8 (sleipnir) h5committest
* [svn-r7099] Elena Pourmal2003-06-241-1/+1
| | | | | | | | | | | | | Purpose: Maintenance Description: Bumped the version number to 1.5.62 after creating a tar ball for the fourth round of testing. Solution: run bin/h5vers -s scipt on arabica Platforms tested: N/A Misc. update:
* [svn-r7093] Purpose:Bill Wendling2003-06-241-0/+4
| | | | | | | | | | | | | | | MPE Fix Description: The MPE stuff needed the lmpe library. Solution: Added it. Platforms tested: Copper (Small fix) Misc. update:
* [svn-r7090] Purpose:Bill Wendling2003-06-241-37/+70
| | | | | | | | | | | | | | | | | Update Description: Changed the --enable-mpe flag to --with-mpe so that we could specify the directory information for where the MPE stuff is kept. (with the =DIR option that we have for --with-* flags) Solution: 7% Platforms tested: Copper (where MPE is...small change no requiring h5committest). Misc. update:
* [svn-r7074] Purpose:Quincey Koziol2003-06-201-1/+1
| | | | Bump version # after another private snapshot for SAF team.
* [svn-r7061] Purpose:Quincey Koziol2003-06-181-1/+1
| | | | Bump version # after creating private snapshot.
* [svn-r7044] Purpose:Albert Cheng2003-06-161-41/+43
| | | | | | | | | | | | | | | | | | | Bug fix. Description: the MPI_Get_count test does not work correctly (the macro name MPI_GET_COUNT_WORKS is not even used in source code.) For some reason, this test sometimes hangs in AIX. Solution: Blocked out the test for now and removed the code later when things are verified to be correct. Platforms tested: h5committested. ALso tested in Copper (32/64bit parallel, 32 bit serial). Misc. update:
* [svn-r7023] Elena Pourmal2003-06-111-1/+1
| | | | | | | | | | | | | Purpose: Maintenance for the third round of testing Description: Increased the version number to 1.5.59 after creating a tar ball for testing. Solution: Platforms tested: Misc. update:
* [svn-r7020] Purpose:Quincey Koziol2003-06-101-1/+1
| | | | Bump version number after making snapshot
* [svn-r6986] Snapshot version 1.5 release 56HDF Admin2003-06-061-1/+1
|
* [svn-r6974] Purpose:Quincey Koziol2003-06-051-1/+1
| | | | | | | | Bump version # Description: Bump the version # of the library after creating snapshot for SAF developers to test with.
* [svn-r6905] Elena Pourmal2003-05-201-1/+1
| | | | | | | | | | | | Purpose: Maintenance for the second round of testing Description: Used bin/h5vers to change version number to 1.5.55 Solution: Platforms tested: arabica Misc. update:
* [svn-r6886] Purpose:Bill Wendling2003-05-171-12/+26
| | | | | | | | | | | | | | Update Description: GPFS should only be checked for if the --enable-gpfs flag is used. Otherwise, it shouldn't. Platforms tested: Linux (Configure only fix so only needed to test it to make sure the configure does the right thing and that the build won't break. I need to test it on a machine that has GPFS to make sure it works there...)
* [svn-r6879] Purpose:Bill Wendling2003-05-151-2/+2
| | | | | | | | | | | | | | | | | | Fix Description: The SZLIB stuff was being checked by default. This isn't right as not everyone will have SZLIB stuff. Solution: Made the default "no" instead of "yes" Platforms tested: Modi4 (Fortran & Parallel) Verbena (Fortran & C++) Arabica (Fortran) Misc. update:
* [svn-r6835] Elena Pourmal2003-05-081-1/+1
| | | | | | | | | | | | | Purpose: Maintenance Description: I changed release version to 1.5.54. Email about tetsing of 1.5.53 will be send after this checkins. Solution: used bin/h5vers -s to change the version number Platforms tested: Done on arabica Misc. update: