Package: libstatgrab
Version: 0.15-1
Severity: wishlist
User: [EMAIL PROTECTED]/debian.org
Usertags: eabi, patch
Hi!
libstatgrab is one of the Debian packages that fails to build on
the new "armel" Debian port (see http://wiki.debian.org/ArmEabiPort)
because it lacks a configure clause for the arm-linux-gnueabi GCC
triple that the new ARM ABI uses.
The attached trivial patch does the necessary to configure.in for
upstream (Cc-ed).
For the Debian package, the included "configure" needs the same
modification, either by running autoconf or by a similar trivial patch
to "configure"
Cheers
M
--- libstatgrab-0.15.orig/configure.in 2008-03-11 11:18:26.000000000 +0000
+++ libstatgrab-0.15/configure.in 2008-03-11 11:15:53.000000000 +0000
@@ -122,7 +122,7 @@
BIN_PERM="2755"
LINKFLAGS="-lkvm -ldevstat"
;;
-linux-gnu)
+linux-gnu*) # also matches linux-gnueabi for new ARM ABI
AC_DEFINE(LINUX, , [Building on GNU/Linux])
AM_CONDITIONAL(SETUIDBINS, true)
BIN_OWNER="root"