Commit b0bfd816d62178eed99a377559ae6798324222d2

Con Kolivas 2011-11-11T19:35:41

Don't build VIA on apple since -a auto bombs instead of gracefully ignoring VIA failing.

1
2
3
4
5
6
7
8
9
10
11
12
13
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