<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">--- src/abstraction/MachOFileAbstraction.hpp.orig	2009-05-13 17:40:39.000000000 -0700
+++ src/abstraction/MachOFileAbstraction.hpp	2013-08-11 23:47:51.000000000 -0700
@@ -40,6 +40,12 @@
 
 
 // stuff that will eventually go away once newer cctools headers are widespread
+#ifndef CPU_SUBTYPE_ARM_V4T
+	#define CPU_SUBTYPE_ARM_V4T	  	    ((cpu_subtype_t) 5)
+#endif
+#ifndef CPU_SUBTYPE_ARM_V6
+	#define CPU_SUBTYPE_ARM_V6	  	    ((cpu_subtype_t) 6)
+#endif
 #ifndef CPU_SUBTYPE_ARM_V5TEJ
 	#define CPU_SUBTYPE_ARM_V5TEJ		((cpu_subtype_t) 7)
 #endif
@@ -49,6 +55,12 @@
 #ifndef CPU_SUBTYPE_ARM_V7
 	#define CPU_SUBTYPE_ARM_V7			((cpu_subtype_t) 9)
 #endif
+#ifndef CPU_SUBTYPE_ARM_ALL
+	#define CPU_SUBTYPE_ARM_ALL	  	    ((cpu_subtype_t) 12)
+#endif
+#ifndef CPU_TYPE_ARM
+	#define CPU_TYPE_ARM	  	        ((cpu_type_t) 12)
+#endif
 #ifndef ARM_THUMB_32BIT_BRANCH
 	#define ARM_THUMB_32BIT_BRANCH	7 
 #endif
</pre></body></html>