FreeBSD Bugzilla – Attachment 186032 Details for
Bug 222028
net-im/sayaka: unbreak build with vala 0.36
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
sayaka.diff (text/plain), 1.70 KB, created by
Carlos J. Puga Medina
on 2017-09-03 15:44:17 UTC
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Carlos J. Puga Medina
Created:
2017-09-03 15:44:17 UTC
Size:
1.70 KB
patch
obsolete
>Index: net-im/sayaka/files/patch-SixelConverter.vala >=================================================================== >--- net-im/sayaka/files/patch-SixelConverter.vala (nonexistent) >+++ net-im/sayaka/files/patch-SixelConverter.vala (working copy) >@@ -0,0 +1,29 @@ >+--- SixelConverter.vala.orig 2016-09-25 11:53:37 UTC >++++ SixelConverter.vala >+@@ -90,7 +90,7 @@ public class SixelConverter >+ public void SetPaletteFixed8() >+ { >+ for (int i = 0; i < 8; i++) { >+- uint8 R = (uint8)((i ) & 0x01) * 255; >++ uint8 R = (uint8)((i >> 0) & 0x01) * 255; >+ uint8 G = (uint8)((i >> 1) & 0x01) * 255; >+ uint8 B = (uint8)((i >> 2) & 0x01) * 255; >+ >+@@ -131,7 +131,7 @@ public class SixelConverter >+ // ANSI 16 è²ã¨ãã£ã¦ãè²å®ä½ã¯å®è£ ä¾åãããã >+ >+ for (int i = 0; i < 16; i++) { >+- uint8 R = (uint8)((i ) & 0x01); >++ uint8 R = (uint8)((i >> 0) & 0x01); >+ uint8 G = (uint8)((i >> 1) & 0x01); >+ uint8 B = (uint8)((i >> 2) & 0x01); >+ uint8 I = (uint8)((i >> 3) & 0x01); >+@@ -153,7 +153,7 @@ public class SixelConverter >+ for (int i = 0; i < 256; i++) { >+ Palette[i, 0] = (uint8)(((i >> 5) & 0x07) * 255 / 7); >+ Palette[i, 1] = (uint8)(((i >> 2) & 0x07) * 255 / 7); >+- Palette[i, 2] = (uint8)(((i ) & 0x03) * 255 / 3); >++ Palette[i, 2] = (uint8)(((i >> 0) & 0x03) * 255 / 3); >+ } >+ PaletteCount = 256; >+ } > >Property changes on: net-im/sayaka/files/patch-SixelConverter.vala >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property
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 222028
: 186032