pkgsrc-wip/jbmgen/patches/patch-aa
Sergey Svishchev 7c86e57c72 Initial import of jbmgen-1.1.0:
JBMGen is a project to support the ARCLibrary functionality
on the Archos GMini 120 and the Archos GMini 220 portable MP3
players. Currently these require the proprietary MusicMatch software to
generate the database file needed by the ARCLibrary system.
2005-12-04 23:40:59 +00:00

15 lines
433 B
Text

$NetBSD: patch-aa,v 1.1.1.1 2005/12/04 23:40:59 shattered Exp $
Proposed fix for SF bug 1113391 (Dictionary strings not encoded in UTF-8)
--- Dictionary.rb.orig 2004-12-08 02:07:47.000000000 +0000
+++ Dictionary.rb
@@ -37,7 +37,7 @@ class DictionaryString < String
def write(data)
@pos = data.pos
- data.putstring(self)
+ data.putstring(self.unpack("C*").pack("U*"))
end
include Pointable