xref: /netbsd-src/crypto/external/bsd/heimdal/dist/cf/osfc2.m4 (revision b40995a48bd40728880cac5a8845521b57dccf8c)
1dnl Id
2dnl
3dnl enable OSF C2 stuff
4
5AC_DEFUN([AC_CHECK_OSFC2],[
6AC_ARG_ENABLE(osfc2,
7	AS_HELP_STRING([--enable-osfc2],[enable some OSF C2 support]))
8LIB_security=
9if test "$enable_osfc2" = yes; then
10	AC_DEFINE(HAVE_OSFC2, 1, [Define to enable basic OSF C2 support.])
11	LIB_security=-lsecurity
12fi
13AC_SUBST(LIB_security)
14])
15