Hello community, here is the log from the commit of package jfbterm checked in at Fri May 19 16:46:03 CEST 2006. -------- --- jfbterm/jfbterm.changes 2006-01-25 21:37:02.000000000 +0100 +++ jfbterm/jfbterm.changes 2006-05-19 15:30:43.000000000 +0200 @@ -1,0 +2,5 @@ +Fri May 19 15:30:38 CEST 2006 - ro@suse.de + +- fix build on ppc64 + +------------------------------------------------------------------- New: ---- jfbterm-pagemask.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ jfbterm.spec ++++++ --- /var/tmp/diff_new_pack.eT1anF/_old 2006-05-19 16:45:54.000000000 +0200 +++ /var/tmp/diff_new_pack.eT1anF/_new 2006-05-19 16:45:54.000000000 +0200 @@ -1,11 +1,11 @@ # # spec file for package jfbterm (Version 0.3.10) # -# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2006 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # -# Please submit bugfixes or comments via http://www.suse.de/feedback/ +# Please submit bugfixes or comments via http://bugs.opensuse.org/ # # norootforbuild @@ -17,7 +17,7 @@ Prereq: /bin/cat /usr/bin/grep permissions Autoreqprov: on Version: 0.3.10 -Release: 519 +Release: 530 URL: http://www3.justnet.ne.jp/~nmasu/linux/jfbterm/indexn.html Source: http://www3.justnet.ne.jp/~nmasu/linux/binary/jfbterm-0.3.10.tar.bz2 Source1: terminfo.jfbterm @@ -25,7 +25,8 @@ Patch0: jfbterm-0.3.10.suse.patch Patch1: jfbterm-0.3.10-security.patch Patch2: jfbterm-0.3.10-implicit_decl.patch -Summary: Framebuffer terminal to display Japanese characters +Patch3: jfbterm-pagemask.patch +Summary: Framebuffer Terminal to Display Japanese Characters # Summary(ja): Linux の framebuffer 上で漢字を表示するためのプログラムです。 BuildRoot: %{_tmppath}/%{name}-%{version}-build # %description -l ja @@ -38,9 +39,9 @@ %description JFBTERM is a program to display Japanese Kanji characters using the -framebuffer. Similar to the well known program "kon", it uses a -terminal emulator on the console and hooks into its output. But JFBTERM -doesn't use VGA (like "kon" does) but uses the framebuffer instead. +framebuffer. Similar to the well-known program kon, it uses a terminal +emulator on the console and hooks into its output. But JFBTERM does not +use VGA (like kon does). It uses the framebuffer instead. @@ -49,6 +50,7 @@ %patch0 -p1 %patch1 -p1 -b .security %patch2 +%patch3 cp %{SOURCE1} . cp %{SOURCE2} . @@ -108,6 +110,8 @@ /usr/share/terminfo/j/jfbterm %changelog -n jfbterm +* Fri May 19 2006 - ro@suse.de +- fix build on ppc64 * Wed Jan 25 2006 - mls@suse.de - converted neededforbuild to BuildRequires * Fri Sep 23 2005 - ro@suse.de ++++++ jfbterm-pagemask.patch ++++++ --- fbcommon.c +++ fbcommon.c @@ -52,6 +52,13 @@ #include <fbdpsp.h> +#ifndef PAGE_SIZE +#define PAGE_SIZE getpagesize() +#endif +#ifndef PAGE_MASK +#define PAGE_MASK (~(PAGE_SIZE - 1)) +#endif + static int tfbm_select_visual( TFrameBufferMemory* p, struct fb_var_screeninfo* fbvs, struct fb_fix_screeninfo* fbfs); ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun...
participants (1)
-
root@suse.de