Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 357732 Details for
Bug 483454
x11-drivers/xf86-input-mouse-1.9.0: build fails when using gcc4.6
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
xf86-input-mouse-1.9.0-gcc46-workaround.patch
xf86-input-mouse-1.9.0-gcc46-workaround.patch (text/plain), 713 bytes, created by
Jose Torres
on 2013-09-03 06:26:01 UTC
(
hide
)
Description:
xf86-input-mouse-1.9.0-gcc46-workaround.patch
Filename:
MIME Type:
Creator:
Jose Torres
Created:
2013-09-03 06:26:01 UTC
Size:
713 bytes
patch
obsolete
>diff -Nur xf86-input-mouse-1.8.1.orig/src/bsd_mouse.c xf86-input-mouse-1.8.1/src/bsd_mouse.c >--- xf86-input-mouse-1.8.1.orig/src/bsd_mouse.c 2012-05-28 09:01:45.000000000 +0900 >+++ xf86-input-mouse-1.8.1/src/bsd_mouse.c 2012-09-20 22:27:36.167583000 +0900 >@@ -139,10 +139,10 @@ > { > int i; > >- for (i = 0; internalNames[i]; i++) >+ for (i = 0; i < (sizeof(internalNames) / sizeof(internalNames[0])) - 1; i++) > if (xf86NameCmp(protocol, internalNames[i]) == 0) > return TRUE; >- for (i = 0; miscNames[i]; i++) >+ for (i = 0; i < (sizeof(miscNames) / sizeof (miscNames[0])) - 1; i++) > if (xf86NameCmp(protocol, miscNames[i]) == 0) > return TRUE; > return FALSE;
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 483454
:
357728
|
357730
| 357732