Description: assorted fixes
 [Maarten L. Hekkelman <m.hekkelman@cmbi.ru.nl>]
  * Fixed compilation failure by only adding the WCONTINUED
    flag if it is defined.
 .
 Upstream is aware of this patch.
Author: Maarten L. Hekkelman <m.hekkelman@cmbi.ru.nl>
--- a/src/preforked-http-server.cpp
+++ b/src/preforked-http-server.cpp
@@ -23,6 +23,11 @@
 
 #include <sys/wait.h>
 
+// for Hurd
+#if not defined(WCONTINUED)
+#define WCONTINUED 0
+#endif
+
 using namespace std;
 
 namespace zeep { namespace http {
