Hello,
I have a small fix for the file src/skews.c
from fdutils-5.4-20020222.
The file uses the 'abort' function, which is declared
in the header file "stdlib.h", but does not include this
header file. This can be fixed by the following patch
== patch starts at following line ==========================
--- fdutils-5.4-20020222.orig/src/skews.c
+++ fdutils-5.4-20020222/src/skews.c
@@ -1,5 +1,6 @@
#include <sys/types.h>
#include <stdio.h>
+#include <stdlib.h>
#include "fdutils.h"
#include "superformat.h"
== patch ends at previous line =============================
I hope this helps,
Jochen
--
Omm
(0)-(0)
http://www.mathematik.uni-kl.de/~wwwstoch/voss/privat.html
Hello,
I have a small fix for the file doc/texi-linearize.c
from fdutils--5.4-20020222.
The file uses the function 'exit', which is declared
in the header file "stdlib.h", but does not include this
header file. This can be fixed by the following patch.
== patch starts at following line ==========================
--- fdutils-5.4-20020222.orig/doc/texi-linearize.c
+++ fdutils-5.4-20020222/doc/texi-linearize.c
@@ -1,5 +1,6 @@
#include <stdio.h>
#include <string.h>
+#include <stdlib.h>
FILE *my_open(char *directory, char *file)
== patch ends at previous line =============================
I hope this helps,
Jochen
--
Omm
(0)-(0)
http://www.mathematik.uni-kl.de/~wwwstoch/voss/privat.html
Hello,
there is a minor typo in the file doc/man-warning.texi
from the fdutils-5.4-20020222 distribution.
== patch starts at next line ===============================
--- fdutils-5.4-20020222.orig/doc/man-warning.texi
+++ fdutils-5.4-20020222/doc/man-warning.texi
@@ -3,7 +3,7 @@
This manpage has been automatically generated from fdutils's texinfo
documentation. However, this process is only approximative, and some
items, such as crossreferences, footnotes and indices are lost in this
-translation process. Indeed, this items have no appropriate
+translation process. Indeed, these items have no appropriate
representation in the manpage format. Moreover, only the items specific
to each command have been translated, and the general information about
fdutils has been dropped in the manpage version. Thus I strongly advise
== patch ends at previous line =============================
Additionally I think that this warning is unnecessarily
long. Maybe at least the instruction on how to generate different
version of the documentation could be removed from the manual
pages and be replaced by a notice similar to "... see the file doc/README
from the fdutils source distribution ..."?
I hope this helps,
Jochen
--
Omm
(0)-(0)
http://www.mathematik.uni-kl.de/~wwwstoch/voss/privat.html
Hello,
looking at the src/mediaprm file from fdutils-5.4-20020222
I notice that the last two entries have no colon after
the name. I do not know whether this causes problems,
but it looks strange.
If there is no special reason for the ommitted colons
this could be changed by the following patch
== patch starts at next line ===============================
--- fdutils-5.4-20020222.orig/src/mediaprm
+++ fdutils-5.4-20020222/src/mediaprm
@@ -779,8 +779,8 @@
SS DD sect=18 cyl=35 ssize=256
# TO7 (Thomson), sides 1 and 2
-"TO7-1"
+"TO7-1":
SS DD sect=16 ssize=256
-"TO7-2"
+"TO7-2":
SS DD sect=16 ssize=256 swapsides
== patch ends at previous line =============================
Jochen
--
Omm
(0)-(0)
http://www.mathematik.uni-kl.de/~wwwstoch/voss/privat.html