From 89a825f0125ef6c503230c7ba0354e292c3352de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 16 Nov 2007 20:13:30 +0000 Subject: [PATCH] Check if SecKeyGetCSPHandle needs prototype. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22085 ec53bebd-3082-4978-b11e-865c3cabbd6b --- cf/framework-security.m4 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cf/framework-security.m4 b/cf/framework-security.m4 index 72eb2c7b0..3358292f4 100644 --- a/cf/framework-security.m4 +++ b/cf/framework-security.m4 @@ -18,7 +18,14 @@ fi if test "$rk_cv_framework_security" = yes; then AC_DEFINE(HAVE_FRAMEWORK_SECURITY, 1, [Have -framework Security]) + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) fi AM_CONDITIONAL(FRAMEWORK_SECURITY, test "$rk_cv_framework_security" = yes) +if test "$rk_cv_framework_security" = yes; then + AC_NEED_PROTO([#include ],SecKeyGetCSPHandle) +fi + ])