summaryrefslogtreecommitdiff
path: root/crypto/heimdal/cf/framework-security.m4
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/heimdal/cf/framework-security.m4')
-rw-r--r--crypto/heimdal/cf/framework-security.m431
1 files changed, 0 insertions, 31 deletions
diff --git a/crypto/heimdal/cf/framework-security.m4 b/crypto/heimdal/cf/framework-security.m4
deleted file mode 100644
index 3358292f4e6b..000000000000
--- a/crypto/heimdal/cf/framework-security.m4
+++ /dev/null
@@ -1,31 +0,0 @@
-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])
- 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 <Security/Security.h>],SecKeyGetCSPHandle)
-fi
-
-])