- Fix build under CURRENT
- Fix problems with installed bison - no objection from maintainer in 5 days
This commit is contained in:
parent
575f96958a
commit
d154ecf7f1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=74940
5 changed files with 45 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
|||
|
||||
PORTNAME= binutils
|
||||
PORTVERSION= 2.10.91
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://lev.serebryakov.spb.ru/download/agenda/
|
||||
PKGNAMEPREFIX= mipsel-linux-
|
||||
|
|
10
devel/mipsel-linux-binutils/files/patch-binutils-arparse.y
Normal file
10
devel/mipsel-linux-binutils/files/patch-binutils-arparse.y
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- binutils/arparse.y.orig Sun Jul 11 22:02:15 1999
|
||||
+++ binutils/arparse.y Sun Feb 2 10:44:48 2003
|
||||
@@ -74,6 +74,7 @@
|
||||
|
||||
command_line:
|
||||
command NEWLINE { prompt(); }
|
||||
+ ;
|
||||
|
||||
command:
|
||||
open_command
|
10
devel/mipsel-linux-binutils/files/patch-ld-ldgram.y
Normal file
10
devel/mipsel-linux-binutils/files/patch-ld-ldgram.y
Normal file
|
@ -0,0 +1,10 @@
|
|||
--- ld/ldgram.y.orig Tue Jul 11 05:42:41 2000
|
||||
+++ ld/ldgram.y Sun Feb 2 10:49:25 2003
|
||||
@@ -168,6 +168,7 @@
|
||||
ldlex_popstate();
|
||||
lang_add_assignment(exp_assop($3,$2,$4));
|
||||
}
|
||||
+ ;
|
||||
|
||||
/* SYNTAX WITHIN AN MRI SCRIPT FILE */
|
||||
mri_script_file:
|
13
devel/mipsel-linux-binutils/files/patch-libiberty-strerror.c
Normal file
13
devel/mipsel-linux-binutils/files/patch-libiberty-strerror.c
Normal file
|
@ -0,0 +1,13 @@
|
|||
--- libiberty/strerror.c.orig Mon May 29 13:45:32 2000
|
||||
+++ libiberty/strerror.c Wed Dec 11 21:03:00 2002
|
||||
@@ -465,8 +465,8 @@
|
||||
|
||||
#else
|
||||
|
||||
-extern int sys_nerr;
|
||||
-extern char *sys_errlist[];
|
||||
+extern const int sys_nerr;
|
||||
+extern const char *sys_errlist[];
|
||||
|
||||
#endif
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
--- libiberty/strsignal.c.orig Mon May 29 13:45:32 2000
|
||||
+++ libiberty/strsignal.c Wed Dec 11 21:04:43 2002
|
||||
@@ -247,7 +247,7 @@
|
||||
#else
|
||||
|
||||
#ifdef NSIG
|
||||
-static int sys_nsig = NSIG;
|
||||
+static const int sys_nsig = NSIG;
|
||||
#else
|
||||
#ifdef _NSIG
|
||||
static int sys_nsig = _NSIG;
|
Loading…
Reference in a new issue