summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors/jove/files/jove-4.16.0.70.3.1-getline.patch')
-rw-r--r--app-editors/jove/files/jove-4.16.0.70.3.1-getline.patch81
1 files changed, 0 insertions, 81 deletions
diff --git a/app-editors/jove/files/jove-4.16.0.70.3.1-getline.patch b/app-editors/jove/files/jove-4.16.0.70.3.1-getline.patch
deleted file mode 100644
index 98cef6011f8c..000000000000
--- a/app-editors/jove/files/jove-4.16.0.70.3.1-getline.patch
+++ /dev/null
@@ -1,81 +0,0 @@
-http://bugs.gentoo.org/274352
-Fix build failure with glibc-2.10
-
---- jove4.16.0.70-orig/insert.c
-+++ jove4.16.0.70/insert.c
-@@ -504,7 +504,7 @@
- atchar = 0;
- }
-
-- getline(atline->l_dline, genbuf);
-+ get_line(atline->l_dline, genbuf);
- atchar += tchar;
- linecopy(genbuf, atchar, save);
- atline->l_dline = putline(genbuf);
---- jove4.16.0.70-orig/io.c
-+++ jove4.16.0.70/io.c
-@@ -1347,9 +1347,9 @@
-
- void
- #ifdef USE_PROTOTYPES
--getline proto((daddr addr, register char *buf))
-+get_line proto((daddr addr, register char *buf))
- #else
--getline(addr, buf)
-+get_line(addr, buf)
- daddr addr;
- register char *buf;
- #endif
---- jove4.16.0.70-orig/io.h
-+++ jove4.16.0.70/io.h
-@@ -40,7 +40,7 @@
- close_file proto((File *fp)),
- d_cache_init proto((void)),
- file_write proto((char *fname, bool app)),
-- getline proto((daddr addr, char *buf)),
-+ get_line proto((daddr addr, char *buf)),
- lsave proto((void)),
- putreg proto((File *fp,LinePtr line1,int char1,LinePtr line2,int char2,bool makesure)),
- read_file proto((char *file, bool is_insert)),
---- jove4.16.0.70-orig/recover.c
-+++ jove4.16.0.70/recover.c
-@@ -165,7 +165,7 @@
- private char *getblock proto((daddr atl));
-
- void
--getline(tl, buf)
-+get_line(tl, buf)
- daddr tl;
- char *buf;
- {
-@@ -580,7 +580,7 @@
- Nchars = Nlines = 0L;
- while (--nlines >= 0) {
- addr = getaddr(ptrs_fp);
-- getline(addr, buf);
-+ get_line(addr, buf);
- Nlines += 1;
- Nchars += 1 + strlen(buf);
- fputs(buf, out);
---- jove4.16.0.70-orig/util.c
-+++ jove4.16.0.70/util.c
-@@ -280,7 +280,7 @@
- strcpy(buf, linebuf);
- Jr_Len = strlen(linebuf);
- } else
-- getline(line->l_dline, buf);
-+ get_line(line->l_dline, buf);
- return buf;
- }
-
---- jove4.16.0.70-orig/util.h
-+++ jove4.16.0.70/util.h
-@@ -18,7 +18,7 @@
- #define eobp() (lastp(curline) && eolp())
- #define eolp() (linebuf[curchar] == '\0')
- #define firstp(line) ((line) == curbuf->b_first)
--#define getDOT() getline(curline->l_dline, linebuf)
-+#define getDOT() get_line(curline->l_dline, linebuf)
- #define lastp(line) ((line) == curbuf->b_last)
-
- extern UnivPtr