Tags: patch The following patch fixes this issue.
--- common/apt-watch-common.cc.orig 2008-01-28 10:35:00.000000000 +0100 +++ common/apt-watch-common.cc 2008-01-28 10:34:25.000000000 +0100 @@ -5,6 +5,7 @@ #include "apt-watch-common.h" #include <cstdlib> +#include <cstring> #include <errno.h> using namespace std; --- common/fileutl.cc.orig 2008-01-28 10:39:22.000000000 +0100 +++ common/fileutl.cc 2008-01-28 10:38:49.000000000 +0100 @@ -4,6 +4,7 @@ #include "fileutl.h" +#include <cstring> #include <dirent.h> #include <errno.h> #include <stdlib.h> --- backend/apt-watch-auth-helper.cc.orig 2008-01-28 10:40:52.000000000 +0100 +++ backend/apt-watch-auth-helper.cc 2008-01-28 10:40:14.000000000 +0100 @@ -16,6 +16,7 @@ #include <security/pam_appl.h> +#include <cstring> #include <stdlib.h> #include <signal.h> #include <sys/types.h> --- ui-gnome/prefs-package-manager.cc.orig 2008-01-28 10:42:14.000000000 +0100 +++ ui-gnome/prefs-package-manager.cc 2008-01-28 10:41:34.000000000 +0100 @@ -10,6 +10,7 @@ #include <common/fileutl.h> +#include <cstring> #include <cctype> #include <string> -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

