Hi! I'm uploading an NMU for jfbterm to fix #394216. The full diff is given below.
diff -Nabur jfbterm-0.4.7.eerst/debian/changelog jfbterm-0.4.7/debian/changelog --- jfbterm-0.4.7.eerst/debian/changelog 2006-10-23 21:23:05.000000000 +0200 +++ jfbterm-0.4.7/debian/changelog 2006-10-23 21:46:50.255380739 +0200 @@ -1,3 +1,11 @@ +jfbterm (0.4.7-4.1) unstable; urgency=medium + + * Non-Maintainer Upload + * Changed build-dep on automake to automake1.4 + * Defined PAGE_SIZE and PAGE_MASK properly (closes: #394216) + + -- Bas Zoetekouw <[EMAIL PROTECTED]> Mon, 23 Oct 2006 21:40:47 +0200 + jfbterm (0.4.7-4) unstable; urgency=low * adjust font path in /etc/jfbterm.conf for X font transition diff -Nabur jfbterm-0.4.7.eerst/debian/control jfbterm-0.4.7/debian/control --- jfbterm-0.4.7.eerst/debian/control 2006-10-23 21:23:05.000000000 +0200 +++ jfbterm-0.4.7/debian/control 2006-10-23 21:40:45.298518797 +0200 @@ -3,7 +3,7 @@ Priority: optional Maintainer: Fumitoshi UKAI <[EMAIL PROTECTED]> Uploaders: Hatta Shuzo <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), automake +Build-Depends: debhelper (>= 4.0.0), automake1.4 Standards-Version: 3.6.2 Package: jfbterm diff -Nabur jfbterm-0.4.7.eerst/util.h jfbterm-0.4.7/util.h --- jfbterm-0.4.7.eerst/util.h 2003-09-15 17:45:31.000000000 +0200 +++ jfbterm-0.4.7/util.h 2006-10-23 21:40:34.993481454 +0200 @@ -49,4 +49,7 @@ int util_search_string(const char* s, const char** array); +#define PAGE_SIZE (sysconf(_SC_PAGESIZE)) +#define PAGE_MASK (~(sysconf(_SC_PAGESIZE) - 1)) + #endif /* INCLUDE_UTIL_H */ -- +--------------------------------------------------------------------+ | Bas Zoetekouw | GPG key: 0644fab7 | |----------------------------| Fingerprint: c1f5 f24c d514 3fec 8bf6 | | [EMAIL PROTECTED] | a2b1 2bae e41f 0644 fab7 | +--------------------------------------------------------------------+ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

