Hello, I'm doing an NMU of asclassic to fix #350782; diff attached.
Thanks, Matej
diff -u asclassic-1.1b/debian/changelog asclassic-1.1b/debian/changelog --- asclassic-1.1b/debian/changelog +++ asclassic-1.1b/debian/changelog @@ -1,3 +1,11 @@ +asclassic (1.1b-28.2) unstable; urgency=medium + + * NMU. + * afterstep/alpha_header.h: Rely on <sys/select.h> and <string.h> for + declarations of select(2) and strlen(3) respectively. Closes: #350782. + + -- Matej Vela <[EMAIL PROTECTED]> Mon, 20 Feb 2006 09:55:21 +0100 + asclassic (1.1b-28.1) unstable; urgency=high * Non-maintainer upload. only in patch2: unchanged: --- asclassic-1.1b.orig/afterstep/alpha_header.h +++ asclassic-1.1b/afterstep/alpha_header.h @@ -3,14 +3,18 @@ * alpha's */ #include <sys/types.h> #include <sys/time.h> +#include <sys/select.h> +#include <string.h> +#if 0 extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *); /* string manipulation */ #ifdef __GNUC__ extern size_t strlen(char *); #endif +#endif /* Commented out 08/22/96 -- Thanks to Pierre Wendling extern int bzero(char *, int);

