Commit 743e6718a6375a892b4751ba9dacc8dd7a28d600

Add fix-qte-asm-include.patch to Qt/E patches

  fix-qte-asm-include.patch must be applied against Qt/E 2.3.10 when
  building against modern Linux 2.6 kernels, especially if you receive
  the error "asm/page.h: No such file or directory" without it.
  
1--- a/src/kernel/qpixmapcache.cpp 2005-01-23 14:00:46.000000000 +0000
2+++ b/src/kernel/qpixmapcache.cpp 2009-11-05 22:49:44.000000000 +0000
3@@ -119,13 +119,13 @@
4 #include <time.h>
5 #include <stdio.h>
6 #include <signal.h>
7+#include <unistd.h>
8
9 #ifdef THROW_AWAY_UNUSED_PAGES
10 # include <sys/mman.h> // madvise
11-# include <asm/page.h> // PAGE_SIZE,PAGE_MASK,PAGE_ALIGN
12-# ifndef PAGE_ALIGN
13+# define PAGE_SIZE getpagesize()
14+# define PAGE_MASK (~(PAGE_SIZE-1))
15 # define PAGE_ALIGN(addr) (((addr)+PAGE_SIZE-1)&PAGE_MASK)
16-# endif // PAGE_ALIGN
17 #endif // THROW_AWAY_UNUSED_PAGES
18
19