Package: apt-cacher-ng Version: 0.5-1 Severity: important Tags: patch User: [email protected] Usertags: origin-ubuntu maverick ubuntu-patch
*** /tmp/tmp0OSBZC source/acfg.cc doesn't explicitly include sys/stat.h, but does make use of it's functions. Whilst this isn't currently an issue on sid; it does cause a FTBFS on Ubuntu. It's possible the toolchain may change in Debian, making this more importiant in the future. The attached trival patch, has been applied and uploaded to Ubuntu Maverick.
--- apt-cacher-ng-0.5.orig/source/acfg.cc +++ apt-cacher-ng-0.5/source/acfg.cc @@ -22,6 +22,7 @@ #include <list> #include <map> #include <algorithm> +#include <sys/stat.h> using namespace MYSTD;

