 492b12e998
			
		
	
	492b12e998
	
	
	
		
			
			git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@20886 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			25 lines
		
	
	
		
			738 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			738 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| AC_DEFUN([rk_FRAMEWORK_SECURITY], [
 | |
| 
 | |
| AC_MSG_CHECKING([for framework security])
 | |
| AC_CACHE_VAL(rk_cv_framework_security,
 | |
| [
 | |
| if test "$rk_cv_framework_security" != yes; then
 | |
| 	ac_save_LIBS="$LIBS"
 | |
| 	LIBS="$ac_save_LIBS -framework Security -framework CoreFoundation"
 | |
| 	AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <Security/Security.h>
 | |
| ]],
 | |
| [[SecKeychainSearchRef searchRef;
 | |
| SecKeychainSearchCreateFromAttributes(NULL,kSecCertificateItemClass,NULL, &searchRef);
 | |
| CFRelease(&searchRef);
 | |
| ]])],[rk_cv_framework_security=yes])
 | |
| 	LIBS="$ac_save_LIBS"
 | |
| fi
 | |
| ])
 | |
| 
 | |
| if test "$rk_cv_framework_security" = yes; then
 | |
|    AC_DEFINE(HAVE_FRAMEWORK_SECURITY, 1, [Have -framework Security])
 | |
| fi
 | |
| AM_CONDITIONAL(FRAMEWORK_SECURITY, test "$rk_cv_framework_security" = yes)
 | |
| 
 | |
| ])
 |