Older OSX versions don't define NSOperatingSystemVersion, so building lldb gets:
../tools/lldb/tools/debugserver/source/MacOSX/MachProcess.mm:2032:5: error: unknown type name 'NSOperatingSystemVersion' NSOperatingSystemVersion vers = [[NSProcessInfo processInfo] operatingSystemVersion]; ^
This patch fixes the build by having GetOSVersionNumbers return false if ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED < 101000, causing lldb to behave the same as it did before this patch.