Browse Source

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

Con Kolivas 14 years ago
parent
commit
b0bfd816d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      miner.h

+ 1 - 1
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