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
392d74bc
Commit
392d74bc
authored
Mar 12, 2010
by
Uwe Schulzweida
Browse files
added function taxisDeleteBounds
parent
1df97695
Changes
5
Hide whitespace changes
Inline
Side-by-side
configure
View file @
392d74bc
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for cdi 1.4.3.
1
.
# Generated by GNU Autoconf 2.61 for cdi 1.4.3.
2
.
#
# Report bugs to <http://code.zmaw.de/projects/cdi>.
#
...
...
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME
=
'cdi'
PACKAGE_TARNAME
=
'cdi'
PACKAGE_VERSION
=
'1.4.3.
1
'
PACKAGE_STRING
=
'cdi 1.4.3.
1
'
PACKAGE_VERSION
=
'1.4.3.
2
'
PACKAGE_STRING
=
'cdi 1.4.3.
2
'
PACKAGE_BUGREPORT
=
'http://code.zmaw.de/projects/cdi'
# Factoring default headers for most tests.
...
...
@@ -1258,7 +1258,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat
<<
_ACEOF
\`
configure' configures cdi 1.4.3.
1
to adapt to many kinds of systems.
\`
configure' configures cdi 1.4.3.
2
to adapt to many kinds of systems.
Usage:
$0
[OPTION]... [VAR=VALUE]...
...
...
@@ -1329,7 +1329,7 @@ fi
if
test
-n
"
$ac_init_help
"
;
then
case
$ac_init_help
in
short
|
recursive
)
echo
"Configuration of cdi 1.4.3.
1
:"
;;
short
|
recursive
)
echo
"Configuration of cdi 1.4.3.
2
:"
;;
esac
cat
<<
\
_ACEOF
...
...
@@ -1463,7 +1463,7 @@ fi
test
-n
"
$ac_init_help
"
&&
exit
$ac_status
if
$ac_init_version
;
then
cat
<<
\
_ACEOF
cdi configure 1.4.3.
1
cdi configure 1.4.3.
2
generated by GNU Autoconf 2.61
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
...
...
@@ -1477,7 +1477,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by cdi
$as_me
1.4.3.
1
, which was
It was created by cdi
$as_me
1.4.3.
2
, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ $0
$@
...
...
@@ -2304,7 +2304,7 @@ fi
# Define the identity of the package.
PACKAGE
=
'cdi'
VERSION
=
'1.4.3.
1
'
VERSION
=
'1.4.3.
2
'
cat
>>
confdefs.h
<<
_ACEOF
...
...
@@ -9275,7 +9275,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by cdi
$as_me
1.4.3.
1
, which was
This file was extended by cdi
$as_me
1.4.3.
2
, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES =
$CONFIG_FILES
...
...
@@ -9328,7 +9328,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat
>>
$CONFIG_STATUS
<<
_ACEOF
ac_cs_version="
\\
cdi config.status 1.4.3.
1
cdi config.status 1.4.3.
2
configured by
$0
, generated by GNU Autoconf 2.61,
with options
\\
"`echo "
$ac_configure_args
" | sed 's/^ //; s/[
\\
""
\`\$
]/
\\\\
&/g'`
\\
"
...
...
configure.ac
View file @
392d74bc
# Process this file with autoconf to produce a configure script.
AC_INIT([cdi], [1.4.3.
1
], [http://code.zmaw.de/projects/cdi])
AC_INIT([cdi], [1.4.3.
2
], [http://code.zmaw.de/projects/cdi])
echo "configuring ${PACKAGE_NAME} ${PACKAGE_VERSION}"
...
...
src/cdi.h
View file @
392d74bc
...
...
@@ -752,6 +752,8 @@ void taxisDefRtime(int taxisID, int time);
int
taxisHasBounds
(
int
taxisID
);
void
taxisDeleteBounds
(
int
taxisID
);
void
taxisDefVdateBounds
(
int
taxisID
,
int
vdate_lb
,
int
vdate_ub
);
void
taxisDefVtimeBounds
(
int
taxisID
,
int
vtime_lb
,
int
vtime_ub
);
...
...
src/make_cdilib
View file @
392d74bc
...
...
@@ -155,9 +155,4 @@ cat $srcdir/cfortran.h >> ${PROG}
echo
"#endif"
>>
${
PROG
}
cat
$srcdir
/cdiFortran.c
>>
${
PROG
}
echo
"#undef realloc"
>>
${
PROG
}
echo
"#undef malloc"
>>
${
PROG
}
echo
"#undef calloc"
>>
${
PROG
}
echo
"#undef free"
>>
${
PROG
}
exit
src/taxis.c
View file @
392d74bc
...
...
@@ -616,6 +616,19 @@ int taxisHasBounds(int taxisID)
}
void
taxisDeleteBounds
(
int
taxisID
)
{
static
char
func
[]
=
"taxisDeleteBounds"
;
TAXIS
*
taxisptr
;
taxisptr
=
taxis_to_pointer
(
taxisID
);
taxis_check_ptr
(
func
,
taxisptr
);
taxisptr
->
has_bounds
=
FALSE
;
}
void
taxisCopyTimestep
(
int
taxisID2
,
int
taxisID1
)
{
static
char
func
[]
=
"taxisCopyTimestep"
;
...
...
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