Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
79b8d2b3
Commit
79b8d2b3
authored
Apr 08, 2008
by
Uwe Schulzweida
Browse files
No commit message
No commit message
parent
eba1e538
Changes
2
Hide whitespace changes
Inline
Side-by-side
config/config.sub
View file @
79b8d2b3
...
...
@@ -994,6 +994,18 @@ case $basic_machine in
basic_machine
=
i386-sequent
os
=
-dynix
;;
sx4
|
sx4-nec
)
basic_machine
=
sx4-nec
os
=
-superux
;;
sx5
|
sx5-nec
)
basic_machine
=
sx5-nec
os
=
-superux
;;
sx6
|
sx6-nec
)
basic_machine
=
sx6-nec
os
=
-superux
;;
t3e
)
basic_machine
=
alphaev5-cray
os
=
-unicos
...
...
src/stream_cdf.c
View file @
79b8d2b3
...
...
@@ -1676,10 +1676,10 @@ void cdfDefCell(int streamID, int gridID)
if
(
nvdimID
!=
UNDEFID
&&
gridInqXboundsPtr
(
gridID
)
)
{
strcat
(
xaxisname
,
"_vertices"
);
int
dimIDs
[
2
];
dimIDs
[
0
]
=
dimID
;
dimIDs
[
1
]
=
nvdimID
;
strcat
(
xaxisname
,
"_vertices"
);
cdf_def_var
(
fileID
,
xaxisname
,
(
nc_type
)
xtype
,
2
,
dimIDs
,
&
ncbxvarid
);
cdf_put_att_text
(
fileID
,
ncxvarid
,
"bounds"
,
strlen
(
xaxisname
),
xaxisname
);
}
...
...
@@ -1699,10 +1699,10 @@ void cdfDefCell(int streamID, int gridID)
if
(
nvdimID
!=
UNDEFID
&&
gridInqYboundsPtr
(
gridID
)
)
{
strcat
(
yaxisname
,
"_vertices"
);
int
dimIDs
[
2
];
dimIDs
[
0
]
=
dimID
;
dimIDs
[
1
]
=
nvdimID
;
strcat
(
yaxisname
,
"_vertices"
);
cdf_def_var
(
fileID
,
yaxisname
,
(
nc_type
)
xtype
,
2
,
dimIDs
,
&
ncbyvarid
);
cdf_put_att_text
(
fileID
,
ncyvarid
,
"bounds"
,
strlen
(
yaxisname
),
yaxisname
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment