Package: smartmontools Version: 5.40+svn3296-1 Severity: important Tags: patch User: debian-h...@lists.debian.org Usertags: hurd
Hi, currently[1], smartmontools fails to build on GNU/Hurd. The problem is a missing #include in os_generic.cpp (the OS implementation used in Hurd), which is what the attached patch fixes. [1] https://buildd.debian.org/fetch.cgi?pkg=smartmontools&arch=hurd-i386&ver=5.40%2Bsvn3296-1&stamp=1300749483&file=log&as=raw Thanks, -- Pino
--- a/os_generic.cpp +++ b/os_generic.cpp @@ -71,6 +71,7 @@ // These are needed to define prototypes and structures for the // functions defined below +#include "int64.h" #include "atacmds.h" #include "utility.h"