svn commit: r316818 - in head/devel/jwasm: . files

Martin Wilke miwi at FreeBSD.org
Mon Apr 29 14:20:21 UTC 2013


Author: miwi
Date: Mon Apr 29 14:20:19 2013
New Revision: 316818
URL: http://svnweb.freebsd.org/changeset/ports/316818

Log:
  - Update to 210
  
  PR:		178158
  Submitted by:	Ports Fury

Added:
  head/devel/jwasm/files/
  head/devel/jwasm/files/patch-H__expreval.h   (contents, props changed)
  head/devel/jwasm/files/patch-H__parser.h   (contents, props changed)
  head/devel/jwasm/files/patch-exprval.c   (contents, props changed)
  head/devel/jwasm/files/patch-parser.c   (contents, props changed)
Modified:
  head/devel/jwasm/Makefile
  head/devel/jwasm/distinfo   (contents, props changed)

Modified: head/devel/jwasm/Makefile
==============================================================================
--- head/devel/jwasm/Makefile	Mon Apr 29 14:19:40 2013	(r316817)
+++ head/devel/jwasm/Makefile	Mon Apr 29 14:20:19 2013	(r316818)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	jwasm
-PORTVERSION=	209
+PORTVERSION=	210
 CATEGORIES=	devel
 MASTER_SITES=	http://www.japheth.de/Download/JWasm/
 DISTNAME=	JWasm${PORTVERSION}s

Modified: head/devel/jwasm/distinfo
==============================================================================
--- head/devel/jwasm/distinfo	Mon Apr 29 14:19:40 2013	(r316817)
+++ head/devel/jwasm/distinfo	Mon Apr 29 14:20:19 2013	(r316818)
@@ -1,2 +1,2 @@
-SHA256 (JWasm209s.zip) = 94eaffdb9a6ae5c78340d05f4407518b32e42e6bb924dd9b8308de90eba1d619
-SIZE (JWasm209s.zip) = 880165
+SHA256 (JWasm210s.zip) = 8d9a5ac95fa07a8e935423f3d1e44127c79d873e380f04d1ce8e1a65ca7daafd
+SIZE (JWasm210s.zip) = 939008

Added: head/devel/jwasm/files/patch-H__expreval.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/jwasm/files/patch-H__expreval.h	Mon Apr 29 14:20:19 2013	(r316818)
@@ -0,0 +1,10 @@
+--- H/expreval.h.orig
++++ H/expreval.h
+@@ -130,6 +130,7 @@
+     EXPF_IN_SQBR   = 8   /* private flag, used inside expreval.c only */
+ };
+ 
++extern void         EmitConstError( const struct expr * );
+ extern ret_code     EvalOperand( int *, struct asm_tok[], int, struct expr *, uint_8 );
+ extern void         ExprEvalInit( void );
+ 

Added: head/devel/jwasm/files/patch-H__parser.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/jwasm/files/patch-H__parser.h	Mon Apr 29 14:20:19 2013	(r316818)
@@ -0,0 +1,10 @@
+--- H/parser.h.orig
++++ H/parser.h
+@@ -302,7 +302,6 @@
+ extern ret_code   MemtypeFromSize( int, enum memtype * );
+ extern int        SizeFromRegister( int );
+ extern ret_code   GetLangType( int *, struct asm_tok[], enum lang_type * );
+-extern void       EmitConstError( const struct expr * );
+ 
+ extern void       sym_add_table( struct symbol_queue *, struct dsym * );
+ extern void       sym_remove_table( struct symbol_queue *, struct dsym * );

Added: head/devel/jwasm/files/patch-exprval.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/jwasm/files/patch-exprval.c	Mon Apr 29 14:20:19 2013	(r316818)
@@ -0,0 +1,19 @@
+--- expreval.c.orig
++++ expreval.c
+@@ -79,6 +79,16 @@
+     LS_FAR32  = 0xFF06,
+ };
+ 
++void EmitConstError( const struct expr *opnd )
++/********************************************/
++{
++    if ( opnd->hlvalue != 0 )
++        EmitErr( CONSTANT_VALUE_TOO_LARGE_EX, opnd->hlvalue, opnd->value64 );
++    else
++        EmitErr( CONSTANT_VALUE_TOO_LARGE, opnd->value64 );
++    return;
++}
++
+ static const uint_16 tbaseptr[] = { T_BP, T_EBP
+ #if AMD64_SUPPORT
+ , T_RBP

Added: head/devel/jwasm/files/patch-parser.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/jwasm/files/patch-parser.c	Mon Apr 29 14:20:19 2013	(r316818)
@@ -0,0 +1,19 @@
+--- parser.c.orig
++++ parser.c
+@@ -787,16 +787,6 @@
+     return( NOT_ERROR );
+ }
+ 
+-void EmitConstError( const struct expr *opnd )
+-/********************************************/
+-{
+-    if ( opnd->hlvalue != 0 )
+-        EmitErr( CONSTANT_VALUE_TOO_LARGE_EX, opnd->hlvalue, opnd->value64 );
+-    else
+-        EmitErr( CONSTANT_VALUE_TOO_LARGE, opnd->value64 );
+-    return;
+-}
+-
+ /* get an immediate operand without a fixup.
+  * output:
+  * - ERROR: error


More information about the svn-ports-all mailing list