Don't build VIA on apple since -a auto bombs instead of gracefully ignoring VIA failing.
diff --git a/miner.h b/miner.h
index e301a68..30b2f9a 100644
--- a/miner.h
+++ b/miner.h
@@ -72,7 +72,7 @@ void *alloca (size_t);
#define WANT_X8632_SSE2 1
#endif
-#if defined(__i386__) || defined(__x86_64__)
+#if (defined(__i386__) || defined(__x86_64__)) && !defined(__APPLE__)
#define WANT_VIA_PADLOCK 1
#endif