Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 204976 Details for
Bug 286026
[ebuild] app-text/wv2-0.4.0 Version bump
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch for #elif statements
wv2-0.4.0-elif.patch (text/plain), 764 bytes, created by
Alexey Charkov
on 2009-09-22 21:23:09 UTC
(
hide
)
Description:
Patch for #elif statements
Filename:
MIME Type:
Creator:
Alexey Charkov
Created:
2009-09-22 21:23:09 UTC
Size:
764 bytes
patch
obsolete
>--- src/ustring.cpp.old 2009-09-23 01:05:50.750887617 +0400 >+++ src/ustring.cpp 2009-09-23 01:08:17.317619492 +0400 >@@ -78,9 +78,9 @@ > { > #if defined(HAVE_FUNC_ISINF) > return (isinf(d) == 1); >-#elif HAVE_FUNC_FINITE >+#elif defined(HAVE_FUNC_FINITE) > return finite(d) == 0 && d == d; // ### can we distinguish between + and - ? >-#elif HAVE_FUNC__FINITE >+#elif defined(HAVE_FUNC__FINITE) > return _finite(d) == 0 && d == d; // ### > #else > return false; >@@ -91,9 +91,9 @@ > { > #if defined(HAVE_FUNC_ISINF) > return (isinf(d) == -1); >-#elif HAVE_FUNC_FINITE >+#elif defined(HAVE_FUNC_FINITE) > return finite(d) == 0 && d == d; // ### >-#elif HAVE_FUNC__FINITE >+#elif defined(HAVE_FUNC__FINITE) > return _finite(d) == 0 && d == d; // ### > #else > 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 286026
:
204975
| 204976 |
204977