Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
libcdi
Commits
3fc19527
Commit
3fc19527
authored
Mar 02, 2018
by
Uwe Schulzweida
Browse files
Removed __DATE__ and __TIME__.
parent
28d266d3
Changes
7
Hide whitespace changes
Inline
Side-by-side
app/cdi.c
View file @
3fc19527
...
...
@@ -86,8 +86,7 @@ void version(void)
fprintf
(
stderr
,
" version: %s
\n
"
,
COMP_VERSION
);
#endif
#if defined (USER_NAME) && defined(HOST_NAME) && defined(SYSTEM_TYPE)
fprintf
(
stderr
,
"Compiled: by %s on %s (%s) %s %s
\n
"
,
USER_NAME
,
HOST_NAME
,
SYSTEM_TYPE
,
__DATE__
,
__TIME__
);
fprintf
(
stderr
,
"Compiled: by %s on %s (%s)
\n
"
,
USER_NAME
,
HOST_NAME
,
SYSTEM_TYPE
);
#endif
fprintf
(
stderr
,
"filetype: "
);
...
...
src/cgribexlib.c
View file @
3fc19527
...
...
@@ -13161,7 +13161,7 @@ void encode_dummy(void)
(
void
)
encode_array_unrolled_double
(
0
,
0
,
0
,
NULL
,
NULL
,
0
,
0
,
NULL
);
(
void
)
encode_array_unrolled_float
(
0
,
0
,
0
,
NULL
,
NULL
,
0
,
0
,
NULL
);
}
static
const
char
grb_libvers
[]
=
"1.9.0"
" of ""Jan 22 2018"" ""09:24:03"
;
static
const
char
grb_libvers
[]
=
"1.9.0"
;
const
char
*
cgribexLibraryVersion
(
void
)
{
...
...
src/extralib.c
View file @
3fc19527
...
...
@@ -34,7 +34,7 @@ static int extDefaultNumber = EXT_REAL;
#define LIBVERSION 1.4.0
#define XSTRING(x) #x
#define STRING(x) XSTRING(x)
static
const
char
ext_libvers
[]
=
STRING
(
LIBVERSION
)
" of "
__DATE__
" "
__TIME__
;
static
const
char
ext_libvers
[]
=
STRING
(
LIBVERSION
);
const
char
*
extLibraryVersion
(
void
)
{
...
...
src/file.c
View file @
3fc19527
...
...
@@ -147,7 +147,7 @@ static void file_table_print(void);
#define LIBVERSION 1.8.3
#define XSTRING(x) #x
#define STRING(x) XSTRING(x)
static
const
char
file_libvers
[]
=
STRING
(
LIBVERSION
)
" of "
__DATE__
" "
__TIME__
;
static
const
char
file_libvers
[]
=
STRING
(
LIBVERSION
);
/*
21/05/2004 1.3.2 set min I/O Buffersize to 128k
...
...
src/ieglib.c
View file @
3fc19527
...
...
@@ -28,7 +28,7 @@ static int iegDefaultDprec = 0;
#define LIBVERSION 1.4.0
#define XSTRING(x) #x
#define STRING(x) XSTRING(x)
static
const
char
ieg_libvers
[]
=
STRING
(
LIBVERSION
)
" of "
__DATE__
" "
__TIME__
;
static
const
char
ieg_libvers
[]
=
STRING
(
LIBVERSION
);
const
char
*
iegLibraryVersion
(
void
)
{
...
...
src/servicelib.c
View file @
3fc19527
...
...
@@ -34,7 +34,7 @@ static int srvDefaultDprec = 0;
#define LIBVERSION 1.4.0
#define XSTRING(x) #x
#define STRING(x) XSTRING(x)
static
const
char
srv_libvers
[]
=
STRING
(
LIBVERSION
)
" of "
__DATE__
" "
__TIME__
;
static
const
char
srv_libvers
[]
=
STRING
(
LIBVERSION
);
const
char
*
srvLibraryVersion
(
void
)
{
...
...
src/version.c
View file @
3fc19527
...
...
@@ -9,7 +9,7 @@
*/
#if defined (VERSION)
static
const
char
cdi_libvers
[]
=
VERSION
" of "
__DATE__
" "
__TIME__
;
static
const
char
cdi_libvers
[]
=
VERSION
;
#else
# error "VERSION undefined"
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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