summaryrefslogtreecommitdiffstats
path: root/c++/configure.in
Commit message (Collapse)AuthorAgeFilesLines
* [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.