b9094d6b19
Fixes more than 20 issues, including portability ones. from Daniel Dickman, thanks!
14 lines
331 B
Plaintext
14 lines
331 B
Plaintext
$OpenBSD: patch-dict_dawg_cpp,v 1.3 2009/08/24 07:12:40 ajacoutot Exp $
|
|
--- dict/dawg.cpp.orig Tue Dec 30 13:27:36 2008
|
|
+++ dict/dawg.cpp Sun Aug 23 20:36:22 2009
|
|
@@ -28,6 +28,9 @@
|
|
#ifdef __MSW32__
|
|
#include <windows.h>
|
|
#else
|
|
+#ifdef __OpenBSD__
|
|
+#include <sys/types.h>
|
|
+#endif
|
|
#include <arpa/inet.h>
|
|
#endif
|
|
#include "dawg.h"
|