FreeBSD Bugzilla – Attachment 85734 Details for
Bug 122018
Update port: fix devel/m4 division of negative numbers bug
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 1.89 KB, created by
Hiroki Sato
on 2008-03-23 16:20:00 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Hiroki Sato
Created:
2008-03-23 16:20:00 UTC
Size:
1.89 KB
patch
obsolete
>Index: Makefile >=================================================================== >RCS file: /home/ncvs/ports/devel/m4/Makefile,v >retrieving revision 1.35 >diff -d -u -I\$FreeBSD:.*\$ -I\$NetBSD:.*\$ -I\$OpenBSD:.*\$ -I\$DragonFly:.*\$ -I\$Id:.*\$ -I\$Translation:.*\$ -I\$hrs:.*\$ -r1.35 Makefile >--- Makefile 30 Sep 2007 20:39:13 -0000 1.35 >+++ Makefile 6 Jan 2008 05:28:09 -0000 >@@ -6,7 +6,8 @@ > # > > PORTNAME= m4 >-PORTVERSION= 1.4.9 >+PORTVERSION= 1.4.10 >+PORTREVISION= 1 > PORTEPOCH= 1 > CATEGORIES= devel > MASTER_SITES= ${MASTER_SITE_GNU} >Index: distinfo >=================================================================== >RCS file: /home/ncvs/ports/devel/m4/distinfo,v >retrieving revision 1.10 >diff -d -u -I\$FreeBSD:.*\$ -I\$NetBSD:.*\$ -I\$OpenBSD:.*\$ -I\$DragonFly:.*\$ -I\$Id:.*\$ -I\$Translation:.*\$ -I\$hrs:.*\$ -r1.10 distinfo >--- distinfo 30 Sep 2007 20:39:13 -0000 1.10 >+++ distinfo 6 Jan 2008 05:28:14 -0000 >@@ -1,3 +1,3 @@ >-MD5 (m4-1.4.9.tar.bz2) = bcfaf47194491a7a8b8d3c2811570b93 >-SHA256 (m4-1.4.9.tar.bz2) = a8e29386374ba0eacbd7b339b97f169603d63a736bd87eee85ed2771ed7c3d29 >-SIZE (m4-1.4.9.tar.bz2) = 609666 >+MD5 (m4-1.4.10.tar.bz2) = 0a35bab2f5d605e08083d7e3cbd4b8b0 >+SHA256 (m4-1.4.10.tar.bz2) = b2b66e645cd566a95d9714848a5d084427f3130ace5c5a0c6cb5544f11b7cbd7 >+SIZE (m4-1.4.10.tar.bz2) = 739154 >Index: files/patch-src-eval.c >=================================================================== >RCS file: files/patch-src-eval.c >diff -N files/patch-src-eval.c >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ files/patch-src-eval.c 5 Jan 2008 20:08:25 -0000 >@@ -0,0 +1,11 @@ >+--- src/eval.c.orig 2007-01-09 16:12:43.000000000 +0000 >++++ src/eval.c >+@@ -721,7 +721,7 @@ mult_term (eval_token et, int32_t *v1) >+ /* Avoid the x86 SIGFPE on INT_MIN / -1. */ >+ *v1 = (int32_t) -(uint32_t) *v1; >+ else >+- *v1 = (int32_t) ((uint32_t) *v1 / (uint32_t) v2); >++ *v1 = *v1 / v2; >+ break; >+ >+ case MODULO:
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 122018
: 85734