Accepting request 341931 from devel:tools:compiler
1 OBS-URL: https://build.opensuse.org/request/show/341931 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/bin86?expand=0&rev=24
This commit is contained in:
commit
89f8921e5b
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:52ed4980c0e4b68d2624aadb0ceb0339cb3fd8dd7c2175419d4f77a451846cbe
|
||||
size 703028
|
3
Dev86src-0.16.21.tar.gz
Normal file
3
Dev86src-0.16.21.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:234b110e6df9b7f6843e2ee53473127c2211243a16748f229fc0127845f68d94
|
||||
size 717215
|
@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 1 14:05:47 UTC 2015 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 0.1621
|
||||
* The changelog has not been updated for this version and previous
|
||||
ones
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Nov 1 12:28:18 UTC 2015 - p.drouand@gmail.com
|
||||
|
||||
- Update to version 0.16.20
|
||||
* The changelog has not been updated for this version and previous
|
||||
ones
|
||||
- Update dev86-0.16.17.dif > dev86-0.16.20.dif
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Mar 28 08:45:12 UTC 2015 - mpluskal@suse.com
|
||||
|
||||
|
@ -17,15 +17,15 @@
|
||||
|
||||
|
||||
Name: bin86
|
||||
Version: 0.16.17
|
||||
Version: 0.16.21
|
||||
Release: 0
|
||||
Summary: An 8086 Assembler and Linker
|
||||
License: GPL-2.0+
|
||||
Group: Development/Languages/Other
|
||||
Url: http://v3.sk/~lkundrak/dev86/
|
||||
Source0: http://v3.sk/~lkundrak/dev86/archive/Dev86src-%{version}.tar.gz
|
||||
Source0: http://v3.sk/~lkundrak/dev86/Dev86src-%{version}.tar.gz
|
||||
Source1: bin86-rpmlintrc
|
||||
Patch0: dev86-%{version}.dif
|
||||
Patch0: dev86-0.16.20.dif
|
||||
Patch2: dev86-noelks.patch
|
||||
Patch3: dev86-x86_64.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
@ -2,15 +2,15 @@ Index: Makefile
|
||||
===================================================================
|
||||
--- Makefile.orig 2011-01-31 14:05:24.200314716 +0100
|
||||
+++ Makefile 2011-01-31 14:05:43.854324546 +0100
|
||||
@@ -18,7 +18,7 @@ LIBDIR= $(PREFIX)/lib/bcc
|
||||
@@ -18,7 +18,7 @@
|
||||
INCLDIR= $(PREFIX)/lib/bcc
|
||||
ASLDDIR= $(BINDIR)
|
||||
MANDIR= $(PREFIX)/man
|
||||
-CFLAGS= -O
|
||||
+CFLAGS= -O2 -fno-strength-reduce
|
||||
IFDEFNAME= ifdef
|
||||
|
||||
# Some makes take the last of a list as the default ...
|
||||
all: make.fil
|
||||
Index: ar/ar.c
|
||||
===================================================================
|
||||
--- ar/ar.c.orig 2011-01-31 14:05:24.200314716 +0100
|
||||
@ -53,20 +53,6 @@ Index: bcc/bcc.c
|
||||
char ** prefix;
|
||||
char * saved_cmd;
|
||||
|
||||
@@ -1308,10 +1312,10 @@ void reset_prefix_path()
|
||||
|
||||
for(d=s=ptr; d && *s; s=d)
|
||||
{
|
||||
-#ifdef MAXPATHLEN
|
||||
- char buf[MAXPATHLEN];
|
||||
+#ifdef PATH_MAX
|
||||
+ char buf[PATH_MAX];
|
||||
#else
|
||||
- char buf[1024];
|
||||
+ char buf[MAXPATHLEN];
|
||||
#endif
|
||||
|
||||
free(temp);
|
||||
Index: bcc/dbprintf.c
|
||||
===================================================================
|
||||
--- bcc/dbprintf.c.orig 2011-01-31 14:05:24.200314716 +0100
|
||||
@ -83,8 +69,8 @@ Index: bootblocks/Makefile
|
||||
===================================================================
|
||||
--- bootblocks/Makefile.orig 2011-01-31 14:05:24.200314716 +0100
|
||||
+++ bootblocks/Makefile 2011-01-31 14:05:43.856314460 +0100
|
||||
@@ -38,7 +38,7 @@ BOOTBLOCKS=sysboot.v noboot.v skip.v msd
|
||||
EXTRAS=minix.h zimage.s minix_elks.c lsys.c boot_win.c
|
||||
@@ -42,7 +42,7 @@
|
||||
freedosboot.zip freedos.h
|
||||
|
||||
install: makeboot
|
||||
- install -m 755 -s makeboot $(DIST)$(PREFIX)/bin/makeboot
|
||||
@ -137,9 +123,9 @@ Index: ld/dumps.c
|
||||
/* Copyright (C) 1994 Bruce Evans */
|
||||
|
||||
+#include <string.h>
|
||||
#include "syshead.h"
|
||||
#include "const.h"
|
||||
#include "obj.h"
|
||||
#include "type.h"
|
||||
Index: makefile.in
|
||||
===================================================================
|
||||
--- makefile.in.orig 2011-01-31 14:05:24.201314489 +0100
|
||||
@ -166,16 +152,3 @@ Index: as/type.h
|
||||
char zname[2];
|
||||
char segm[1];
|
||||
char pad1[1];
|
||||
Index: libc/i386sys/Makefile
|
||||
===================================================================
|
||||
--- libc/i386sys/Makefile.orig 2005-01-04 00:00:39.000000000 +0100
|
||||
+++ libc/i386sys/Makefile 2011-01-31 14:06:01.595174380 +0100
|
||||
@@ -12,7 +12,7 @@ DSRC=dirent.c
|
||||
DOBJ=opendir.o closedir.o readdir.o
|
||||
|
||||
ifeq ($(LIB_CPU)-$(LIB_OS),i386-ELKS)
|
||||
-OBJ=$(LOBJ3) $(LOBJ) $(EOBJ) $(DOBJ) setjmp3.o
|
||||
+OBJ=$(LOBJ) $(EOBJ) $(DOBJ) setjmp3.o
|
||||
SYSCALLS=syscalls
|
||||
|
||||
CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)
|
Loading…
Reference in New Issue
Block a user