summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r14109] Description:Quincey Koziol2007-08-231-0/+6
| | | | | | | | | Make certain to define the API function and typedef version macros in all situations. Tested on: FreeBSD/32 6.2 (duty) Mac OS X/32 10.4.10 (amazon)
* [svn-r14108] Description:Quincey Koziol2007-08-231-4/+4
| | | | | | | | | | | | Make version macro for typedefs closer to version macro for API functions. Tested on: FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (kagiso) Linux/64 2.6 (smirom) Solaris/32 5.10 (linew)
* [svn-r14104] Description:Quincey Koziol2007-08-231-3/+3
| | | | | | | | | | | | | Pursue calls to H5Gcreate() relentlessly and ruthlessly exterminate them, leaving only a few tame specimens in text files and comments. ;-) Tested on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (kagiso) Linux/64 2.6 (smirom) Solaris/32 5.10 (linew)
* [svn-r14097] Description:Quincey Koziol2007-08-211-34/+133
| | | | | | | | | | | | | First real use of API versioning code, H5E routines switched to use new API versioning scheme. Tested on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (kagiso) Linux/64 2.6 (smirom) Solaris/32 5.10 (linew)
* [svn-r14022] Description:Quincey Koziol2007-07-261-2/+3
| | | | | | | | | | | | | | | | Remove stray reference to "group revision" configure flag Remove Windows-specific EOL characters from src/H5FDwindows.c Add some missing types to bin/trace Re-run bin/reconfigure script to regenerate information after changes above. Tested on: FreeBSD/32 6.2 (duty) FreeBSD/64 6.2 (liberty) Linux/32 2.6 (linux) Solaris/32 2.10 (linew)
* [svn-r13971] Description:Quincey Koziol2007-07-122-4/+11
| | | | | | | | | | | | | | Add --enable-deprecated-symbols configure option, to allow users to remove deprecated public API symbols at configure time. Add bin/make_vers script to bin/reconfigure actions. Run bin/reconfigure to regenerate autotool components. Tested on: Mac OS X/32 10.4.10 (amazon) FreeBSD/32 6.2 (duty) Linux/32 2.6 (kagiso)
* [svn-r13969] Description:Quincey Koziol2007-07-121-0/+348
| | | | | | | | | | | | | | | | Initial checkin of API version macro generation script (bin/make_vers), along with configuration file (src/H5vers.txt) and generated header (src/H5version.h). Right now, no version macros are defined, since the main source code and tests need to be adjusted to pay attention to the macros defined. Also, fixed makefile for generating error header files when used with GNU make. Tested on: Mac OS X/32 10.4.10 (amazon) Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
* [svn-r13902] Purpose:Albert Cheng2007-06-251-3/+2
| | | | | | | Simple code improvement to have more unified code. Tested: in kagiso only since it is a simple script change.
* [svn-r13847] Updated it to use version 2.61 since reconfigure has changed to it.Albert Cheng2007-06-111-1/+1
| | | | | Tested Platform: Kagiso.
* [svn-r13707] Changed the TODAY format to include weekday, matching the one ↵Albert Cheng2007-04-291-1/+1
| | | | | | | | | used by DailyHDF5Test script. Tested: Tested the new format works in all NCSA machines.
* [svn-r13687] Improvement.Albert Cheng2007-04-181-3/+8
| | | | | | | | Added a clarification the environment variables dumping is BEFORE command option parsing. Also added a dumping AFTER the option parsing. Tested: Just eyeballed since it is trival. Let daily tests runs to test it.
* [svn-r13645] Purpouse:Albert Cheng2007-04-111-4/+8
| | | | | | | | | | | | | | | | Bug fix (851) Description: h5vers calls bin/reconfigure which may fail but h5vers does not check its return value. This will result in discrepency between files such as configure and configure.in. Solution: Fixed it by checking exit code of bin/reconfigure and return error if it fails. Tested: osage and kagiso.
* [svn-r13616] This check-in updates the bin/reconfigure file to point to the ↵Mike McGreevy2007-04-094-618/+1009
| | | | | | | | most recent versions of the autotools. Updated autotool versions are: autoconf 2.61, automake 1.10.0, and libtool 1.5.22. Tested on kagiso.
* [svn-r13527] Purpose:HDF Tester2007-03-201-1/+1
| | | | | | | | | | | | | | | | Bug fix. Description: When it reads the allhostfile, it does eliminate comments or blank lines completely, thus it continues to use ssh/rsh even when only the local host is tested. Solution: Changed the sed scripts to eliminate comments and blank lines. Tested: Cobalt by running bin/runtest. Since this is not really library source, the three platforms test does not apply.
* [svn-r13480] featureHDF Tester2007-03-081-5/+13
| | | | | | | | | | | Show disk usage at different stage of the snapshot processes so that we know how much disk are needed in different stage. (This still does not know how big disk usage during make check process since many temporary files are deleted right after the tests finish.) Tested platform: Kagiso.
* [svn-r13438] Purpose: Bug FixLeon Arber2007-03-011-56/+54
| | | | | | Description: Fixed some mistakes introduced yesterday due to a misunderstanding of what sort of datatypes the trace scripts prints out. This commit mostly reverts those changes, adds some new datatypes, and fixes some errors with regards to how the trace script handles pointer datatypes. Since the trace script scans the argument list for the "*" character and handles it appropriately, one should never need to explicitly specify a pointer type in the TypeString hash.
* [svn-r13429] Purpose: Bug FixLeon Arber2007-02-281-53/+60
| | | | | | | | | | | | | | Description: Fix up the bin/trace script. The script has been updated to include all of the new datatypes that have been added to the library. It's output has also been made a bit clearer with regards to the NO TRACE comment scattered throughout the code which prevents tracing information from being added. The script cannot handle functions that take a variable number of arguments nor can it deal with functions whose prototype differs based on certain preprocessor directives. However, there are only 3 instances of this in the library. All other warnings that the script used to generated have been fixed. The script has not actually been run on the source files yet. Tested: smirom
* [svn-r13379] Added 'make help' target. This actually runs a script, ↵James Laird2007-02-231-0/+65
| | | | | | | | bin/makehelp (formatting the output in the makefile was pretty hard). Tested that make still works on kagiso; no code changes at all.
* [svn-r13371] Description:Quincey Koziol2007-02-211-1/+1
| | | | | Tweak e-mail address inserted into files from "hdfhelp@ncsa.uiuc.edu" to "help@hdfgroup.org"
* [svn-r13352] Added support for configure.in type files.Albert Cheng2007-02-201-0/+45
| | | | Tested in kagiso.
* [svn-r13319] Added Caution message of the limit of the -fix feature.Albert Cheng2007-02-151-1/+15
|
* [svn-r13313] Added HTML files fixing feature.Albert Cheng2007-02-141-0/+3
| | | | Tested: kagiso.
* [svn-r13311] Updated copyright notice.Albert Cheng2007-02-1424-98/+121
| | | | | Test: Just visual inspection as these are all comments changes.
* [svn-r13310] Aded recognition of Perl script file s (*.pl) and Makefile.dist.Albert Cheng2007-02-141-1/+5
|
* [svn-r13309] Added some cosmetic hash marks.Albert Cheng2007-02-141-2/+2
| | | | No need to test as it is trival comment.
* [svn-r13307] ImprovementAlbert Cheng2007-02-141-25/+60
| | | | | Separated the file type guessing from UNKNOWN_TYPE into a function itself to be used by other routines later. Added debug printing feature.
* [svn-r13300] Description:Quincey Koziol2007-02-141-0/+2
| | | | | | | | | Add mention of the h5copy & h5mkgrp tools to the release notes. Update documentation for the "--private" flag in release script Tested on: None - just text/comment changes
* [svn-r13268] Added VMS COMMAND files support.Albert Cheng2007-02-081-0/+43
| | | | Tested: kagiso.
* [svn-r13266] Updated it to generate the THG copyright notice.Albert Cheng2007-02-071-2/+3
| | | | | Tested: in kagiso via bin/reconfigure and then svn diff to see the effect.
* [svn-r13265] Changed Makefile to use only the single hash mark style of ↵Albert Cheng2007-02-071-11/+19
| | | | copyright notice.
* [svn-r13261] Updated copyright notices.Albert Cheng2007-02-071-2/+3
| | | | Tested: visual inspection as they are all just comments.
* [svn-r13259] Separated the processing of Shell-script files from Make-style ↵Albert Cheng2007-02-071-2/+30
| | | | | | files. Tested in kagiso.
* [svn-r13256] Updated fortran source code with new THG copyright.Albert Cheng2007-02-071-0/+3
| | | | Tested: kagiso.
* [svn-r13253] Updated all C and C++ style source code files with the THG ↵Albert Cheng2007-02-071-12/+138
| | | | | | | | | copyright notice. Tested platform: Kagiso only since it is only a comment block change. If it works in one machine, it should work in all, I hope. Still need to check the parallel build on copper.
* [svn-r13251] upgrade.Albert Cheng2007-02-071-19/+39
| | | | | | Changed all copyright notice to the THG version. Tested in kagiso.
* [svn-r13204] Purpose:Albert Cheng2007-01-261-1/+20
| | | | | | | | | | | | Improvement. Description: Added the forcemode option. (was in hdf4 for months.) auto-configure have changed the ac_try syntax from 'eval $ac_try' to 'eval "$ac_try"'. Add a new global-substitute to support that too. Platforms Tested: Kagiso only since it is just a shell script simple change.
* [svn-r13196] Upgrade.Albert Cheng2007-01-251-1/+1
| | | | | | | | The execution method changed a little bit. It is not just (eval $ac_try ...) but as (eval "$ac_try") instead. Changed to use the new pattern. Platfrom tested: Red storm.
* [svn-r13194] Bug Fix.HDF Tester2007-01-251-3/+3
| | | | | | | | Updated the DOC_URL with the new Repository URL. Fixed a syntax error in the doc release commands. Tested: kagiso
* [svn-r13193] Added check-vfd to the help page content.Albert Cheng2007-01-241-1/+3
|
* [svn-r13190] Copied the feature of testing check-install after deploy is run ↵Albert Cheng2007-01-241-10/+15
| | | | | | from v1.6. Did some cosmetic changes of the check-vfd option.
* [svn-r13188] Renamed the "archive" option as "releasedir". Changed the ↵Albert Cheng2007-01-241-12/+12
| | | | | | | | | | release directory default to be release_dir in the snapshot base directory so that it is simplier to control release directory destination per snapshot setup. Tested platform: Kagiso.
* [svn-r13168] Purpose:Albert Cheng2007-01-221-15/+22
| | | | | | | | | | | | | | | | | | | | | bug fix. Problem: 1. The last fix using "svn --version" did not work since the source code is shared between different machines which have different svn versions. Changed the code to inspect the .svn/entries content to guess what version of svn uses. From that to decide which GETSVNENTRIES to use. 2. GETSVNENTRIES_14 had two errors: 2.a., % as 1,$ is actually not recognized by ed. Changed that to "1,$s/..." but that got mixed up with $ being a shell meta-character. Changed to use g command instead. (Could have use \ to escape $ but g is cleaner.) 2.b., Some directories have no files but sub-directories. The ed script might end up with an empty file in some steps and ed does not like to run g command with an empty file. Fixed it by adding a dummy blank line. Platforms tested: Osage and copper.
* [svn-r13162] Purpose:Albert Cheng2007-01-211-4/+43
| | | | | | | | | | | | | | | | Upgrade. Description: svn version 1.4.x uses a different format of .svn/entries files as older versions like 1.3.x. chkmanifest could not parse the file correctly. Solution: Created different versions of entries file parsing according to svn version. There is also a bug in grep that matches ./configure with ./fortran/configure. Don't know how to or even possible to nullify the wildcard character effect of '.'. Added a ^ to mark beginning of line. At least it makes it the same length though it would still match with "X/configure". Hopefully this sort of error are easier to detect by human
* [svn-r13047] Description:Quincey Koziol2006-12-121-2/+2
| | | | | | | | | | | | | | Add "attribute exists" internal routine to make verifying that an attribute with the same name doesn't already exist easier. Tweak "trace" script to produce more whitespace in H5TRACE macros, in order to make them easier to read. Minor other whitespace cleanups Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
* [svn-r13045] Description:Quincey Koziol2006-12-121-1/+1
| | | | | | | | | | | | | | Switch from using H5L_index_t/H5L_INDEX_<foo> to H5_index_t/H5_INDEX_<foo> in order to accommodate indices on aspects of attributes as well as links. Add basic support for deleting attributes in dense storage (needs more support/tests for shared attributes in dense storage still). Misc. cleanups, etc. Tested on: Linux/32 2.6 (chicago) Linux/64 2.6 (chicago2)
* [svn-r13044] Updated for the new SVN server location.HDF Tester2006-12-111-1/+1
|
* [svn-r12982] Replaced the word cvs with source.HDF Admin2006-11-271-1/+1
|
* [svn-r12979] Cleanup.Albert Cheng2006-11-271-20/+10
| | | | | | | Removed all old references to cvs commands. Tested: Will be tested by the daily tests.
* [svn-r12940] Description:Quincey Koziol2006-11-171-4/+9
| | | | | | | Add some more types to tracing script and regenerate TRACE macros, etc. Tested on: Linux/32 2.4 (heping)
* [svn-r12929] Hopefully this really is a fix for the tg-login errors.James Laird2006-11-164-996/+586
| | | | | | | | | | | The version of libtool used by HDF5 isn't directly affected by the reconfigure script; instead, libtoolize --force must be used by hand. Libtool was the source of the problem, so rolling its version back to 1.5.14 should solve the issue (at least temporarily). Reconfigure should still work on both heping and kagiso. Tested on heping, kagiso, and tg-login3.