Package: xsltproc Version: 1.1.26-14.1 Severity: normal Tags: patch Dear Maintainer, When trying to build on ia64, the compiler complains that it cannot find INT_MAX for libxslt/transform.c. The attached patch #includes the appropriate system header file.
-- System Information: Debian Release: 7.11 APT prefers oldoldstable APT policy: (500, 'oldoldstable') Architecture: ia64 Kernel: Linux 3.2.0-4-mckinley (SMP w/2 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages xsltproc depends on: ii libc6.1 2.13-38+deb7u10 ii libxml2 2.8.0+dfsg1-7+wheezy5 ii libxslt1.1 1.1.26-14.1 xsltproc recommends no packages. xsltproc suggests no packages. -- no debconf information
--- libxslt/transform.c.orig 2017-11-15 09:21:22.240917554 -0500 +++ libxslt/transform.c 2017-11-15 09:21:33.780859781 -0500 @@ -21,6 +21,7 @@ #include <string.h> #include <stdio.h> +#include <limits.h> #include <libxml/xmlmemory.h> #include <libxml/parser.h>