Commit Graph

2541 Commits

Author SHA1 Message Date
Ward Fisher
5a08ce0f3a Removed stray Doxygen tags, added some more explicit information to the binary installer created for Windows. 2014-12-04 12:42:55 -07:00
Ward Fisher
dee3d4acd9 Corrected a typo that only affected linux, but not OSX or Windows. 2014-12-02 14:12:31 -07:00
Ward Fisher
d3e1f2a82a Modified Settings used to generate Binary installer for Windows, so that the user is given the option of adding the binaries to the system path. 2014-12-02 13:58:23 -07:00
Quincey Koziol
b15cfe9373 Merge branch 'master' into NCF-177 2014-12-02 08:36:51 -06:00
Quincey Koziol
f9c64a7e89 Merge remote-tracking branch 'upstream/master' 2014-12-02 08:36:15 -06:00
Quincey Koziol
86d47170ee Update with tests from ticket. 2014-12-02 08:35:36 -06:00
Ward Fisher
c437746a01 Added a section in the Windows information re: which versions of the dependencies are packaged. 2014-12-01 13:47:20 -07:00
Quincey Koziol
2917a6a123 Interim checkpoint of working code. 2014-12-01 08:52:53 -06:00
Quincey Koziol
45acef3ed4 Merge branch 'master' into NCF-177 2014-11-30 23:50:29 -06:00
Quincey Koziol
eb00c73ced Merge remote-tracking branch 'upstream/master' 2014-11-30 23:49:35 -06:00
Quincey Koziol
d2ed77f95f Merge remote-tracking branch 'upstream/master' into NCF-177 2014-11-30 23:49:24 -06:00
Quincey Koziol
7a9e209147 Merge branch 'master' into NCF-177
Conflicts:
	libsrc4/nc4hdf.c
2014-11-30 23:37:19 -06:00
dmh
7de1f7bef8 oc synch 2014-11-30 20:30:23 -07:00
Quincey Koziol
3fd74fbee7 Merge remote-tracking branch 'upstream/master' 2014-11-24 09:40:27 -06:00
Quincey Koziol
8769d58b1d Initial fix for further rename issue. 2014-11-24 09:36:58 -06:00
dmh
a2e9fb854b synch with base oc library 2014-11-21 16:20:44 -07:00
Ward Fisher
777dc3e834 Removed a number of syntax errors, dead links in the FAQ. 2014-11-21 15:18:30 -07:00
Ward Fisher
8130d278c3 Added link to the JIRA issue for the netcdf-fortran remote bootstrap entry. 2014-11-20 15:59:32 -07:00
Ward Fisher
8de2a68a30 Renamed option used to enable fortran bootstrap behavior. Updated RELEASE_NOTES.md with information re: this new option. 2014-11-20 15:56:11 -07:00
Ward Fisher
f20baaf19c Added custom targets for autotools-based builds. Added some checks to the postinstall script template so that it would exit if git wasn't found on the system. Also changed it to specify LIBS in case of static-only build. 2014-11-19 16:57:51 -07:00
Ward Fisher
c0bc240a3a Reworked a little bit. Now two new targets are added, build-netcdf-fortran and install-netcdf-fortran. The latter can be run as root, if need be. 2014-11-19 14:29:32 -07:00
Ward Fisher
df016a3a55 Added netcdf-fortran/ to .gitignore. 2014-11-18 15:34:30 -07:00
Ward Fisher
57b5f15297 First pass at script to install netcdf-fortran automatically is completed. 2014-11-18 15:33:16 -07:00
Ward Fisher
aba5029ac0 Reorganized postinstall scripts. 2014-11-18 12:52:41 -07:00
Ward Fisher
7947e31f74 Further work on getting an install-fortran option working. Cmake only so far, and now works with static AND shared builds. 2014-11-18 10:50:19 -07:00
Ward Fisher
04b8640efe Updated configuration for automatically building netcdf fortran. 2014-11-18 10:50:19 -07:00
Ward Fisher
a4724f7aee Initial attempt at getting netcdf-c to automatically build and install netcdf-fortran. 2014-11-18 10:50:19 -07:00
Ward Fisher
2ab47745cc Fixed a different set of potential memory leaks paired with the previous ones. 2014-11-11 15:24:38 -07:00
Ward Fisher
436b53da9b Merge branch 'master' of https://github.com/Unidata/netcdf-c 2014-11-11 15:18:12 -07:00
Ward Fisher
2f7ffacac4 Fixed a handful of potential memory leaks reported by clang static analysis. 2014-11-11 15:17:57 -07:00
Ward Fisher
c433272676 Fixed a handful of potential memory leaks reported by clang static analysis. 2014-11-11 15:17:08 -07:00
Ward Fisher
074603293f Corrected several static analysis issues related to potential null pointer dereferences and memory leaks. 2014-11-11 15:05:55 -07:00
Ward Fisher
aa51e82aac Merge pull request #91 from petejan/master
ncgen: Fix java generation for nan values, use Float.NaN and Double.NaN
2014-11-10 12:34:12 -07:00
Peter Jansen
7aa25f4e7b Fix java generation for nan values, use Float.NaN and Double.NaN 2014-11-08 10:11:53 -03:00
Ward Fisher
8948d5d9ed Merge branch 'petejan-master' 2014-11-07 13:18:00 -07:00
Peter Jansen
ba5d3ca50a fix infinite loop seg fault, where codify called jcodify called codify, should have been jcodify calling ccodify 2014-11-07 14:46:04 -03:00
Quincey Koziol
5749c5178a Remove useless assignment. 2014-11-07 08:26:46 -06:00
Quincey Koziol
c6716f3f82 Merge remote-tracking branch 'upstream/master' 2014-11-07 08:17:35 -06:00
Quincey Koziol
1b6b779b09 Revert changes to CTest config file.
This reverts commit f9d1d550f5.
2014-11-07 08:10:10 -06:00
Ward Fisher
9f9de5a493 Added a fix for a 'garbage/undefined value' bug reported by clang. in var.c, when varp->shape was being allocated, it was not being initialized properly and as a result, in some circustances, could potentially be dereferenced and evaluated without having a proper value. It is now initialized to 0. Hopefully this does not cause a problem. All the tests continue to pass, but I'm leaving a verbose comment here in case there is a knock-on problem discovered somewhere down the line. 2014-11-06 14:43:09 -07:00
Quincey Koziol
64343f20cb Revert "Correct handling for HDF5 releases w/o MPI-POSIX VFD."
This reverts commit f9d1d550f5.
2014-11-06 08:59:39 -06:00
Quincey Koziol
f9d1d550f5 Correct handling for HDF5 releases w/o MPI-POSIX VFD. 2014-11-06 08:50:27 -06:00
Quincey Koziol
740a7bfc21 Merge branch 'master' of https://github.com/qkoziol/netcdf-c
Conflicts:
	CTestConfig.cmake.in
2014-11-05 08:32:07 -06:00
Ward Fisher
a90c9829a2 Corrected issue where libraries were being linked against multiple times. 2014-11-03 10:43:43 -07:00
Ward Fisher
6c512cad1c Merge pull request #89 from xantares/patch-1
Fix ENABLE_RPC cmake option syntax
2014-10-31 10:27:23 -06:00
xantares
c59911a8e5 Fix ENABLE_RPC cmake option syntax 2014-10-31 16:53:06 +01:00
Ward Fisher
3fadeb8ff1 Fixed several memory leaks reported by static analysis. 2014-10-29 16:09:54 -06:00
Ward Fisher
69d487e57a Added DESTDIR compatibility for netcdf builds that generate a dll via autotools. 2014-10-29 16:09:37 -06:00
dmh
481b9ac8ee The CDL example and the associated text
in docs/cdl.dox do not show and describe
how declare the type of an attribute.
So modified the example and text to
clarify. Also clarified how type inference
works for attributes whose value is a string.
2014-10-27 16:24:22 -06:00
Ward Fisher
13be04f699 Updated minimum version reference for hdf5. 2014-10-27 14:13:56 -06:00