Commit fe5a4e3b authored by unknown's avatar unknown
Browse files

Bug #12987 yassl: Compilation of integer.cpp fails on OS X Tiger


extra/yassl/taocrypt/include/misc.hpp:
  Disable X86ASM on OsX
parent 44b35dbb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public:


// no gas on these systems ?, disable for now
#if defined(__sun__) || defined (__QNX__)
#if defined(__sun__) || defined (__QNX__) || defined (__APPLE__)
    #define TAOCRYPT_DISABLE_X86ASM
#endif