summaryrefslogtreecommitdiff
path: root/devel/nasm
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2008-09-07 14:09:40 +0000
committerwiz <wiz@pkgsrc.org>2008-09-07 14:09:40 +0000
commit68d7bcb8a3d2fa5cf2798711a723aca3d4cdb0d9 (patch)
tree99daa956ed5e7f666984a2a339e7fde0356152c8 /devel/nasm
parent95b2fd2ed7bfeff87b2e56f719580af428f3634f (diff)
downloadpkgsrc-68d7bcb8a3d2fa5cf2798711a723aca3d4cdb0d9.tar.gz
Update to 2.03.01:
2.03.01 ------- * Fix buffer overflow in the listing module. * Fix the handling of hexadecimal escape codes in `...` strings. * The Postscript/PDF documentation has been reformatted. * The -F option now implies -g. 2.03 ---- * Add support for Intel AVX, CLMUL and FMA instructions, including YMM registers. * "dy", "resy" and "yword" for 32-byte operands. * Fix some SSE5 instructions. * Intel INVEPT, INVVPID and MOVBE instructions. * Fix checking for critical expressions when the optimizer is enabled. * Support the DWARF debugging format for ELF targets. * Fix optimizations of signed bytes. * Fix operation on bigendian machines. * Fix buffer overflow in the preprocessor. * SAFESEH support for Win32, IMAGEREL for Win64 (SEH). * %? and %?? to refer to the name of a macro itself. In particular, "%idefine keyword $%?" can be used to make a keyword "disappear". * New options for dependency generation: -MD, -MF, -MP, -MT, -MQ. * New preprocessor directives %pathsearch and %depend; INCBIN reimplemented as a macro. * %include now resolves macros in a sane manner. * %substr can now be used to get other than one-character substrings. * New type of character/string constants, using backquotes (`...`), which support C-style escape sequences. * %defstr and %idefstr to stringize macro definitions before creation. * Fix forward references used in EQU statements.
Diffstat (limited to 'devel/nasm')
-rw-r--r--devel/nasm/Makefile5
-rw-r--r--devel/nasm/distinfo11
-rw-r--r--devel/nasm/patches/patch-ab10
-rw-r--r--devel/nasm/patches/patch-ad13
4 files changed, 12 insertions, 27 deletions
diff --git a/devel/nasm/Makefile b/devel/nasm/Makefile
index e8959d6aaf4..e08c252ac95 100644
--- a/devel/nasm/Makefile
+++ b/devel/nasm/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.36 2008/06/17 14:06:25 tron Exp $
+# $NetBSD: Makefile,v 1.37 2008/09/07 14:09:40 wiz Exp $
-DISTNAME= nasm-2.02
-PKGREVISION= 1
+DISTNAME= nasm-2.03.01
CATEGORIES= devel lang
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nasm/}
EXTRACT_SUFX= .tar.bz2
diff --git a/devel/nasm/distinfo b/devel/nasm/distinfo
index 908102dbe7d..4213fed9523 100644
--- a/devel/nasm/distinfo
+++ b/devel/nasm/distinfo
@@ -1,9 +1,8 @@
-$NetBSD: distinfo,v 1.16 2008/06/17 14:06:25 tron Exp $
+$NetBSD: distinfo,v 1.17 2008/09/07 14:09:40 wiz Exp $
-SHA1 (nasm-2.02.tar.bz2) = 40c5b7bd73fa3f6cdf1712388ef43962185871e8
-RMD160 (nasm-2.02.tar.bz2) = 3205b97be60f05704f4b102496bfd4e331cf9116
-Size (nasm-2.02.tar.bz2) = 729602 bytes
+SHA1 (nasm-2.03.01.tar.bz2) = 45590099abaf8e46f43c430c51ec29174e33c818
+RMD160 (nasm-2.03.01.tar.bz2) = 45af4c74f0f0dc446db57155cf71ed14cca7412c
+Size (nasm-2.03.01.tar.bz2) = 767490 bytes
SHA1 (patch-aa) = 3f05734250b81898f15fc4323d95ec5606c91cb1
-SHA1 (patch-ab) = c38aa7866a741906c6cee34a99b4cc502abdcbb0
+SHA1 (patch-ab) = 0cd095efb69cb1618062127972e61ae5b422345e
SHA1 (patch-ac) = 35b69553570023019193c9de915913b1994dcd5b
-SHA1 (patch-ad) = a6298aea005cbac946a6e7585d11fdb98a8446cb
diff --git a/devel/nasm/patches/patch-ab b/devel/nasm/patches/patch-ab
index 7fc930d407d..e32f0a39972 100644
--- a/devel/nasm/patches/patch-ab
+++ b/devel/nasm/patches/patch-ab
@@ -1,6 +1,6 @@
-$NetBSD: patch-ab,v 1.4 2008/03/12 21:16:12 drochner Exp $
+$NetBSD: patch-ab,v 1.5 2008/09/07 14:09:40 wiz Exp $
---- doc/Makefile.in.orig 2008-02-19 20:08:57.000000000 +0100
+--- doc/Makefile.in.orig 2008-06-17 06:31:16.000000000 +0200
+++ doc/Makefile.in
@@ -8,7 +8,8 @@ prefix = @prefix@
exec_prefix = @exec_prefix@
@@ -23,12 +23,12 @@ $NetBSD: patch-ab,v 1.4 2008/03/12 21:16:12 drochner Exp $
PS2PDF = ps2pdf # Part of GhostScript
SRCS = nasmdoc.src
--OUT = nasm.info nasmdoc.ps nasmdoc.pdf
-+OUT = nasm.info nasmdoc.ps # nasmdoc.pdf
+-OUT = info html nasmdoc.txt nasmdoc.ps nasmdoc.pdf
++OUT = info html nasmdoc.txt nasmdoc.ps # nasmdoc.pdf
# exports
export srcdir
-@@ -79,7 +79,8 @@ spotless: clean
+@@ -88,7 +88,8 @@ spotless: clean
-rm -f nasmdoc*.ps inslist.src
install: all
diff --git a/devel/nasm/patches/patch-ad b/devel/nasm/patches/patch-ad
deleted file mode 100644
index 78f9f00dae9..00000000000
--- a/devel/nasm/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.8 2008/06/17 14:06:25 tron Exp $
-
---- preproc.c.orig 2008-02-19 19:08:57.000000000 +0000
-+++ preproc.c 2008-06-17 15:01:56.000000000 +0100
-@@ -1074,7 +1074,7 @@
- }
-
- for (r = p, s = ourcopy; *r; r++) {
-- if (r > p+MAX_KEYWORD)
-+ if (r >= p+MAX_KEYWORD)
- return tokval->t_type = TOKEN_ID; /* Not a keyword */
- *s++ = tolower(*r);
- }