summaryrefslogtreecommitdiffstats
path: root/c++/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r5927] Snapshot version 1.5 release 36HDF Admin2002-09-141-1/+1
|
* [svn-r5912] Snapshot version 1.5 release 35HDF Admin2002-09-071-1/+1
|
* [svn-r5908] Snapshot version 1.5 release 34HDF Admin2002-08-311-1/+1
|
* [svn-r5869] Snapshot version 1.5 release 33HDF Admin2002-08-101-1/+1
|
* [svn-r5841] Snapshot version 1.5 release 32HDF Admin2002-08-031-1/+1
|
* [svn-r5774] Snapshot version 1.5 release 31HDF Admin2002-07-061-1/+1
|
* [svn-r5726] Snapshot version 1.5 release 30HDF Admin2002-06-291-1/+1
|
* [svn-r5506] Snapshot version 1.5 release 29HDF Admin2002-06-021-1/+1
|
* [svn-r5495] Purpose:Bill Wendling2002-05-311-0/+48
| | | | | | | | | | | | Bug Fix Description: C++ uses the "off_t" type for external files as well. I'm assuming that there's going to be a problem with 4 byte off_ts and 8 byte off_ts in the C++ code as well. I compiled everything on Linux and it worked, but I don't think we have a check for this bug in the library yet... Platforms tested: Linux
* [svn-r5465] Snapshot version 1.5 release 28HDF Admin2002-05-281-1/+1
|
* [svn-r5280] Purpose:Bill Wendling2002-04-291-1/+1
| | | | | | | | | | | | Update Description: Changed so that the Fortran and C++ configures are named "HDF5 Fortran" and "HDF5 C++" resp. instead of just "HDF5. Solution: Add an extra parameter to the subroutine which generates the new configure.in files. Platforms tested: Linux
* [svn-r5275] Snapshot version 1.5 release 27HDF Admin2002-04-271-1/+1
|
* [svn-r5266] Purpose:Bill Wendling2002-04-251-1/+1
| | | | | | | | | Update Description: Updated the h5vers script to automatically update the configure.in files so that they reflect the correct version in the AC_INIT line. Platforms tested: Linux
* [svn-r5235] Purpose:Bill Wendling2002-04-231-180/+191
| | | | | | | | | | | | | | | | Update Description: Updated the way we used the AC_INIT macros so that it's current to the new standard way and not deprecated anymore. Also, added a test for some functions during parallel Fortran configure. This required the creation of an H5config_fortran.h file so that we can test for these... Platforms tested: Elena is going to test the changes to the fortran after she checks in her other code. I will test on SDSC machines after getting her code. The other changes were tested on Linux.
* [svn-r5227] Purpose:Bill Wendling2002-04-221-3/+12
| | | | | | | | | | | Feature Update Description: Modified the AC_OUTPUT macro to coincide with the now-standard way of doing things. I.e., you put all of the files you want to generate into the AC_CONFIG_FILES macro and invode AC_OUTPUT with no parameters. Platforms tested: Linux
* [svn-r4849] Bill Wendling2002-01-221-1/+7
| | | | | | | | | | | Purpose: Fix fix Description: Moved Binh-Minh's fix of the lack of support for C++ in libtool by adding the DEFAULT_LIBS macro into the configure.in and config/commence.in files. Solution: Put it into the configure.in and commence.in files. Reran autoconf.
* [svn-r4688] Bill Wendling2001-12-101-14/+21
| | | | | | | | | | | | | Purpose: Bug Fix Description & Solution: In the test for "namespace", we needed to include the "iostream" header file to remove errors for strict compilers who need iostream for namespaces. I moved the test for namespace to after the test for "old header filenames" to make sure that I'm #including the correct iostream ("iostream" or "iostream.h"). Platforms tested: Linux
* [svn-r4292] Bill Wendling2001-08-011-0/+9
| | | | | | | | | | | | | | | | Purpose: Bug Fix Description: The way we were generating Dependencies and .depend files was broken. If the $srcdir or other macros began with a ".", then it would match anything and cause problems since it would then overwrite the beginning of the header file's path. Solution: Wrote a Perl script which can handle this type of weirdness better. It's only used when the environment is a GNU one with a GCC compiler... Platforms tested: Linux
* [svn-r3930] Purpose:Bill Wendling2001-05-151-1/+1
| | | | | | | | | Fix Description: Removed the redundant executables here. We just use the ones in the top-level of the tree. Platforms tested: Linux
* [svn-r3810] Purpose:Bill Wendling2001-04-131-39/+0
| | | | | | Update Description: Removed test for zlib since the C++ library doesn't need it.
* [svn-r3807] Purpose:Quincey Koziol2001-04-131-0/+3
| | | | | | | | | | | | | | 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-r3740] Purpose:Bill Wendling2001-03-301-0/+39
| | | | | | | | | | | | | Bug Fix Description: If the user specifies where to look for a library (like the zlib) on the commandline, then we add that directory to the LDFLAGS macro. Solution: Copied the code which checks for this from the C configure.in. Also added code which checks for the --with-zlib flag since that wasn't in there. Platforms tested: Linux
* [svn-r3293] Purpose:Bill Wendling2001-01-161-8/+0
| | | | | | | | | | | | Fixup Description: We were specifying a config file for the C++ stuff and it didn't need one. This would cause problems with compiling the C++ stuff since it wouldn't get the correct H5config.h file. Solution: Removed support for it. Platforms tested: Eirene
* [svn-r3107] Purpose:Bill Wendling2000-12-111-13/+32
| | | | | | | Adding Flag Description: Testing to see if the C++ compiler can handle the ``static_cast'' keyword.
* [svn-r3091] Purpose:Bill Wendling2000-12-071-1/+1
| | | | | | | | | | Fix Description: Needed to change the extention to the file configure expects to be in the source directory when Binh-Minh changed the extensions for all the files. Solution: Did just that.
* [svn-r3076] Purpose:Bill Wendling2000-12-051-0/+10
| | | | | | | New Flag Description: Added a test to see if the C++ compiler can handle the bool datatype. If not, then it defines the BOOL_NOTDEFINED macro.
* [svn-r2939] Purpose:Bill Wendling2000-11-151-2/+2
| | | | | | | | | Bug Description: When copying the --enable-production stuff, I forgot to change the CFLAGS to CXXFLAGS... Platforms tested: Solaris
* [svn-r2937] Purpose:Bill Wendling2000-11-151-0/+33
| | | | | | | Feature Update Description: Added ability to compile code as production, development, or profile with the appropriate flags...
* [svn-r2920] Purpose:Bill Wendling2000-11-151-2/+2
| | | | | | | | | | | | Buglet fix... Description: When configuring, configure would complain about there not being a confdefs.h file. Solution: Added a src/H5config.h file which configure can generate. This can be used for configure stuff later, but is empty now. Platforms tested: Linux
* [svn-r2918] Purpose:Bill Wendling2000-11-151-1/+5
| | | | | | | | | | Bug fix Description: It would be nice if I'd done this correctly the first time. Solution: Doh! NEeded to use the ``using'' keyword... Platforms tested: Linux
* [svn-r2917] Purpose:Bill Wendling2000-11-151-3/+3
| | | | | | | | | | | Bug fix Description: Namespace wasn't being detected properly. Solution: Changed it to do it properly (not putting the main() function in the namespace); Platforms tested: Linux
* [svn-r2913] Purpose:Bill Wendling2000-11-151-0/+17
| | | | | | | | | | | Bug fix Description: Configure wasn't picking up the LT_STATIC_EXEC stuff from the top-level configure. Solution: Added LT_STATIC_EXEC logic Platforms tested: Linux
* [svn-r2907] Purpose:Bill Wendling2000-11-141-1/+1
| | | | | | Bug FIx Description: The Source file was renamed. Changed it to that name.
* [svn-r2903] Purpose:Bill Wendling2000-11-141-0/+371
Adding Makefiles and configure stuff.