tags 497632 + patch
thanks

Hi,

The following is the diff for my linux86 0.16.17-2.3 NMU.

Kind regards

T.

diff -u linux86-0.16.17/debian/changelog linux86-0.16.17/debian/changelog
--- linux86-0.16.17/debian/changelog
+++ linux86-0.16.17/debian/changelog
@@ -1,3 +1,12 @@
+linux86 (0.16.17-2.3) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * bcc/const.h: change S_ALIGNMENT (alignment of allocated vars)
+    to 2*sizeof(size_t) from sizeof(long) to fix hppa FTBFS.
+    Idea from glibc malloc. Closes: #497632
+
+ -- Thomas Viehmann <[EMAIL PROTECTED]>  Mon, 22 Sep 2008 23:14:46 +0200
+
 linux86 (0.16.17-2.2) unstable; urgency=low
 
   * Non-maintainer upload.
only in patch2:
unchanged:
--- linux86-0.16.17.orig/bcc/const.h
+++ linux86-0.16.17/bcc/const.h
@@ -76,7 +76,8 @@
 
 /* Unportable alignment needed for specific compilers */
 #ifndef VERY_SMALL_MEMORY
-# define S_ALIGNMENT (sizeof(long)) /* A little safer */
+/* # define S_ALIGNMENT (sizeof(long)) */ /* A little safer */
+# define S_ALIGNMENT (2*sizeof(size_t)) /* Even more safe: do as glibc malloc 
*/
 #endif
 
 /* local style */



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to