diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-08-06 16:49:34 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2016-11-06 20:31:44 +0100 |
commit | 743b5e91b036b046d0e3ba8047a838993acdb7a9 (patch) | |
tree | a0241787f80fee2faa2ff892f03c9207877e07e1 /dev-lang | |
parent | mail-client/claws-mail: Bump to version 3.14.1 (diff) | |
download | gentoo-743b5e91b036b046d0e3ba8047a838993acdb7a9.tar.gz gentoo-743b5e91b036b046d0e3ba8047a838993acdb7a9.tar.bz2 gentoo-743b5e91b036b046d0e3ba8047a838993acdb7a9.zip |
dev-lang/gforth: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/2167
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch | 30 | ||||
-rw-r--r-- | dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch | 13 | ||||
-rw-r--r-- | dev-lang/gforth/files/gforth.el-gentoo.patch | 37 |
3 files changed, 0 insertions, 80 deletions
diff --git a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch b/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch deleted file mode 100644 index 28ab2e5f572f..000000000000 --- a/dev-lang/gforth/files/0.6.2-c-to-forth-to-c.patch +++ /dev/null @@ -1,30 +0,0 @@ -Index: engine/main.c -=================================================================== -RCS file: /usr/local/lib/cvs-repository/src-master/gforth/engine/main.c,v -retrieving revision 1.139 -retrieving revision 1.140 -diff -u -r1.139 -r1.140 ---- engine/main.c.old 2004/01/20 19:07:41 1.139 -+++ engine/main.c 2004/04/10 00:16:55 1.140 -@@ -70,8 +70,21 @@ - - void engine_callback(Xt* fcall, void * alist) - { -+ /* save global valiables */ -+ Cell *rp = RP; -+ Cell *sp = SP; -+ Float *fp = FP; -+ Address lp = LP; -+ - clist = (va_alist)alist; -- engine(fcall, SP, RP, FP, LP); -+ -+ engine(fcall, sp, rp, fp, lp); -+ -+ /* restore global variables */ -+ RP = rp; -+ SP = sp; -+ FP = fp; -+ LP = lp; - } - #endif
\ No newline at end of file diff --git a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch b/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch deleted file mode 100644 index 30061aa702f7..000000000000 --- a/dev-lang/gforth/files/0.6.2-ppc-configure-gentoo.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff -ur gforth-0.6.2.orig/configure gforth-0.6.2/configure ---- gforth-0.6.2.orig/configure 2003-08-25 03:03:42.000000000 -0500 -+++ gforth-0.6.2/configure 2006-05-12 15:10:52.000000000 -0500 -@@ -3586,7 +3586,8 @@ - fi - - #long long is broken on (at least) gcc-2.95.* for PPC -- test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0 -+ # XXX this was fixed long ago -+# test x$ac_cv_sizeof_long_long = x && ac_cv_sizeof_long_long=0 - ;; - *) - { echo "$as_me:$LINENO: WARNING: Using a generic machine description" >&5 diff --git a/dev-lang/gforth/files/gforth.el-gentoo.patch b/dev-lang/gforth/files/gforth.el-gentoo.patch deleted file mode 100644 index cc98537e766d..000000000000 --- a/dev-lang/gforth/files/gforth.el-gentoo.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- gforth-0.6.2-orig/gforth.el 2003-08-05 11:12:47.000000000 +0200 -+++ gforth-0.6.2/gforth.el 2008-09-06 08:29:44.000000000 +0200 -@@ -61,9 +61,10 @@ - (progn (string-match "^[0-9]+" emacs-version) - (string-to-int (match-string 0 emacs-version))))) - --(defun forth-emacs-older (major minor) -- (or (< emacs-major-version major) -- (and (= emacs-major-version major) (< emacs-minor-version minor)))) -+(eval-when-compile -+ (defun forth-emacs-older (major minor) -+ (or (< emacs-major-version major) -+ (and (= emacs-major-version major) (< emacs-minor-version minor))))) - - ;; Code ripped from `subr.el' for compatability with Emacs versions - ;; prior to 20.1 -@@ -79,8 +80,9 @@ - - ;; `no-error' argument of require not supported in Emacs versions - ;; prior to 20.4 :-( --(defun forth-require (feature) -- (condition-case err (require feature) (error nil))) -+(eval-and-compile -+ (defun forth-require (feature) -+ (condition-case err (require feature) (error nil)))) - - (require 'font-lock) - -@@ -1702,6 +1704,6 @@ - (error "No current process. See variable `forth-process-buffer'")))) - ) ; (memq 'comint features) - --(provide 'forth-mode) -+(provide 'gforth) - - ;;; gforth.el ends here - |