forked from pool/bin86
This commit is contained in:
parent
84d74635b1
commit
7e1370fe32
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Oct 2 18:18:10 CEST 2007 - matz@suse.de
|
||||||
|
|
||||||
|
- Fix compile problem for GCC 4.3, and a harmless array access beyound bounds.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat May 26 23:41:07 CEST 2007 - ro@suse.de
|
Sat May 26 23:41:07 CEST 2007 - ro@suse.de
|
||||||
|
|
||||||
|
11
bin86.spec
11
bin86.spec
@ -11,13 +11,13 @@
|
|||||||
# norootforbuild
|
# norootforbuild
|
||||||
|
|
||||||
Name: bin86
|
Name: bin86
|
||||||
License: Other License(s), see package
|
License: GPL v2 or later
|
||||||
Group: Development/Languages/Other
|
Group: Development/Languages/Other
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 0.16.17
|
Version: 0.16.17
|
||||||
Release: 16
|
Release: 38
|
||||||
Summary: An 8086 Assembler and Linker
|
Summary: An 8086 Assembler and Linker
|
||||||
URL: http://www.cix.co.uk/~mayday/
|
Url: http://www.cix.co.uk/~mayday/
|
||||||
Source: Dev86src-%{version}.tar.bz2
|
Source: Dev86src-%{version}.tar.bz2
|
||||||
Source1: rpmlintrc
|
Source1: rpmlintrc
|
||||||
Patch: dev86-%{version}.dif
|
Patch: dev86-%{version}.dif
|
||||||
@ -105,8 +105,9 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%doc /usr/share/man/man1/dis86.1.gz
|
%doc /usr/share/man/man1/dis86.1.gz
|
||||||
%doc /usr/share/man/man1/elks.1.gz
|
%doc /usr/share/man/man1/elks.1.gz
|
||||||
%doc /usr/share/man/man1/elksemu.1.gz
|
%doc /usr/share/man/man1/elksemu.1.gz
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 02 2007 - matz@suse.de
|
||||||
|
- Fix compile problem for GCC 4.3, and a harmless array access beyound bounds.
|
||||||
* Sat May 26 2007 - ro@suse.de
|
* Sat May 26 2007 - ro@suse.de
|
||||||
- rpmlintrc: dev86 is a devel package, accept devel files there
|
- rpmlintrc: dev86 is a devel package, accept devel files there
|
||||||
* Sun Jan 21 2007 - ro@suse.de
|
* Sun Jan 21 2007 - ro@suse.de
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
ASLDDIR= $(BINDIR)
|
ASLDDIR= $(BINDIR)
|
||||||
MANDIR= $(PREFIX)/man
|
MANDIR= $(PREFIX)/man
|
||||||
-CFLAGS= -O
|
-CFLAGS= -O
|
||||||
+CFLAGS= -O2 -m486 -fno-strength-reduce
|
+CFLAGS= -O2 -march=i486 -fno-strength-reduce
|
||||||
|
|
||||||
# Some makes take the last of a list as the default ...
|
# Some makes take the last of a list as the default ...
|
||||||
all: make.fil
|
all: make.fil
|
||||||
@ -135,3 +135,14 @@
|
|||||||
INSCR=-m 755
|
INSCR=-m 755
|
||||||
|
|
||||||
#ifdef __CYGWIN__
|
#ifdef __CYGWIN__
|
||||||
|
--- as/type.h.mm 2001-06-23 20:01:37.000000000 +0000
|
||||||
|
+++ as/type.h 2007-10-02 16:11:08.000000000 +0000
|
||||||
|
@@ -149,7 +149,7 @@ struct macro_s
|
||||||
|
|
||||||
|
struct sym_listing_s
|
||||||
|
{
|
||||||
|
- char name[SYMLIS_NAMELEN];
|
||||||
|
+ char name[SYMLIS_NAMELEN + 1];
|
||||||
|
char zname[2];
|
||||||
|
char segm[1];
|
||||||
|
char pad1[1];
|
||||||
|
Loading…
Reference in New Issue
Block a user