source: codes/icosagcm/branches/SATURN_DYNAMICO/NETCDF4/include/netcdf_meta.h

Last change on this file was 308, checked in by ymipsl, 10 years ago

Add compiled NETCDF4 library for occigen

YM

  • Property svn:eol-style set to native
File size: 2.1 KB
Line 
1/*! \file netcdf_meta.h
2 *
3 * Meta information for libnetcdf which can be used by other packages which
4 * depend on libnetcdf.
5 *
6 * This file is automatically generated by the build system
7 * at configure time, and contains information related to
8 * how libnetcdf was built.  It will not be required to
9 * include this file unless you want to probe the capabilities
10 * of libnetcdf. This should ideally only happen when configuring
11 * a project which depends on libnetcdf.  At configure time,
12 * the dependant project can set its own macros which can be used
13 * in conditionals.
14 *
15 * Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
16 * 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
17 * University Corporation for Atmospheric Research/Unidata.
18 * See \ref copyright file for more info.
19 */
20
21#ifndef NETCDF_META_H
22#define NETCDF_META_H
23
24#define NC_VERSION_MAJOR 4 /*!< netcdf-c major version. */
25#define NC_VERSION_MINOR 3 /*!< netcdf-c minor version. */
26#define NC_VERSION_PATCH 3 /*!< netcdf-c patch version. */
27#define NC_VERSION_NOTE  "-rc2" /*!< netcdf-c note. May be blank. */
28
29/*! netcdf-c version string.
30 *
31 * The format of the netcdf-c version string is as follows:
32 * \code
33 * NC_VERSION_MAJOR.NC_VERSION_MINOR.NC_VERSION_PATCH.NC_VERSION_NOTE
34 * \endcode
35 * Note that the trailing NC_VERSION_NOTE may be empty. It serves for
36 * identifiers such as '-rc1', etc.
37 */
38#define NC_VERSION       "4.3.3-rc2"
39
40#define NC_HAS_NC2       1       /*!< API version 2 support. */
41#define NC_HAS_NC4       1       /*!< API version 4 support. */
42#define NC_HAS_HDF4      0      /*!< hdf4 support. */
43#define NC_HAS_HDF5      1      /*!< hdf5 support. */
44#define NC_HAS_SZIP      0      /*!< szip support (hdf5 only) */
45#define NC_HAS_DAP       0       /*!< DAP support. */
46#define NC_HAS_DISKLESS  1  /*!< diskless support. */
47#define NC_HAS_MMAP      0      /*!< mmap support. */
48#define NC_HAS_JNA       0       /*!< jna support. */
49#define NC_HAS_PNETCDF   0   /*!< pnetcdf support. */
50#define NC_HAS_PARALLEL  1  /*!< parallel IO support via hdf5. */
51
52
53
54#endif
Note: See TracBrowser for help on using the repository browser.