Restrict Mac OS 10.5 devices to 1 dex2oat thread.

Also make extra sure we've included the header file that tells us what Mac OS
version we're compiling for.

Change-Id: Ie57f01a325217e638df4e9b90d94b27303149124
diff --git a/src/utils.cc b/src/utils.cc
index 3751727..1c00712 100644
--- a/src/utils.cc
+++ b/src/utils.cc
@@ -39,7 +39,7 @@
 #endif
 
 #if defined(__APPLE__)
-#include "AvailabilityMacros.h"
+#include "AvailabilityMacros.h" // For MAC_OS_X_VERSION_MAX_ALLOWED
 #include <sys/syscall.h>
 #endif