openbsd-ports/security/l0phtcrack/patches/patch-includes_h
2010-10-19 07:59:03 +00:00

23 lines
479 B
Plaintext

$OpenBSD: patch-includes_h,v 1.2 2010/10/19 07:59:04 jsg Exp $
--- includes.h.orig Sat Oct 16 15:06:42 2010
+++ includes.h Sat Oct 16 15:09:06 2010
@@ -1,9 +1,17 @@
#include "md4.h"
-#include "des.h"
+#include <openssl/des.h>
#include <memory.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
+#include <machine/endian.h>
+
+/* XXX */
+#if BYTE_ORDER == BIG_ENDIAN
+# define BIGENDIAN
+#else
+# define MPU8086
+#endif
typedef short int16;
typedef int int32;