Fix jeffhao's build breakage by not including unnecessary header files.
diff --git a/vm/Thread.c b/vm/Thread.c
index 7c9df3e..e4de664 100644
--- a/vm/Thread.c
+++ b/vm/Thread.c
@@ -19,7 +19,6 @@
*/
#include "Dalvik.h"
-#include "interp/Jit.h" // need for self verification
#include "utils/threads.h" // need Android thread priorities
#include <stdlib.h>
@@ -34,6 +33,11 @@
#include <sys/prctl.h>
#endif
+#if defined(WITH_SELF_VERIFICATION)
+#include "interp/Jit.h" // need for self verification
+#endif
+
+
/* desktop Linux needs a little help with gettid() */
#if defined(HAVE_GETTID) && !defined(HAVE_ANDROID_OS)
#define __KERNEL__