Revision: 23506 http://trac.macosforge.org/projects/launchd/changeset/23506 Author: zarzycki@apple.com Date: 2008-02-01 10:43:05 -0800 (Fri, 01 Feb 2008) Log Message: ----------- <rdar://problem/5715717> reference to undefined HAVE_SECURITY_FRAMEWORK Modified Paths: -------------- branches/SULeopard/launchd/src/launchd.c Modified: branches/SULeopard/launchd/src/launchd.c =================================================================== --- branches/SULeopard/launchd/src/launchd.c 2008-01-29 00:31:31 UTC (rev 23505) +++ branches/SULeopard/launchd/src/launchd.c 2008-02-01 18:43:05 UTC (rev 23506) @@ -23,7 +23,7 @@ #include "config.h" #include "launchd.h" -#if HAVE_SECURITY_FRAMEWORK +#if HAVE_SECURITY #include <Security/Authorization.h> #include <Security/AuthorizationTags.h> #include <Security/AuthSession.h> @@ -285,7 +285,7 @@ void launchd_SessionCreate(void) { -#if HAVE_SECURITY_FRAMEWORK +#if HAVE_SECURITY OSStatus (*sescr)(SessionCreationFlags flags, SessionAttributeBits attributes); void *seclib;