diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2020-04-22 11:06:18 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2020-04-22 14:16:44 +0200 |
commit | 35c433af44eb2c1bafe6dc285bfcf32125294ee1 (patch) | |
tree | 991e3a0f17722796fd6df0d671a504dadffc4969 /community/drawterm/fix-mips-build.patch | |
parent | 6445e223938c6a6930217459c4c1f0809049f927 (diff) | |
download | aports-35c433af44eb2c1bafe6dc285bfcf32125294ee1.tar.bz2 aports-35c433af44eb2c1bafe6dc285bfcf32125294ee1.tar.xz |
community/drawterm: upgrade to 0_hg20200421
* Change version number scheme
* Remove fix-mips-build.patch as build is disabled on mips anyhow
Diffstat (limited to 'community/drawterm/fix-mips-build.patch')
-rw-r--r-- | community/drawterm/fix-mips-build.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/community/drawterm/fix-mips-build.patch b/community/drawterm/fix-mips-build.patch deleted file mode 100644 index 8efd801626..0000000000 --- a/community/drawterm/fix-mips-build.patch +++ /dev/null @@ -1,37 +0,0 @@ ---- a/posix-mips/Makefile -+++ b/posix-mips/Makefile -@@ -15,4 +15,4 @@ - - tas.$O: tas.s - ln -sf tas.s tas.S -- $(CC) -c -o tas.$O -mips3 tas.S -+ $(CC) -c -o tas.$O tas.S ---- a/posix-mips/tas.s -+++ b/posix-mips/tas.s -@@ -1,19 +1,17 @@ --#include <machine/regdef.h> -- - .globl tas - .ent tas 2 - - tas: - .set noreorder - 1: -- ori t1, zero, 12345 /* t1 = 12345 */ -- ll t0, (a0) /* t0 = *a0 */ -- sc t1, (a0) /* *a0 = t1 if *a0 hasn't changed; t1=success */ -- beq t1, zero, 1b /* repeat if *a0 did change */ -- nop -+ li $t1, 12345 /* t1 = 12345 */ -+ ll $t0, ($a0) /* t0 = *a0 */ -+ sc $t1, ($a0) /* *a0 = t1 if *a0 hasn't changed; t1=success */ -+ beqz $t1, 1b /* repeat if *a0 did change */ -+ nop - -- j $31 /* return */ -- or v0, t0, zero /* set return value on way out */ -+ jr $ra /* return */ -+ move $v0, $t0 /* set return value on way out */ - - .set reorder - .end tas |