summaryrefslogtreecommitdiffstats
path: root/fortran/config
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r5397] Purpose:Bill Wendling2002-05-101-3/+3
| | | | | | | | | Bug Fix Description: Put quotes around some variables so that the shell script doesn't complain to us about "too many arguements" for a test. Platforms tested: Linux
* [svn-r5262] Elena Pourmal2002-04-251-2/+2
| | | | | | | | | | | | Purpose: Bug fix Description: For some unknown to myself reason I used 32-bit integer for INTEGER(HSIZE_T) on Solaris platforms when 64-bit integers are available for both C and Fortran. Solution: Use the proper KIND argument to define INTEGER(HSIZE_T) Platforms tested: Solaris 2.7 ans 2.6
* [svn-r5100] Purpose:Bill Wendling2002-03-271-11/+32
| | | | | | | New Feature Description: Added support for the IBM PowerPC AIX architecture. Really just a copy of the RS6000 AIX config file...
* [svn-r5052] Purpose:Bill Wendling2002-03-081-8/+13
| | | | | | | | | | Bug Fix Description: The Fortran module files weren't being uninstalled. Solution: Added them to the 'uninstall:' list... Platforms tested: Linux
* [svn-r4536] Elena Pourmal2001-10-091-0/+1
| | | | | | | | | | | | | Purpose: Bug fix Description: On NERSC SP3 configure failed while trying to figure out how to print long long. Solution: Added the following line hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'} Platforms tested: Not tested yet.
* [svn-r4466] Bill Wendling2001-09-212-31/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | Purpose: Feature Add Description: Added "install-example" and "install-all" to the Makefile system. The behaviour of the "make install*" options: make install - Installs binaries, libraries, include files, and example programs. make install-examples - Installs only the example programs. The directories are: ${prefix}/doc/hdf5/examples/{c,c++,fortran} make install-all - Install the binaries, libraries, include files, example programs, and documentation. The whole kit-n'-caboodle. make uninstall-examples - Get rid of those example files (but not the ${prefix}/doc/hdf5/examples/... directories) There's a new bin/ program which helps create directories which are deeply nested called "mkdirs". It's a simple shell script. Platforms tested: Linux
* [svn-r4293] Bill Wendling2001-08-011-0/+1
| | | | | | | | | Purpose: Bug Fix Description: Needed to add the PERL=@PERL@ line to the commence.in file. Platforms tested: LInx
* [svn-r4208] Elena Pourmal2001-07-131-0/+30
| | | | | | | | | Purpose: F90 port to HPUX 10.20 Description: Added F90 support for HPUX 10.20 Platforms tested: HPUX 10.20 (sangamon)
* [svn-r4206] Bill Wendling2001-07-131-1/+1
| | | | | | | | Purpose: Bug Fix Description: Ported fix from 1.4 branch to have compiler look in the fortran/src directory for modules.
* [svn-r4076] Elena Pourmal2001-06-281-1/+1
| | | | | | | Purpose: Sync with hdf5 1.4 branch Description: Brought changes made in hdf5 1.4 branch into hdf5 1.5 branch
* [svn-r4071] Bill Wendling2001-06-271-0/+1
| | | | | | | | | | | | Purpose: Bug Fix Description: Modules weren't being found correctly. Solution: The F9XMODFLAG was being set and used in the test{par}/ and examples/ directories, but it's also needed in the src/ directory. Platforms tested: Modi4...cross fingers...
* [svn-r4042] Elena Pourmal2001-06-211-1/+1
| | | | | | | | | | | Purpose: Maintenance on IBM SP Description: I used unnecessary system specific compiler falgs Solution: Removed unnecessary flags Platforms tested: NERSC IBM SP (gseaborg)
* [svn-r4034] Elena Pourmal2001-06-211-0/+31
| | | | | | | | | Purpose: IBM SP F90 HDF5 Library port Description: Added necessary canges to the configuration file Platforms tested: Not tested yet.
* [svn-r3864] Purpose:Bill Wendling2001-04-272-7/+7
| | | | | | | | | | | Bug Fix Description: The "-$(RM)" flags were causing error messages when doing a make distclean. Solution: Removed the "-" from the beginning. Platforms tested: Linux
* [svn-r3814] Purpose:Bill Wendling2001-04-161-7/+14
| | | | | | | | | | | | | | | Cleanup Description: If there isn't anything to "remove" during the cleanup faze. This stops the "make clean"s from printing out: rm -f all of the time. Solution: Check if hte macros have anything in them before calling the rm. Platforms tested: Linux
* [svn-r3807] Purpose:Quincey Koziol2001-04-131-0/+20
| | | | | | | | | | | | | | Portability changes Description: Very quick port to Compaq (nee DEC) Alpha OSF5. Solution: Added a new "dec-osf5.x" configuration file and changed configure.in to look for it. The local test machine is now passing all the tests, except I can't get the "-L<path>" stuff to work, so tools which depend on the HDF4 library around tested. Platforms tested: Compaq Alpha 5.1 (compaq.ncsa.uiuc.edu)
* [svn-r3804] Purpose:Bill Wendling2001-04-121-1/+1
| | | | | | | | | | | | | | Bug Fix Description: If we need to specify a -R flag for dynamic libraries (like, in the case when we specify --with-hdf4), then this flag needs to be added to the linking line so that it will show up in the generated library and other programs linking to that library will be able to find the relevant libraries. Solution: Added the DYNAMIC_DIRS macro to the link line. Platforms tested: Arabica
* [svn-r3323] Purpose:Quincey Koziol2001-01-241-0/+168
| | | | | | | | | New platform Description: Support the Cray SV1 machine. (config file is identical to unicosmk file right now). Platforms tested: Cray SV1 (killeen.nersc.gov)
* [svn-r3260] Purpose:Bill Wendling2001-01-101-1/+1
| | | | | | | | | | | Bug Fix Description: The test ``test -e "filename"'' doesn't work with some Bourne shells (for instance, on Arabica). Solution: Changed test to ``test -f "filename"''. Platforms tested: Arabica
* [svn-r3190] Purpose:Bill Wendling2000-12-221-1/+1
| | | | | | | | | | | | | | Bug fix Description: This should fix the problem with installing the Fortran module files. Solution: This script determines if the HDF5 module is created. If it is, then we assume that we need to install all of the modules. I check for both upper and lowercase in the name cause I'm not sure what weird fortran compilers will do. Platforms tested: Linux
* [svn-r3150] Purpose:Bill Wendling2000-12-181-5/+3
| | | | | | | | | | | Another fix... Description: This should work for all platforms now. The other fix didn't work for the Linux platform Solution: Explicitly copy the modules if they exist. Platforms tested: Linux
* [svn-r3149] Purpose:Bill Wendling2000-12-181-1/+5
| | | | | | | | | | | | | Bug Fix Description: When trying to install the Fortran Modules, it would barf if there weren't any files in the directory with that extension (i.e., in the test/ directory). Solution: Changed the installation to install only those files which actually have the correct extension we want. Platforms tested: This type of fix works on the T3E and Linux
* [svn-r3144] Purpose:Bill Wendling2000-12-142-0/+4
| | | | | | | | | | | Install Fix Description: Fortran modules need to be installed. Solution: I check for the extension modules are created with and use that during the install... Platforms tested: Linux
* [svn-r3125] Purpose:Bill Wendling2000-12-131-0/+170
| | | | | | | | | | New Config Description: T3E at mcurie.nersc.gov changed it's name yet again. Solution: Create new file so that configure will find it correctly. Platforms tested: T3E
* [svn-r3071] Purpose:Bill Wendling2000-12-041-4/+6
| | | | | | | | | | | | Bug Fix Description: The fix we put in to ignore warning 405 was incorrect. The quotes were confusing to configure. Solution: Turns out that there doesn't need to be a space between the -M flag and the warning number. Platforms tested: T3E
* [svn-r3056] Purpose:Bill Wendling2000-12-011-1/+1
| | | | | | | | | | Bug Fix Description: There's a spurious warning being created on Cray T3E. Solution: We ignore it. Platforms tested: T3E
* [svn-r3053] Purpose:Bill Wendling2000-12-011-0/+168
| | | | | | | | New File Description: Configure file for the T3E. Platforms tested: T3E
* [svn-r2933] Purpose:Bill Wendling2000-11-151-1/+1
| | | | | | | | Changed to handle tracing in Fortran files. Description: Changed logic so that it doesn't try to search .f90 files. Platforms tested: Linux
* [svn-r2930] Purpose:Bill Wendling2000-11-151-24/+18
| | | | | | | | | Fix Description: Changed so that tracing is done on .c files and not .f90 files, which it wouldn't be able to handle. Platforms tested: Linux
* [svn-r2925] Purpose:Bill Wendling2000-11-151-3/+3
| | | | | | | | | | | Bug Description: Instead of LT_STATIC_EXEC, I had it named LT_STATIC_LIB, which was failing to compile. Solution: Changed Platforms tested: Linux
* [svn-r2915] Purpose:Bill Wendling2000-11-151-1/+1
| | | | | | | | Feature Add Description: Added the --enable-static-exec flag to the fortran stuff. Platforms tested: Linux
* [svn-r2745] Purpose:Bill Wendling2000-10-272-1/+3
| | | | | | | | | | | Bug fix...I hope Description: For some reason, libtool wasn't generating a .lai library file in the .libs directory. It needs this to install things, apparently. Solution: Major hack! I force a ln to the "real" one libtools wants. Platforms tested: Modi4
* [svn-r2696] Purpose:Bill Wendling2000-10-181-3/+3
| | | | | | | | | | | | Bug Fix Description: On some platforms, if you don't have . in your PATH, it won't find the test program it's supposed to run. Solution: Changed instead to ./$$test so that it picks up the program in the current directory. Platforms tested: Opus and Linux
* [svn-r2687] Elena Pourmal2000-10-161-1/+1
| | | | | | | | | | | Purpose: Typo fixing. Description: I made a typo in the comment. Solution: Fixed a typo. Platforms tested: This time tested on HPUX 11.00 (opus)
* [svn-r2685] Elena Pourmal2000-10-161-0/+30
| | | | | | | | | Purpose: Fortran HPUX 11.00 port Description: Added Fortran stuff to the hpux11.00 file Platforms tested: Has not been tested yet. Will do it after this checkin on opus.
* [svn-r2661] Purpose:Bill Wendling2000-10-115-5/+5
| | | | | | | | | | | Bug Fix Description: Wasn't finding the Dependencies file when doing a make. Solution: Modified the path to the Dependencies file by prepending a `$(srcdir)/' to it. Platforms tested: Modi4
* [svn-r2576] Purpose:Bill Wendling2000-09-1930-0/+1879
Adding the Fortran interface to the HDF5 library Description: Fortran is now a subdirectory of the HDF5 library tree. Platforms tested: Solaris and IRIX (O2K)