summaryrefslogtreecommitdiffstats
path: root/configure
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r15942] Purpose: Bug Fixes and Libtool UpgradeMike McGreevy2008-10-241-187/+657
| | | | | | | | | | | | | | | | | | Description: - Remove need to set LD_LIBRARY_PATH when using shared szip library. - Libtool 2.2.6a is now used to generate libraries. - 'make check install' dependency bug is fixed, and should no longer break the build. - removed hard coding of shell in config/commence.am, as this causes problems on Solaris with the new version of libtool. - RELEASE.txt with appropriate changes. Tested: - kagiso, smirom, linew (merged from 1.8, pretty quick tests)
* [svn-r15913] Bug fix: #933Albert Cheng2008-10-211-3/+2
| | | | | | | The information of libhdf5_fortran.settings are all included in libhdf5.settings now. Remove it from the source. Tested: kagiso with fortran and C++.
* [svn-r15825] Description:Quincey Koziol2008-10-091-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Fix various problems with a the core & sec2 VFDs. Improve the h5_get_file_size() routine to handle files created with VFDs that use multiple files. Tested on: Mac OS X/32 10.5.5 (amazon) in debug mode Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
* [svn-r15800] Description:Quincey Koziol2008-10-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Bring file free space branch changes through r15795 into trunk, which includes a fair bit of code cleanup & rearrangement along with a couple of bug fixes also. Tested on: Mac OS X/32 10.5.5 (amazon) in debug mode Mac OS X/32 10.5.5 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (kagiso) w/PGI compilers, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (smirom) w/Intel compilers w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in production mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
* [svn-r15713] Snapshot version 1.9 release 19HDF Tester2008-09-281-11/+11
|
* [svn-r15667] Snapshot version 1.9 release 18HDF Tester2008-09-211-11/+11
|
* [svn-r15656] Purpose: fix bug 1286Neil Fortner2008-09-181-0/+110
| | | | | | Description: Added configure test to see if pointer alignment restrictions are enforced (as in dereferencing an unaligned pointer causes an error). Added code in H5Tvlen.c to avoid dereferencing unaligned pointers, conditionally compiled based on the configure test. Added test case in dtypes.c which would previously cause such machines to fail. Tested: kagiso, smirom, linew (h5committest); linew64
* [svn-r15639] Purpose: Check for __func__ keyword during configureScott Wegner2008-09-171-1/+59
| | | | | | | | | | Description: In some of the new H5EA* code, many new C99 features are being used. Most of them are portable to all compilers, but the __func__ keyword in particular isn't supported in Visual Studio on Windows. Instead, Windows defines the __FUNCTION__ keyword, which can be used as a direct substitute. We now check for the __func__ keyword during configure and define the feature flag H5_HAVE_C99_FUNC. There was previously a check for __FUNCTION__, and the feature flags H5_HAVE_FUNCTION. In H5EApkg.h, we check for the presents of each of these in order to see which to use. If neither are avaiable, fail. Tested: h5committest (kagiso, smirom, linew)
* [svn-r15637] Bug 710: partial fix.Albert Cheng2008-09-161-2/+2
| | | | | | | | | | | Temporary removed b2 from the --enable-debug=all list so that this option will pass. "configure --help" lists the --enable-debug=all and users tend to use it and end up with compile failures in the b2 debug code. Since this bug will not be fixed soon, this is a temporary fix to let the configure and build work. Tested: h5committest plus "--enable-debu=all" test in kagiso.
* [svn-r15619] Snapshot version 1.9 release 17HDF Tester2008-09-141-11/+11
|
* [svn-r15595] Snapshot version 1.9 release 16HDF Tester2008-09-071-11/+11
|
* [svn-r15586] Description:Scot Breitenfeld2008-09-031-43/+57
| | | | | Changed the test for intrinsic Fortran function SIZEOF by using AC_TRY_RUN instead of AC_TRY_COMPILE.
* [svn-r15577] Description:Scot Breitenfeld2008-09-021-37/+39
| | | | Moved AM_CONDITIONAL([FORTRAN_HAVE_SIZEOF]....) outside of Fortran conditional loop so that the value gets registered regardless of whether Fortran is enabled.
* [svn-r15570] Description:Scot Breitenfeld2008-09-011-29/+90
| | | | Added a test for the availability of intrinsic Fortran function SIZEOF. Sets the global variable FORTRAN_HAVE_SIZEOF depending if SIZEOF is available.
* [svn-r15565] Snapshot version 1.9 release 15HDF Tester2008-08-311-11/+11
|
* [svn-r15540] Description:Scot Breitenfeld2008-08-261-30/+33
| | | | Enable building shared library for fortran by adding the flag -fPIC to the compile flags for versions of Intel Fortran compiler >=9
* [svn-r15534] Description:Scot Breitenfeld2008-08-261-30/+123
| | | | Added a test program to determine if -r8 or the default of REAL is DOUBLE PRECISION. Sets the variable FORTRAN_DEFAULT_REALisDBLE_F to true if default REAL is DOUBLE PRECISION.
* [svn-r15476] Snapshot version 1.9 release 14HDF Tester2008-08-171-10/+10
|
* [svn-r15467] remove h52jpegPedro Vicente Nunes2008-08-121-3/+2
|
* [svn-r15455] Snapshot version 1.9 release 13HDF Tester2008-08-101-11/+11
|
* [svn-r15425] Snapshot version 1.9 release 12HDF Tester2008-08-031-11/+11
|
* [svn-r15410] Snapshot version 1.9 release 11HDF Tester2008-07-271-11/+11
|
* [svn-r15389] Snapshot version 1.9 release 10HDF Tester2008-07-201-10/+10
|
* [svn-r15375] Description:Quincey Koziol2008-07-161-1/+1
| | | | Bump shared library version # for change to H5G_info_t struct
* [svn-r15347] Snapshot version 1.9 release 9HDF Tester2008-07-131-11/+11
|
* [svn-r15322] Snapshot version 1.9 release 8HDF Tester2008-07-061-11/+11
|
* [svn-r15293] Description:Quincey Koziol2008-06-291-3/+2
| | | | Remove tools/h52jpeg from configure.in & run bin/reconfigure on kagiso
* [svn-r15292] moved h52jpeg to /hl/tools/h52jpegPedro Vicente Nunes2008-06-281-2/+3
| | | | tested: linux
* [svn-r15215] Snapshot version 1.9 release 7HDF Tester2008-06-151-10/+10
|
* [svn-r15187] Purpose: Disabling h52jpeg directory from being built while ↵Mike McGreevy2008-06-101-1/+1
| | | | | | | | issues surrounding its location and its dependencies are worked out. Tested: kagiso
* [svn-r15184] added the configure and Makefile changes to build h52jpeg in ↵Pedro Vicente Nunes2008-06-091-2/+3
| | | | | | unix systems tested: linux, solaris
* [svn-r15172] Snapshot version 1.9 release 6HDF Tester2008-06-081-10/+10
|
* [svn-r15149] Purpose: Bug FixMike McGreevy2008-06-051-1/+1
| | | | | | | | Description: Changing h5perf installation so only h5perf is installed when parallel is enabled, while only h5perf_serial is installed when parallel is disabled. Tested: kagiso
* [svn-r15112] Purpose: Bug fixMike McGreevy2008-05-301-1/+3
| | | | | | | | | | Description: While '-Wl,-rpath' information was being removed from compile lines when using --disable-sharedlib-rpath, some information was still hidden in another variable tht never got reset and thus snuck into the executables. This fix should take care of that issue. Tested: kagiso, smirom
* [svn-r15020] Purpose: Configure FixMike McGreevy2008-05-161-1/+1
| | | | | | | | | Description: The test program h52gifgentst was getting installed in the bin directory during 'make install', and it shouldn't. Make now builds the program for use in testing but doesn't install it during 'make install'. Tested: kagiso
* [svn-r15017] Purpose:Albert Cheng2008-05-161-5/+2
| | | | | | | | | | | | | | bug fix. Description: Removed a few debug print statments that was left in by mistake. Removed initialization for macro system INSTRUMENT to match how it behaves before. Tested platforms: h5committested (kagiso, smirom and linew). It failed in fortran test in smirom but I believed that was not caused by my changes in configure.in.
* [svn-r15014] Purpose: Configure Macro ModificationMike McGreevy2008-05-151-15/+11
| | | | | | | | Description: The macro H5_HAVE_WINDOW_PATH is now defined to 1 only when MinGW is in use. This is needed to fix the "links" test, and the external link feature in the library. Tested: kagiso
* [svn-r15012] Purpose: New configure optionMike McGreevy2008-05-151-27/+56
| | | | | | | | Description: The configure option --disable-sharedlib-rpath will disable embedding of the '-Wl,-rpath' information into executables when shared libraries are produced. Tested: kagiso
* [svn-r15007] Purpose: configure cleanupMike McGreevy2008-05-151-50/+30
| | | | | | | Description: cleaning up configure related to removal of --disable-hsizet flag, which we no longer support. Tested: kagiso
* [svn-r15003] Purpose:Albert Cheng2008-05-151-60/+162
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improvement. Description: src/libhdf5.settings was the initial configure summary and is installed. Then configure is changed to dump a summary of the configure settings to the output and also append it to src/libhdf5.settings. That created two different output formats and duplicated information. This is the initial attempt to clean up this confusion and unify the output format. It is decided to use the src/libhdf5.settings template as the unified means. This requires more macros symbols be defined. The following symbols are all related to generating the src/libhdf5.settings file. AC_SUBST(EXTERNAL_FILTERS) AC_SUBST(MPE) MPE=no AC_SUBST(STATIC_EXEC) STATIC_EXEC=no AC_SUBST(HDF_FORTRAN) HDF_FORTRAN=no AC_SUBST(FC) HDF_FORTRAN=no AC_SUBST(HDF_CXX) HDF_CXX=no AC_SUBST(CXX) HDF_CXX=no AC_SUBST(HDF5_HL) HDF5_HL=yes AC_SUBST(GPFS) GPFS=no AC_SUBST(LINUX_LFS) LINUX_LFS=no AC_SUBST(INSTRUMENT) INSTRUMENT=no AC_SUBST(CODESTACK) CODESTACK=no AC_SUBST(HAVE_DMALLOC) HAVE_DMALLOC=no AC_SUBST(DIRECT_VFD) DIRECT_VFD=no AC_SUBST(THREADSAFE) THREADSAFE=no AC_SUBST(STATIC_SHARED) AC_SUBST(enable_shared) AC_SUBST(enable_static) AC_SUBST(UNAME_INFO) UNAME_INFO=`uname -a` The src/libhdf5.settings.in has CONDITIONAL's added to it too. The untrue conditions turned into a "#" and these lines are cleaned by the post processing script. Platform tested: h5committest on kagiso, smirom and linew.
* [svn-r14990] Purpose: Bug FixMike McGreevy2008-05-131-1/+1
| | | | | | | Description: Typo in the configure.in script. CC_VERSION should be set using CC_NOFLAGS, but is currently using CC_NOFLAG, which does not exist. Tested: kagiso (configure issue)
* [svn-r14969] Purpose: Bug Fix (Bug 1144)Mike McGreevy2008-05-121-1/+1
| | | | | | | | | | | | | Description: Tests in perform directory were never getting run, and h5perf* programs were not being installed. Solution: Added another build option, 'make check-perform', which runs the tests in the perform directory. Also modified the Makefiles in the perform directory to install (with 'make install') h5perf when parallel is enabled, and h5perf and h5perf_serial when parallel is disabled. Tested: kagiso, smirom, linew
* [svn-r14965] Snapshot version 1.9 release 5HDF Tester2008-05-111-11/+11
|
* [svn-r14933] Purpose: Updating HDF5 to use automake 1.10.1 and libtool 2.2.2Mike McGreevy2008-05-051-7836/+7569
| | | | | | | | | | | | | | | | | | Description: Applying update to autotools that was applied to 1.8 a couple of weeks ago to the trunk. Updated bin/reconfigure script to reflect the new versions of libtool and automake in the /home1/packages/ directory. Rearranged configure.in script. When using libtool 2.2.2, the libtool script doesn't generate until later in the configuration process, so I had to move a test that parsed through the libtool script to a point after where it was actually being generated. Ran libtoolize on the project, and ran bin/reconfigure to regenerate configure and Makefile.in's throughout. Tested: kagiso, smirom, linew (h5committest)
* [svn-r14903] Undoing change committed in r14902.Scot Breitenfeld2008-04-301-17/+49
|
* [svn-r14902] Merged fortran_1_8 branch changes r14505:14901 into the trunk. ↵Scot Breitenfeld2008-04-301-49/+17
| | | | New fortran wrappers added.
* [svn-r14864] Snapshot version 1.9 release 4HDF Tester2008-04-271-11/+11
|
* [svn-r14849] Snapshot version 1.9 release 3HDF Tester2008-04-201-11/+11
|
* [svn-r14832] Snapshot version 1.9 release 2HDF Tester2008-04-131-11/+11
|
* [svn-r14812] Description:Albert Cheng2008-04-081-3/+3
| | | | | | | | | | | | | The development branch was changed to default enable-production for the v1.8 release but had not switched back to default development mode. Solution: Changed it back to --disable-production (aka development) as the default. Also ran bin/reconfigure to update configure. Tested: Smirom only. No h5committest since the change is trivial and if it works at smirom, it should work everywhere else.