Description: Only do CPUID on amd64 and i386
 This fixes a FTBFS on armhf and arm64.
Author: Graham Inggs <ginggs@ubuntu.com>
Last-Update: 2016-07-24
--- gmap.orig/src/cpuid.c
+++ gmap/src/cpuid.c
@@ -7,7 +7,7 @@
 #include <stdio.h>
 
 
-#if defined(AX_HOST_POWER8)
+#if !defined(__x86_64) && !defined(__i386)
 
 void
 CPUID_support (bool *sse2_support_p, bool *ssse3_support_p, bool *sse4_1_support_p, bool *sse4_2_support_p,
