directfb: fixed to build on recent kernels wrt PAGE_SIZE definition
authorMichael Krelin <hacker@klever.net>
Thu, 10 May 2007 21:33:20 +0000 (21:33 +0000)
committerMichael Krelin <hacker@klever.net>
Thu, 10 May 2007 21:33:20 +0000 (21:33 +0000)
and corrected typo in patch filename

packages/directfb/directfb_1.0.0.bb
packages/directfb/files/getpagesize.patch [new file with mode: 0644]

index 5effeb8..cbeede9 100644 (file)
@@ -7,12 +7,13 @@ SECTION = "libs"
 LICENSE = "LGPL"
 HOMEPAGE = "http://directfb.org"
 DEPENDS = "jpeg libpng freetype zlib tslib"
-PR = "r2"
+PR = "r3"
 RV = "1.0-0"
 
 SRC_URI = "http://www.directfb.org/download/DirectFB/DirectFB-${PV}.tar.gz \
-           file://fix-pkgconfig-cflags.patch;patch=1 \
-          file://mkdfiff.patch;patch=1"
+           file://fix-pkgconfig-specs.patch;patch=1 \
+          file://mkdfiff.patch;patch=1 \
+          file://getpagesize.patch;patch=1"
 
 S = "${WORKDIR}/DirectFB-1.0.0"
 
diff --git a/packages/directfb/files/getpagesize.patch b/packages/directfb/files/getpagesize.patch
new file mode 100644 (file)
index 0000000..256b8db
--- /dev/null
@@ -0,0 +1,16 @@
+diff --git a/lib/direct/system.c b/lib/direct/system.c
+index 8dd3f12..0731fa2 100644
+--- a/lib/direct/system.c
++++ b/lib/direct/system.c
+@@ -36,8 +36,9 @@
+ #if HAVE_ASM_PAGE_H
+ #include <asm/page.h>
+-#else
+-#define PAGE_SIZE   sysconf( _SC_PAGESIZE )
++#endif
++#ifndef PAGE_SIZE
++# define PAGE_SIZE (getpagesize())
+ #endif