mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
This commit is contained in:
parent
af778e6a07
commit
5259123089
@ -138,7 +138,7 @@ IF(WIN32)
|
||||
OPTION (ENABLE_DLL "Build a Windows DLL." ${BUILD_SHARED_LIBS})
|
||||
IF (ENABLE_DLL)
|
||||
SET(BUILD_DLL ON CACHE BOOL "")
|
||||
ADD_DEFINITIONS(-DDLL_NETCDF)
|
||||
ADD_DEFINITIONS(-DDLL_NETCDF)
|
||||
ADD_DEFINITIONS(-DDLL_EXPORT)
|
||||
ENDIF ()
|
||||
ENDIF()
|
||||
|
@ -241,6 +241,7 @@
|
||||
/* Misc defines copied from autotools config.h.in */
|
||||
#cmakedefine CRAY_STACKSEG_END
|
||||
#cmakedefine DLL_EXPORT
|
||||
#cmakedefine DLL_NETCDF
|
||||
|
||||
#include <ncconfigure.h>
|
||||
#endif
|
||||
|
@ -79,10 +79,11 @@ main(int argc, char **argv)
|
||||
/* Create an enum type. */
|
||||
if (nc_def_enum(ncid, NC_UBYTE, TYPE2_NAME, &typeid)) ERR;
|
||||
num_members = (sizeof cloud_types) / (sizeof cloud_types[0]);
|
||||
for (i = 0; i < num_members; i++)
|
||||
for (i = 0; i < num_members; i++) {
|
||||
if (nc_insert_enum(ncid, typeid, cloud_types[i].name,
|
||||
&cloud_types[i].value)) ERR;
|
||||
|
||||
&cloud_types[i].value))
|
||||
ERR;
|
||||
}
|
||||
/* Declare a station dimension */
|
||||
if (nc_def_dim(ncid, DIM2_NAME, DIM2_LEN, &dimid)) ERR;
|
||||
/* Declare a variable of the enum type */
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,9 @@
|
||||
/* A Bison parser, made by GNU Bison 2.5. */
|
||||
/* A Bison parser, made by GNU Bison 2.4.2. */
|
||||
|
||||
/* Bison interface for Yacc-like parsers in C
|
||||
/* Skeleton interface for Bison's Yacc-like parsers in C
|
||||
|
||||
Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
|
||||
Copyright (C) 1984, 1989-1990, 2000-2006, 2009-2010 Free Software
|
||||
Foundation, Inc.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
|
Loading…
Reference in New Issue
Block a user