Root failure:

  checking for kernel version... 0.0.0
  configure: WARNING: Cannot determine Linux Kernel version.

configure.in uses this code to detect the kernel version:

    #include <stdlib.h>
    #include <stdio.h>
    #include <linux/version.h>
    int main (void) {
      FILE *fp = fopen ("linuxinfo", "w");
      if (!fp) return 1;
      fprintf (fp, "%s\n", UTS_RELEASE);
      fclose (fp); 
      return 0;
    } 

this is incorrect for recent linux-kernel-headers, which no longer
expose UTS_RELEASE to userspace in linux/version.h, causing keepalived
to misdetect the target kernel as 2.2.

-- 
autopkgtest gutsy keepalived: erroneous package!
https://bugs.launchpad.net/bugs/136534
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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

Reply via email to