diff options
author | wiz <wiz@pkgsrc.org> | 2003-08-30 15:09:02 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-08-30 15:09:02 +0000 |
commit | b86098bbfd52bd26bbc3af2e26accdea48f8dd8b (patch) | |
tree | 623d16bbd28e27f2d38ea5f6cc103ae7f0e334d6 /devel | |
parent | a476c59da468c66f052681bdef0a9b9cc231fd7f (diff) | |
download | pkgsrc-b86098bbfd52bd26bbc3af2e26accdea48f8dd8b.tar.gz |
Update to 0.98.37:
* Paths given in "-I" switch searched for "incbin"ed as
well as "%include"ed files.
* Added stabs debugging for the ELF output format, patch from
Martin Wawro.
* Fix output/outbin.c to allow origin > 80000000h.
* Make -U switch work.
* Fix the use of relative offsets with explicit prefixes, e.g. "a32 loop foo".
* Remove "backslash()".
* Fix the SMSW and SLDT instructions.
* -O2 and -O3 are no longer aliases for -O5 and -O10. If you mean the
latter, please say so! :)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/nasm-devel/Makefile | 4 | ||||
-rw-r--r-- | devel/nasm-devel/distinfo | 8 | ||||
-rw-r--r-- | devel/nasm-devel/patches/patch-aa | 10 |
3 files changed, 11 insertions, 11 deletions
diff --git a/devel/nasm-devel/Makefile b/devel/nasm-devel/Makefile index 876ddb887f8..2397d9bb3f1 100644 --- a/devel/nasm-devel/Makefile +++ b/devel/nasm-devel/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.12 2003/08/09 10:44:46 seb Exp $ +# $NetBSD: Makefile,v 1.13 2003/08/30 15:09:02 wiz Exp $ # -DISTNAME= nasm-0.98.36 +DISTNAME= nasm-0.98.37 CATEGORIES= devel lang MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nasm/} diff --git a/devel/nasm-devel/distinfo b/devel/nasm-devel/distinfo index 84f84c8f0b6..fb6802f46d3 100644 --- a/devel/nasm-devel/distinfo +++ b/devel/nasm-devel/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.4 2003/06/23 21:13:11 seb Exp $ +$NetBSD: distinfo,v 1.5 2003/08/30 15:09:02 wiz Exp $ -SHA1 (nasm-0.98.36.tar.gz) = 19b8920f7c26b5a9d6cfcfbc7cfc95f68afc8ac0 -Size (nasm-0.98.36.tar.gz) = 624085 bytes -SHA1 (patch-aa) = 05a3d32e4b1be539a595c79cdcd8b9390d50ab65 +SHA1 (nasm-0.98.37.tar.gz) = c51939545d394db2538436561973e7ddfadc7bdc +Size (nasm-0.98.37.tar.gz) = 631560 bytes +SHA1 (patch-aa) = b0a4c91d7448ba630bfb482ab8f97e98753169cb SHA1 (patch-ab) = bbe1d7219dd2e5ade8f97a4f3070bc87d3a7d4b5 diff --git a/devel/nasm-devel/patches/patch-aa b/devel/nasm-devel/patches/patch-aa index 49fd7606e1b..fb08fa1f640 100644 --- a/devel/nasm-devel/patches/patch-aa +++ b/devel/nasm-devel/patches/patch-aa @@ -1,9 +1,9 @@ -$NetBSD: patch-aa,v 1.2 2003/01/13 23:31:12 salo Exp $ +$NetBSD: patch-aa,v 1.3 2003/08/30 15:09:03 wiz Exp $ ---- Makefile.in.orig Fri Sep 13 02:25:44 2002 -+++ Makefile.in Mon Jan 13 23:23:55 2003 -@@ -18,7 +18,7 @@ - CFLAGS = @CFLAGS@ @GCCFLAGS@ -I$(srcdir) -I. +--- Makefile.in.orig Fri Aug 29 21:56:40 2003 ++++ Makefile.in +@@ -18,7 +18,7 @@ CC = @CC@ + CFLAGS = @CFLAGS@ @GCCFLAGS@ @DEFS@ -I$(srcdir) -I. LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ -PERL = perl |