- update to version 0.23
* new patches and libraries and updated specfile according to
Fedora version 20160102
- removed patches
* removing obsolete patches f2c-integer.diff, f2c-malloccheck.diff
f2c.diff, tmpfile-fix.patch and yyparse.patch and usefull, yet
inconsistent f2c-optflags.patch
- added patches
* patches f2c-20110801.patch to use shared library libf2c.so.0.23
and libf2c-20110801.patch to use less memory copied from Fedora
repository
* patch f2c-20180821.patch released to fix optflags parsing
OBS-URL: https://build.opensuse.org/request/show/630749
OBS-URL: https://build.opensuse.org/package/show/devel:languages:misc/f2c?expand=0&rev=7
14 lines
370 B
Diff
14 lines
370 B
Diff
diff --git a/libf2c/arithchk.c b/libf2c/arithchk.c
|
|
index 8e15722..a1a03ac 100644
|
|
--- a/libf2c/arithchk.c
|
|
+++ b/libf2c/arithchk.c
|
|
@@ -110,7 +110,7 @@ icheck(void)
|
|
return 0;
|
|
}
|
|
|
|
-char *emptyfmt = ""; /* avoid possible warning message with printf("") */
|
|
+const char emptyfmt[] = ""; /* avoid possible warning message with printf("") */
|
|
|
|
static Akind *
|
|
ccheck(void)
|