Just got this message from the Debian Hurd Team ....
(Which of course means that pd is running on the hurd too ) Miller, can you fix the configure.in or should I do it and send you a patch ? (I have to do it anyway for the Debian package)
Guenter
---------- Forwarded message ---------- Date: Mon, 13 Aug 2001 15:01:21 +0200 From: Marcus Brinkmann Marcus.Brinkmann@ruhr-uni-bochum.de To: submit@bugs.debian.org Subject: Bug#108598: [hurd] doesn't build Resent-Date: Mon, 13 Aug 2001 13:03:01 GMT Resent-From: Marcus Brinkmann Marcus.Brinkmann@ruhr-uni-bochum.de Resent-To: debian-bugs-dist@lists.debian.org Resent-cc: Guenter Geiger (Debian/GNU) geiger@debian.org
Package: pd Version: 0.32p1-4 Severity: important
Hi Guenter,
the package uses autoconf, but the file src/s_inter.c has an obnoxious
#ifndef __linux__ #include <bstring.h> #endif
But this header file doesn't exist on the Hurd either.
Please add bstring.h to the AC_CHECK_HEADERS line in src/configure.in and regenerate the configure script. Then change the above to read:
#ifdef HAVE_BSTRING_H #include <bstring.h> #endif
Please forward this change upstream, too.
Thanks, Marcus