]> git.pld-linux.org Git - packages/fuse.git/commitdiff
- missing files from fuse CVS
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 18 Apr 2007 11:58:39 +0000 (11:58 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    fuse-missing.patch -> 1.1

fuse-missing.patch [new file with mode: 0644]

diff --git a/fuse-missing.patch b/fuse-missing.patch
new file mode 100644 (file)
index 0000000..d270f54
--- /dev/null
@@ -0,0 +1,2347 @@
+--- fuse-0.8.0/widget/mkfusefont.pl.orig       1970-01-01 01:00:00.000000000 +0100
++++ fuse-0.8.0/widget/mkfusefont.pl    2007-04-18 12:12:30.716148000 +0200
+@@ -0,0 +1,73 @@
++#!/usr/bin/perl -w
++
++# mkfusefont.pl: generate Fuse-format font from a .sbf file
++#                (ASCII representation of a .psf (console font) file)
++# Copyright (c) 2004 Darren Salt
++
++# $Id$
++
++# This program is free software; you can redistribute it and/or modify it
++# under the terms of the GNU General Public Licence as published by the Free
++# Software Foundation; either version 2 of the Licence, or (at your option)
++# any later version.
++
++# This program is distributed in the hope that it will be useful, but WITHOUT
++# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
++# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public Licence for
++# more details.
++
++# You should have received a copy of the GNU General Public Licence along
++# with this program; if not, write to the Free Software Foundation, Inc., 49
++# Temple Place, Suite 330, Boston, MA 02111-1307 USA
++
++# Author contact information:
++
++# E-mail: linux@youmustbejoking.demon.co.uk
++
++use strict;
++use POSIX;
++
++die "sorry, I output binary data\n" if isatty( *STDOUT );
++
++my $line;
++
++MAIN: while( defined( $line = <> ) ) {
++  chomp $line;
++  next unless $line =~ /^\[U\+([[:xdigit:]]{4})]$/;
++
++  my @codes = ( hex $1 );
++  while( 1 ) {
++    last MAIN unless defined( $line = <> );
++
++    chomp $line;
++
++    next MAIN if $line eq '' or $line =~ /^[[:space:]]*#/;
++    last if $line =~ /^[.0]+$/;
++    die unless $line =~ /^\[U\+([[:xdigit:]]{4})]$/;
++
++    push @codes, hex $1;
++  }
++  @codes = grep { $_ < 0xD800 || ($_ >= 0xE000 && $_ < 0xFFFE) } @codes;
++
++  my @pixmap = ( '','','','', '','','','', '','','','', '','','' );
++  my $i;
++
++  for( $i = 0; $i < 8; $i++ ) {
++    chomp $line;
++    die unless $line =~ /^[.0]+$/;
++    $line =~ tr/.0/01/;
++    die "pixmap line too long" if length ($line) > 15;
++    $line .= '0' x ( 15 - length $line );
++    for( my $j = 0; $j < 15; $j++ ) { $pixmap[$j] .= substr( $line, $j, 1 ); }
++
++    die unless $i == 7 or defined( $line = <> );
++  }
++
++  my $left = 0;
++  pop @pixmap while @pixmap && $pixmap[ -1 ] eq '00000000';
++  while( @pixmap && $pixmap[0] eq '00000000' ) { $left++; shift @pixmap; }
++  my @bitmap = map { oct ('0b'.$_) } @pixmap;
++
++  print pack( "C*", $_ & 255, $_ >> 8, $left | @bitmap << 4, @bitmap )
++    foreach @codes;
++}
+--- fuse-0.8.0/widget/fuse.font.sbf.orig       1970-01-01 01:00:00.000000000 +0100
++++ fuse-0.8.0/widget/fuse.font.sbf    2007-04-18 12:21:41.775551892 +0200
+@@ -0,0 +1,2232 @@
++# . = reset pixel
++# 0 = set pixel
++# X = no whitespace on right (end of first line only) (not yet implemented)
++#
++# Left-hand whitespace must be preserved for codes U+0000 through U+007E
++# (except U+0060) and for U+00A3 and U+00A9; additionally, these characters
++# must be no more than 8 pixels wide.
++#
++# Other characters do not have left-hand white space, and may be up to 15
++# pixels wide.
++
++[U+0000]
++.
++...000
++..0..00
++..0.0.0
++..00..0
++...000
++.
++.000000
++
++[U+0001]
++.
++...00
++..0.0
++....0
++....0
++..00000
++.
++.000000
++
++[U+0002]
++.
++..0000
++......0
++...000
++..0
++..00000
++.
++.000000
++
++[U+0003]
++.
++...000
++..0...0
++....00
++..0...0
++...000
++.
++.000000
++
++[U+0004]
++.
++....0
++...00
++..0.0
++..00000
++....0
++.
++.000000
++
++[U+0005]
++.
++..00000
++..0
++..0000
++......0
++..0000
++.
++.000000
++
++[U+0006]
++.
++...000
++..0
++..0000
++..0...0
++...000
++.
++.000000
++
++[U+0007]
++.
++..00000
++......0
++.....0
++....0
++....0
++.
++.000000
++
++[U+0008]
++.
++....0
++...0
++..00000
++...0
++....0
++.
++.000000
++
++[U+0009]
++.
++....0
++.....0
++..00000
++.....0
++....0
++.
++.000000
++
++[U+000A]
++.
++....0
++....0
++..0.0.0
++...000
++....0
++.
++.000000
++
++[U+000B]
++.
++....0
++...000
++..0.0.0
++....0
++....0
++.
++.000000
++
++[U+000C]
++.
++....0
++...00
++..00000
++...00
++....0
++.
++.000000
++
++[U+000D]
++.
++......0
++......0
++...0..0
++..0000
++...0
++.
++.000000
++
++[U+000E]
++.
++.....0
++....0.0
++....00
++....0
++..0..00
++.
++.000000
++
++[U+000F]
++.
++.....00
++....0
++....00
++....0
++..0.0
++.
++.000000
++
++[U+0010]
++.
++..00000
++....0
++....0
++....0
++..00000
++.
++.000000
++
++[U+0011]
++.
++..0000
++..0...0
++..0000
++..0
++..0
++.
++.000000
++
++[U+0012]
++.
++..00000
++..0
++..0000
++..0
++..0
++.
++.000000
++
++[U+0013]
++.
++..0000
++..0...0
++..0000
++..0...0
++..0000
++.
++.000000
++
++[U+0014]
++.
++..0...0
++..00.00
++..00.00
++..00.00
++..0...0
++.
++.000000
++
++[U+0015]
++.
++...000
++..0...0
++..0...0
++..0...0
++...000
++.
++.000000
++
++[U+0016]
++.
++...000
++..0.000
++..0.000
++..0
++...000
++.
++.000000
++
++[U+0017]
++.
++...0..0
++....0.0
++..00000
++....0.0
++...0..0
++.
++.000000
++
++[U+0018]
++.
++..0..0
++.00.0.0
++..0..0
++..0.0.0
++..0..0
++.
++.000000
++
++[U+0019]
++.
++..0..0
++.00.0.0
++..0..00
++..0...0
++..0.00
++.
++.000000
++
++[U+001A]
++.
++..0.00
++.00...0
++..0..00
++..0.0.0
++..0..00
++.
++.000000
++
++[U+001B]
++.
++..0.0
++.00.0
++..0.00
++..0.0.0
++..0.00
++.
++.000000
++
++[U+001C]
++.
++..0
++.00..00
++..0.0
++..0.0
++..0..00
++.
++.000000
++
++[U+001D]
++.
++..0...0
++.00...0
++..0..00
++..0.0.0
++..0..00
++.
++.000000
++
++[U+001E]
++.
++..0..0
++.00.0.0
++..0.00
++..0.0
++..0..00
++.
++.000000
++
++[U+001F]
++.
++..0..00
++.00.0
++..0.00
++..0.0
++..0.0
++.
++.000000
++
++[U+0020]
++[U+00A0]
++.
++.
++.
++.
++.
++.
++.
++.
++
++[U+0021]
++.
++...0
++...0
++...0
++...0
++.
++...0
++.
++
++[U+0022]
++.
++..0..0
++..0..0
++.
++.
++.
++.
++.
++
++[U+0023]
++.
++..0..0
++.000000
++..0..0
++..0..0
++.000000
++..0..0
++.
++
++[U+0024]
++.
++....0
++..00000
++..0.0
++..00000
++....0.0
++..00000
++....0
++
++[U+0025]
++.
++.00...0
++.00..0
++....0
++...0
++..0..00
++.0...00
++.
++
++[U+0026]
++.
++...0
++..0.0
++...0
++..0.0.0
++.0...0
++..000.0
++.
++
++[U+0027]
++.
++....0
++...0
++.
++.
++.
++.
++.
++
++[U+0028]
++.
++.....0
++....0
++....0
++....0
++....0
++.....0
++.
++
++[U+0029]
++.
++..0
++...0
++...0
++...0
++...0
++..0
++.
++
++[U+002A]
++.
++.
++...0.0
++....0
++..00000
++....0
++...0.0
++.
++
++[U+002B]
++.
++.
++....0
++....0
++..00000
++....0
++....0
++.
++
++[U+002C]
++.
++.
++.
++.
++.
++....0
++....0
++...0
++
++[U+002D]
++.
++.
++.
++.
++..00000
++.
++.
++.
++
++[U+002E]
++.
++.
++.
++.
++.
++...00
++...00
++.
++
++[U+002F]
++.
++.
++......0
++.....0
++....0
++...0
++..0
++.
++
++[U+0030]
++.
++..0000
++.0...00
++.0..0.0
++.0.0..0
++.00...0
++..0000
++.
++
++[U+0031]
++.
++...00
++..0.0
++....0
++....0
++....0
++..00000
++.
++
++[U+0032]
++.
++..0000
++.0....0
++......0
++..0000
++.0
++.000000
++.
++
++[U+0033]
++.
++..0000
++.0....0
++....00
++......0
++.0....0
++..0000
++.
++
++[U+0034]
++.
++....0
++...00
++..0.0
++.0..0
++.000000
++....0
++.
++
++[U+0035]
++.
++.000000
++.0
++.00000
++......0
++.0....0
++..0000
++.
++
++[U+0036]
++.
++..0000
++.0
++.00000
++.0....0
++.0....0
++..0000
++.
++
++[U+0037]
++.
++.000000
++......0
++.....0
++....0
++...0
++...0
++.
++
++[U+0038]
++.
++..0000
++.0....0
++..0000
++.0....0
++.0....0
++..0000
++.
++
++[U+0039]
++.
++..0000
++.0....0
++.0....0
++..00000
++......0
++..0000
++.
++
++[U+003A]
++.
++.
++.
++...0
++.
++.
++...0
++.
++
++[U+003B]
++.
++.
++...0
++.
++.
++...0
++...0
++..0
++
++[U+003C]
++.
++.
++.....0
++....0
++...0
++....0
++.....0
++.
++
++[U+003D]
++.
++.
++.
++..00000
++.
++..00000
++.
++.
++
++[U+003E]
++.
++.
++...0
++....0
++.....0
++....0
++...0
++.
++
++[U+003F]
++.
++..0000
++.0....0
++.....0
++....0
++.
++....0
++.
++
++[U+0040]
++.
++..0000
++.0..0.0
++.0.0.00
++.0.0000
++.0
++..0000
++.
++
++[U+0041]
++.
++..0000
++.0....0
++.0....0
++.000000
++.0....0
++.0....0
++.
++
++[U+0042]
++.
++.00000
++.0....0
++.00000
++.0....0
++.0....0
++.00000
++.
++
++[U+0043]
++.
++..0000
++.0....0
++.0
++.0
++.0....0
++..0000
++.
++
++[U+0044]
++.
++.0000
++.0...0
++.0....0
++.0....0
++.0...0
++.0000
++.
++
++[U+0045]
++.
++.000000
++.0
++.00000
++.0
++.0
++.000000
++.
++
++[U+0046]
++.
++.000000
++.0
++.00000
++.0
++.0
++.0
++.
++
++[U+0047]
++.
++..0000
++.0....0
++.0
++.0..000
++.0....0
++..0000
++.
++
++[U+0048]
++.
++.0....0
++.0....0
++.000000
++.0....0
++.0....0
++.0....0
++.
++
++[U+0049]
++.
++..00000
++....0
++....0
++....0
++....0
++..00000
++.
++
++[U+004A]
++.
++......0
++......0
++......0
++.0....0
++.0....0
++..0000
++.
++
++[U+004B]
++.
++.0...0
++.0..0
++.000
++.0..0
++.0...0
++.0....0
++.
++
++[U+004C]
++.
++.0
++.0
++.0
++.0
++.0
++.000000
++.
++
++[U+004D]
++.
++.0....0
++.00..00
++.0.00.0
++.0....0
++.0....0
++.0....0
++.
++
++[U+004E]
++.
++.0....0
++.00...0
++.0.0..0
++.0..0.0
++.0...00
++.0....0
++.
++
++[U+004F]
++.
++..0000
++.0....0
++.0....0
++.0....0
++.0....0
++..0000
++.
++
++[U+0050]
++.
++.00000
++.0....0
++.0....0
++.00000
++.0
++.0
++.
++
++[U+0051]
++.
++..0000
++.0....0
++.0....0
++.0.0..0
++.0..0.0
++..0000
++.
++
++[U+0052]
++.
++.00000
++.0....0
++.0....0
++.00000
++.0...0
++.0....0
++.
++
++[U+0053]
++.
++..0000
++.0
++..0000
++......0
++.0....0
++..0000
++.
++
++[U+0054]
++.
++0000000
++...0
++...0
++...0
++...0
++...0
++.
++
++[U+0055]
++.
++.0....0
++.0....0
++.0....0
++.0....0
++.0....0
++..0000
++.
++
++[U+0056]
++.
++.0....0
++.0....0
++.0....0
++.0....0
++..0..0
++...00
++.
++
++[U+0057]
++.
++.0....0
++.0....0
++.0....0
++.0....0
++.0.00.0
++..0..0
++.
++
++[U+0058]
++.
++.0....0
++..0..0
++...00
++...00
++..0..0
++.0....0
++.
++
++[U+0059]
++.
++0.....0
++.0...0
++..0.0
++...0
++...0
++...0
++.
++
++[U+005A]
++.
++.000000
++.....0
++....0
++...0
++..0
++.000000
++.
++
++[U+005B]
++.
++....000
++....0
++....0
++....0
++....0
++....000
++.
++
++[U+005C]
++.
++.
++.0
++..0
++...0
++....0
++.....0
++.
++
++[U+005D]
++.
++.000
++...0
++...0
++...0
++...0
++.000
++.
++
++[U+005E]
++.
++...0
++..000
++.0.0.0
++...0
++...0
++...0
++.
++
++[U+005F]
++.
++.
++.
++.
++.
++.
++.
++00000000
++
++[U+0060]
++..0
++...0
++....0
++.
++.
++.
++.
++.
++
++[U+0061]
++.
++.
++..000
++.....0
++..0000
++.0...0
++..0000
++.
++
++[U+0062]
++.
++..0
++..0
++..0000
++..0...0
++..0...0
++..0000
++.
++
++[U+0063]
++.
++.
++...000
++..0
++..0
++..0
++...000
++.
++
++[U+0064]
++.
++.....0
++.....0
++..0000
++.0...0
++.0...0
++..0000
++.
++
++[U+0065]
++.
++.
++..000
++.0...0
++.0000
++.0
++..0000
++.
++
++[U+0066]
++.
++....00
++...0
++...00
++...0
++...0
++...0
++.
++
++[U+0067]
++.
++.
++..0000
++.0...0
++.0...0
++..0000
++.....0
++..000
++
++[U+0068]
++.
++.0
++.0
++.0000
++.0...0
++.0...0
++.0...0
++.
++
++[U+0069]
++.
++...0
++.
++..00
++...0
++...0
++..000
++.
++
++[U+006A]
++.
++.....0
++.
++.....0
++.....0
++.....0
++..0..0
++...00
++
++[U+006B]
++.
++..0
++..0.0
++..00
++..00
++..0.0
++..0..0
++.
++
++[U+006C]
++.
++...0
++...0
++...0
++...0
++...0
++....00
++.
++
++[U+006D]
++.
++.
++.00.0
++.0.0.0
++.0.0.0
++.0.0.0
++.0.0.0
++.
++
++[U+006E]
++.
++.
++.0000
++.0...0
++.0...0
++.0...0
++.0...0
++.
++
++[U+006F]
++.
++.
++..000
++.0...0
++.0...0
++.0...0
++..000
++.
++
++[U+0070]
++.
++.
++.0000
++.0...0
++.0...0
++.0000
++.0
++.0
++
++[U+0071]
++.
++.
++..0000
++.0...0
++.0...0
++..0000
++.....0
++.....00
++
++[U+0072]
++.
++.
++...000
++..0
++..0
++..0
++..0
++.
++
++[U+0073]
++.
++.
++..000
++.0
++..000
++.....0
++.0000
++.
++
++[U+0074]
++.
++...0
++..000
++...0
++...0
++...0
++....00
++.
++
++[U+0075]
++.
++.
++.0...0
++.0...0
++.0...0
++.0...0
++..000
++.
++
++[U+0076]
++.
++.
++.0...0
++.0...0
++..0.0
++..0.0
++...0
++.
++
++[U+0077]
++.
++.
++.0...0
++.0.0.0
++.0.0.0
++.0.0.0
++..0.0
++.
++
++[U+0078]
++.
++.
++.0...0
++..0.0
++...0
++..0.0
++.0...0
++.
++
++[U+0079]
++.
++.
++.0...0
++.0...0
++.0...0
++..0000
++.....0
++..000
++
++[U+007A]
++.
++.
++.00000
++....0
++...0
++..0
++.00000
++.
++
++[U+007B]
++.
++....000
++....0
++..00
++....0
++....0
++....000
++.
++
++[U+007C]
++.
++....0
++....0
++....0
++....0
++....0
++....0
++.
++
++[U+007D]
++.
++.000
++...0
++....00
++...0
++...0
++.000
++.
++
++[U+007E]
++.
++...0.0
++..0.0
++.
++.
++.
++.
++.
++
++[U+00A1]
++.
++.
++0
++.
++0
++0
++0
++0
++
++[U+00A2]
++.
++..0
++.000
++0.0
++0.0
++0.0
++.000
++..0
++
++[U+00A3]
++.
++..000
++.0...0
++0000
++.0
++.0
++000000
++.
++
++[U+00A4]
++.
++0...0
++.000
++0...0
++0...0
++.000
++0...0
++.
++
++[U+00A5]
++.
++0...0
++.0.0
++..0
++.000
++..0
++..0
++.
++
++[U+00A6]
++.
++0
++0
++0
++.
++0
++0
++0
++
++[U+00A7]
++.
++.000
++0
++.000
++0...0
++.000
++....0
++.000
++
++[U+00A8]
++00..00
++.
++.
++.
++.
++.
++.
++.
++
++[U+00A9]
++..0000
++.0....0
++0..00..0
++0.0....0
++0.0....0
++0..00..0
++.0....0
++..0000
++
++[U+00AA]
++.
++000
++..00
++00.0
++.000
++.
++0000
++.
++
++[U+00AB]
++.
++..0...0
++.0...0
++0...0
++0...0
++.0...0
++..0...0
++.
++
++[U+00AC]
++.
++00000
++....0
++.
++.
++.
++.
++.
++
++[U+00AD]
++.
++.
++.
++00000
++.
++.
++.
++.
++
++[U+00AE]
++..0000
++.0....0
++0.000..0
++0.0..0.0
++0.000..0
++0.0..0.0
++.0....0
++..0000
++
++[U+00AF]
++.
++00000
++.
++.
++.
++.
++.
++.
++
++[U+00B0]
++.
++.00
++0..0
++.00
++.
++.
++.
++.
++
++[U+00B1]
++.
++..0
++..0
++00000
++..0
++..0
++00000
++.
++
++[U+00B2]
++.
++000
++...0
++.00
++0000
++.
++.
++.
++
++[U+00B3]
++.
++0000
++..0
++...0
++000
++.
++.
++.
++
++[U+00B4]
++.00
++00
++.
++.
++.
++.
++.
++.
++
++[U+00B5]
++.
++.
++.0...0
++.0...0
++.0...0
++.0...0
++.0000
++0
++
++[U+00B6]
++.
++.....0
++.0000
++00..0
++00..0
++.0..0
++.0000
++.
++
++[U+00B7]
++.
++.
++.
++00
++00
++.
++.
++.
++
++[U+00B8]
++.
++.
++.
++.
++.
++.
++.00
++00
++
++[U+00B9]
++.
++.0
++00
++.0
++000
++.
++.
++.
++
++[U+00BA]
++.
++.00
++0..0
++0..0
++.00
++.
++0000
++.
++
++[U+00BB]
++.
++0...0
++.0...0
++..0...0
++..0...0
++.0...0
++0...0
++.
++
++[U+00BC]
++.
++.0
++00
++.0.0
++.0.0.0
++...000
++.....0
++.
++
++[U+00BD]
++.
++.0
++00
++.0.00
++.0...0
++....0
++...000
++.
++
++[U+00BE]
++.
++000
++.0
++..0.0
++00..0.0
++....000
++......0
++.
++
++[U+00BF]
++.
++.
++..0
++.
++..0
++.0
++0....0
++.0000
++
++[U+00C0]
++..0
++...0
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C1]
++...0
++..0
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C2]
++..00
++00..00
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C3]
++..0.0
++.0.0
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C4]
++.0..0
++.
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C5]
++..00
++.0..0
++.0000
++0....0
++000000
++0....0
++0....0
++.
++
++[U+00C6]
++.
++.00000000
++0...0
++0...0000
++00000
++0...0
++0...00000
++.
++
++[U+00C7]
++.
++.0000
++0....0
++0
++0
++0....0
++.0000
++00
++
++[U+00C8]
++..0
++...0
++000000
++0
++00000
++0
++000000
++.
++
++[U+00C9]
++...0
++..0
++000000
++0
++00000
++0
++000000
++.
++
++[U+00CA]
++..00
++00..00
++000000
++0
++00000
++0
++000000
++.
++
++[U+00CB]
++.0..0
++.
++000000
++0
++00000
++0
++000000
++.
++
++[U+00CC]
++.0
++..0
++00000
++..0
++..0
++..0
++00000
++.
++
++[U+00CD]
++...0
++..0
++00000
++..0
++..0
++..0
++00000
++.
++
++[U+00CE]
++..0
++00.00
++00000
++..0
++..0
++..0
++00000
++.
++
++[U+00CF]
++0...0
++.
++00000
++..0
++..0
++..0
++00000
++.
++
++[U+00D0]
++.
++.0000
++.0...0
++0000..0
++.0....0
++.0...0
++.0000
++.
++
++[U+00D1]
++..0.0
++.0.0
++00...0
++0.0..0
++0..0.0
++0...00
++0....0
++.
++
++[U+00D2]
++..0
++...0
++.0000
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00D3]
++...0
++..0
++.0000
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00D4]
++..00
++00..00
++.0000
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00D5]
++..0.0
++.0.0
++.0000
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00D6]
++.0..0
++.
++.0000
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00D7]
++.
++.
++.
++0.0
++.0
++0.0
++.
++.
++
++[U+00D8]
++.....0
++.0000
++0...00
++0..0.0
++0.0..0
++00...0
++.0000
++0
++
++[U+00D9]
++..0
++0..0.0
++0....0
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00DA]
++...0
++0.0..0
++0....0
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00DB]
++..00
++00..00
++.
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00DC]
++.0..0
++0....0
++0....0
++0....0
++0....0
++0....0
++.0000
++.
++
++[U+00DD]
++....0
++0..0..0
++.0...0
++..0.0
++...0
++...0
++...0
++.
++
++[U+00DE]
++.
++000
++.0000
++.0...0
++.0000
++.0
++000
++.
++
++[U+00DF]
++.
++.0000
++0....0
++0.000
++0....0
++0....0
++0.000
++0
++
++[U+00E0]
++.0
++..0
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E1]
++...0
++..0
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E2]
++..0
++00.00
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E3]
++..0.0
++.0.0
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E4]
++.0.0
++.
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E5]
++.00
++0..0
++.000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00E6]
++.
++.
++.00000
++...0..0
++.00000
++0..0
++.000000
++.
++
++[U+00E7]
++.
++.
++.000
++0
++0
++0
++.000
++00
++
++[U+00E8]
++.0
++..0
++.000
++0...0
++0000
++0
++.0000
++.
++
++[U+00E9]
++...0
++..0
++.000
++0...0
++0000
++0
++.0000
++.
++
++[U+00EA]
++..0
++00.00
++.000
++0...0
++0000
++0
++.0000
++.
++
++[U+00EB]
++.0.0
++.
++.000
++0...0
++0000
++0
++.0000
++.
++
++[U+00EC]
++0
++.0
++.
++00
++.0
++.0
++000
++.
++
++[U+00ED]
++..0
++.0
++.
++00
++.0
++.0
++000
++.
++
++[U+00EE]
++.0
++0.0
++.
++00
++.0
++.0
++000
++.
++
++[U+00EF]
++.
++0.0
++.
++00
++.0
++.0
++000
++.
++
++[U+00F0]
++.
++...0
++..0000
++....0
++.0000
++0...0
++.0000
++.
++
++[U+00F1]
++..0.0
++.0.0
++.
++0000
++0...0
++0...0
++0...0
++.
++
++[U+00F2]
++.0
++..0
++.
++.000
++0...0
++0...0
++.000
++.
++
++[U+00F3]
++...0
++..0
++.
++.000
++0...0
++0...0
++.000
++.
++
++[U+00F4]
++..0
++00.00
++.
++.000
++0...0
++0...0
++.000
++.
++
++[U+00F5]
++..0.0
++.0.0
++.
++.000
++0...0
++0...0
++.000
++.
++
++[U+00F6]
++.
++.0.0
++.
++.000
++0...0
++0...0
++.000
++.
++
++[U+00F7]
++.
++.
++..0
++.
++00000
++.
++..0
++.
++
++[U+00F8]
++.
++....0
++.000
++0..00
++0.0.0
++00..0
++.000
++0
++
++[U+00F9]
++.0
++..0
++.
++0...0
++0...0
++0...0
++.000
++.
++
++[U+00FA]
++...0
++..0
++.
++0...0
++0...0
++0...0
++.000
++.
++
++[U+00FB]
++..0
++00.00
++.
++0...0
++0...0
++0...0
++.000
++.
++
++[U+00FC]
++.
++.0.0
++.
++0...0
++0...0
++0...0
++.000
++.
++
++[U+00FD]
++...0
++..0
++0...0
++0...0
++0...0
++.0000
++....0
++.000
++
++[U+00FE]
++.
++0
++0
++0000
++0...0
++0000
++0
++0
++
++[U+00FF]
++.0.0
++.
++0...0
++0...0
++0...0
++.0000
++....0
++.000
++
+--- fuse-0.8.0/ui/fb/fbmouse.h.orig    1970-01-01 01:00:00.000000000 +0100
++++ fuse-0.8.0/ui/fb/fbmouse.h 2007-04-18 13:31:32.962394018 +0200
+@@ -0,0 +1,33 @@
++/* fbmouse.h: Linux mouse handling code (requires kernel input layer)
++   Copyright (c) 2004 Darren Salt
++
++   $Id$
++
++   This program is free software; you can redistribute it and/or modify
++   it under the terms of the GNU General Public License as published by
++   the Free Software Foundation; either version 2 of the License, or
++   (at your option) any later version.
++
++   This program is distributed in the hope that it will be useful,
++   but WITHOUT ANY WARRANTY; without even the implied warranty of
++   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++   GNU General Public License for more details.
++
++   You should have received a copy of the GNU General Public License
++   along with this program; if not, write to the Free Software
++   Foundation, Inc., 49 Temple Place, Suite 330, Boston, MA 02111-1307 USA
++
++   Author contact information:
++
++   E-mail: linux@youmustbejoking.demon.co.uk
++
++*/
++
++#ifndef FUSE_FBMOUSE_H
++#define FUSE_FBMOUSE_H
++
++int fbmouse_init(void);
++int fbmouse_end(void);
++void mouse_update(void);
++
++#endif                        /* #ifndef FUSE_FBMOUSE_H */
This page took 0.112589 seconds and 4 git commands to generate.