diff options
-rw-r--r-- | devel/fortran-utils/files/patch-fpr_fpr.c (renamed from devel/fortran-utils/files/patch-fpr.c) | 20 | ||||
-rw-r--r-- | devel/fortran-utils/files/patch-fsplit_fsplit.c | 29 |
2 files changed, 39 insertions, 10 deletions
diff --git a/devel/fortran-utils/files/patch-fpr.c b/devel/fortran-utils/files/patch-fpr_fpr.c index 7b6cb76e7a01..d20d71704d75 100644 --- a/devel/fortran-utils/files/patch-fpr.c +++ b/devel/fortran-utils/files/patch-fpr_fpr.c @@ -1,6 +1,6 @@ ---- fpr/fpr.c.orig 1994-05-27 14:31:21.000000000 +0200 -+++ fpr/fpr.c 2012-12-03 10:50:48.000000000 +0100 -@@ -45,6 +45,7 @@ +--- fpr/fpr.c.orig 1994-05-27 12:31:21 UTC ++++ fpr/fpr.c +@@ -45,6 +45,7 @@ static char sccsid[] = "@(#)fpr.c 8.1 (B #endif /* not lint */ #include <stdio.h> @@ -8,7 +8,7 @@ #define BLANK ' ' #define TAB '\t' -@@ -80,12 +81,13 @@ +@@ -80,12 +81,13 @@ COLUMN *line; int maxpos; int maxcol; @@ -27,7 +27,7 @@ main() { register int ch; -@@ -124,7 +126,7 @@ +@@ -124,7 +126,7 @@ main() while ( ! ateof) { @@ -36,7 +36,7 @@ ch = getchar(); if (ch == EOF) { -@@ -176,6 +178,7 @@ +@@ -176,6 +178,7 @@ main() @@ -44,7 +44,7 @@ init() { register COLUMN *cp; -@@ -210,7 +213,8 @@ +@@ -210,7 +213,8 @@ init() @@ -54,7 +54,7 @@ { register int i; register char ateol; -@@ -283,8 +287,8 @@ +@@ -283,8 +287,8 @@ gettext() @@ -65,7 +65,7 @@ { register char ch; register int oldmax; -@@ -340,6 +344,7 @@ +@@ -340,6 +344,7 @@ int col; @@ -73,7 +73,7 @@ flush() { register int i; -@@ -403,6 +408,7 @@ +@@ -403,6 +408,7 @@ flush() diff --git a/devel/fortran-utils/files/patch-fsplit_fsplit.c b/devel/fortran-utils/files/patch-fsplit_fsplit.c new file mode 100644 index 000000000000..3d83d2ec8671 --- /dev/null +++ b/devel/fortran-utils/files/patch-fsplit_fsplit.c @@ -0,0 +1,29 @@ +--- fsplit/fsplit.c.orig 2000-01-30 21:03:32 UTC ++++ fsplit/fsplit.c +@@ -97,7 +97,7 @@ struct stat sbuf; + + #define trim(p) while (*p == ' ' || *p == '\t') p++ + +-int getline __P((void)); ++int get_line __P((void)); + void get_name __P((char *, int)); + char *functs __P((char *)); + int lend __P((void)); +@@ -171,7 +171,7 @@ char **argv; + errx(1, "can not open %s", x); + nflag = 0; + rv = 0; +- while (getline() > 0) { ++ while (get_line() > 0) { + rv = 1; + fprintf(ofp, "%s", buf); + if (lend()) /* look for an 'end' statement */ +@@ -263,7 +263,7 @@ int letters; + } + + int +-getline() ++get_line() + { + register char *ptr; + |