Package: imview Version: 1.1.9c-2 Severity: normal Tags: patch User: [EMAIL PROTECTED] Usertags: origin-ubuntu jaunty ubuntu-patch
Hi, Your package uses INT_MAX, but it doesn't include limits.h, so it will fail to build with compilers that are more strict about this. The attached patch will correct this. Please consider applying it. Thanks, James
diff -u imview-1.1.9c/imview.cxx imview-1.1.9c/imview.cxx --- imview-1.1.9c/imview.cxx +++ imview-1.1.9c/imview.cxx @@ -70,6 +70,7 @@ #include <sys/stat.h> #include <fcntl.h> #include <X11/xpm.h> +#include <limits.h> #ifdef WIN32_NOTCYGWIN # include <windows.h>

