add X86_COMPACT option. also add CS_SUPPORT_X86_COMPACT. made Python support this change
diff --git a/cs.c b/cs.c
index 7f72597..d1df809 100644
--- a/cs.c
+++ b/cs.c
@@ -110,6 +110,14 @@
 #endif
 	}
 
+	if (query == CS_SUPPORT_X86_COMPACT) {
+#if defined(CAPSTONE_HAS_X86) && defined(CAPSTONE_X86_COMPACT)
+		return true;
+#else
+		return false;
+#endif
+	}
+
 	// unsupported query
 	return false;
 }