Revision: 23507 http://trac.macosforge.org/projects/launchd/changeset/23507 Author: zarzycki@apple.com Date: 2008-02-01 10:44:28 -0800 (Fri, 01 Feb 2008) Log Message: ----------- <rdar://problem/5715717> reference to undefined HAVE_SECURITY_FRAMEWORK Modified Paths: -------------- trunk/launchd/src/launchd.c Modified: trunk/launchd/src/launchd.c =================================================================== --- trunk/launchd/src/launchd.c 2008-02-01 18:43:05 UTC (rev 23506) +++ trunk/launchd/src/launchd.c 2008-02-01 18:44:28 UTC (rev 23507) @@ -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> @@ -283,7 +283,7 @@ INTERNAL_ABI void launchd_SessionCreate(void) { -#if HAVE_SECURITY_FRAMEWORK +#if HAVE_SECURITY OSStatus (*sescr)(SessionCreationFlags flags, SessionAttributeBits attributes); void *seclib;