Description: define PATH_MAX variable to fix a FTBFS in Hurd.
Author: Joao Eriberto Mota Filho <eriberto@debian.org>
Last-Update: 2014-11-05
Index: tcpspy-1.7d/tcpspy.c
===================================================================
--- tcpspy-1.7d.orig/tcpspy.c
+++ tcpspy-1.7d/tcpspy.c
@@ -85,6 +85,11 @@ static int facility = FACILITY;
  * use unsigned long instead of (for example) uid_t, ino_t to make hashing
  * easier.
  */
+
+#if defined(__GNU__) && !defined(PATH_MAX)
+#define PATH_MAX 1024
+#endif
+
 typedef struct conn {
 	int af;
 	union {
