mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-01-30 16:10:44 +08:00
RELEASE_NOTES cosmetic changes. Fixed man4/Makefile.am so building web-tarball for docs can be manually invoked even without configure --enable-doxygen.
This commit is contained in:
parent
714de8afdc
commit
5a2e018d07
@ -6,7 +6,7 @@ https://www.unidata.ucar.edu/jira/browse/NCF-XXX .
|
||||
|
||||
VERSION COMMENTS
|
||||
------- --------
|
||||
4.2.1 Released 2012-06-15
|
||||
4.2.1-rc1 Released 2012-06-18
|
||||
|
||||
Ported the source distribution to successfully build
|
||||
32- and 64-bit DLLs from source with DAP remote access
|
||||
@ -15,22 +15,21 @@ VERSION COMMENTS
|
||||
Visual Studio.
|
||||
[NCF-112][NCF-54][NCF-57][NCF-65]
|
||||
|
||||
Implemented diskless files for both netcdf classic
|
||||
format and extended (netcdf-4) format. For netcdf
|
||||
classic files, diskless files also support in-memory
|
||||
caching of disk files. For nc_create(), diskless
|
||||
operation performs all operations in memory and then
|
||||
optionally persists the results to a file on close.
|
||||
For nc_open(), diskless operation caches the file
|
||||
in-memory, performs all operations on the memory
|
||||
Implemented diskless files for all netCDF formats. For
|
||||
netcdf classic files, diskless files also support
|
||||
in-memory caching of disk files. For nc_create(),
|
||||
diskless operation performs all operations in memory
|
||||
and then optionally persists the results to a file on
|
||||
close. For nc_open(), diskless operation caches the
|
||||
file in-memory, performs all operations on the memory
|
||||
resident version and then writes all changes back to
|
||||
the original file on close.
|
||||
[NCF-110][NCF-109][NCF-5]
|
||||
|
||||
Added -w and -r options to nccopy to exploit diskless
|
||||
files, result in large speedups for some operations, for
|
||||
example converting unlimited dimension to fixed size
|
||||
or rechunking files for faster access.
|
||||
Added nccopy command-line options to exploit diskless
|
||||
files, resulting in large speedups for some
|
||||
operations, for example converting unlimited dimension
|
||||
to fixed size or rechunking files for faster access.
|
||||
|
||||
Added MMAP support.
|
||||
|
||||
@ -41,22 +40,23 @@ VERSION COMMENTS
|
||||
diskless nccopy, with an example.
|
||||
[NCF-26]
|
||||
|
||||
Fixed bugs in accessing fixed-length string attributes
|
||||
and variable values from non-netCDF-4 HDF5 files.
|
||||
Fixed some netCDF-4 bugs with handling strings in
|
||||
non-netCDF-4 HDF5 files.
|
||||
[NCF-150]
|
||||
|
||||
Fixed bug using nccopy to compress with shuffling that
|
||||
doesn't compress output variables unless they were
|
||||
already compressed in the input file.
|
||||
[NCF-162]
|
||||
|
||||
Fixed bug in 64-bit offset files with large records,
|
||||
due to large last record variable that requires more
|
||||
than 2**32 bytes per record.
|
||||
when last record variable requires more than 2**32
|
||||
bytes per record.
|
||||
[NCF-164]
|
||||
|
||||
Fix bug in which passing a NULL path causes netcdf to fail.
|
||||
[NCF-173]
|
||||
|
||||
Fixed some netCDF-4 bugs with handling strings in
|
||||
non-netCDF-4 HDF5 files.
|
||||
[NCF-150]
|
||||
|
||||
Fixed ncgen bugs in parsing and handling opaque data.
|
||||
|
||||
Fixed ncdump bug, not escaping characters special to CDL
|
||||
|
@ -25,11 +25,6 @@ if BUILD_DOCS
|
||||
# $(directory)/man_page_1.3: doxyfile.stamp
|
||||
# $(directory)/man_page_2.3: doxyfile.stamp
|
||||
|
||||
# Timestamp to prevent rebuilds.
|
||||
doxyfile.stamp:
|
||||
$(DOXYGEN) Doxyfile
|
||||
echo Timestamp > doxyfile.stamp
|
||||
|
||||
# Note: in order to work with distcheck,
|
||||
# the Doxyfile needs to be preprocessed
|
||||
# to insert actual location of $(srcdir)
|
||||
@ -38,13 +33,19 @@ doxyfile.stamp:
|
||||
#Doxyfile.tmp: Doxyfile
|
||||
# sed -e 's|$$[({]rootdir[})]|$(abs_top_srcdir)|g' <Doxyfile > ./Doxyfile.tmp
|
||||
|
||||
CLEANFILES = doxyfile.stamp html latex man
|
||||
|
||||
all-local: doxyfile.stamp
|
||||
clean-local:
|
||||
rm -rf $(top_builddir)/man4/man
|
||||
rm -rf $(top_builddir)/man4/html
|
||||
rm -rf $(top_builddir)/man4/latex
|
||||
endif
|
||||
|
||||
# Timestamp to prevent rebuilds.
|
||||
doxyfile.stamp:
|
||||
$(DOXYGEN) Doxyfile
|
||||
echo Timestamp > doxyfile.stamp
|
||||
|
||||
CLEANFILES = doxyfile.stamp html latex man
|
||||
|
||||
# This builds the docs from source, if necessary, and tars up
|
||||
# everything needed for the website. Run this and copy the resulting
|
||||
@ -53,5 +54,3 @@ clean-local:
|
||||
web-tarball: doxyfile.stamp
|
||||
cd html; tar cf ../netcdf_docs.tar *
|
||||
gzip -f netcdf_docs.tar
|
||||
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user