--- src/macosx/system.m.orig 2009-11-22 12:17:42.000000000 +1100
+++ src/macosx/system.m 2011-08-08 01:01:52.000000000 +1000
@@ -386,13 +386,26 @@ int osx_bootstrap_ok(void)
+ CFDictionaryRef sessiondict;
/* If have tested once, just return that answer */
+ /* check for window server session */
+ sessiondict = CGSessionCopyCurrentDictionary();
+ CFRelease(sessiondict);
cfport = CFMachPortCreate(NULL, NULL, NULL, NULL);
- task_get_bootstrap_port(mach_task_self(), &bp);
- ret = bootstrap_register(bp, "bootstrap-ok-test", CFMachPortGetPort(cfport));
+ ret = task_get_bootstrap_port(mach_task_self(), &bp);
+ if (ret == ERR_SUCCESS) {
+ ret = bootstrap_register(bp, "bootstrap-ok-test", CFMachPortGetPort(cfport));
_ok = (ret == KERN_SUCCESS) ? 1 : 0;