Following up on my own comment with an educated guess:

I can see looking at the generated configure script that the compiler
might be seeing multiple #defines for offsetof() when including stdio.h
and stdlib.h as part of the autoconf macro boilerplate.  That could
result in a failure to compile the configure probe.  If that is the
case, then the following 1-line addition might be the fix:

--- blcr-0.8.4/configure.ac     11 Oct 2011 22:11:37 -0000      1.410.2.39
+++ blcr-0.8.4/configure.ac     8 Dec 2012 00:28:18 -0000
@@ -595,6 +595,7 @@ CR_DEFINE_INT(CR_ASM_CHECKPOINT_OMIT,
 CR_DEFINE_INT(CR_ASM_SI_PID_OFFSET,
        [offsetof(struct siginfo, si_pid)],
        [#include <signal.h>
+        #include <stddef.h>
         #ifndef offsetof
            #define offsetof(TYPE, MEMBER) ((unsigned long) &((TYPE 
*)0)->MEMBER)
         #endif])

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1086475

Title:
  Sync blcr 0.8.4-3 (universe) from Debian Unstable (universe)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/blcr/+bug/1086475/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to