⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 configure.in

📁 radius服务器
💻 IN
字号:
AC_INIT(rlm_krb5.c)AC_REVISION($Revision: 1.7 $)AC_DEFUN(modname,[rlm_krb5])if test x$with_[]modname != xno; then	AC_PROG_CC	AC_PROG_CPP	dnl extra argument: --with-rlm-krb5-lib-dir	rlm_krb5_lib_dir=	AC_ARG_WITH(rlm-krb5-lib-dir,	[  --with-rlm-krb5-lib-dir=DIR       Directory for krb5 library files []],	[ case "$withval" in	    no)		AC_MSG_ERROR(Need rlm-krb5-lib-dir)		;;	    yes)		;;	    *)		rlm_krb5_lib_dir="$withval"		;;	  esac ]	)	dnl extra argument: --with-rlm-krb5-include-dir	rlm_krb5_inc_dir=	AC_ARG_WITH(rlm-krb5-include-dir,	[  --with-rlm-krb5-include-dir=DIR   Directory for krb5 include files []],	[ case "$withval" in	    no)		AC_MSG_ERROR(Need rlm-krb5-include-dir)		;;	    yes)		;;	    *)		rlm_krb5_include_dir="$withval"		;;	  esac ]	)       dnl extra argument: --enable-heimdal-krb5       AC_ARG_ENABLE(heimdal-krb5,       [  --enable-heimdal-krb5             Enable if you have heimdal krb5],       [ case "$enableval" in               yes)                       krb5_h_cflags="-DHEIMDAL_KRB5"                       ;;         esac ]       )	smart_try_dir=$rlm_krb5_include_dir	AC_SMART_CHECK_INCLUDE(krb5.h)	smart_try_dir=$rlm_krb5_lib_dir	AC_SMART_CHECK_LIB(k5crypto, krb5_encrypt_data)	if test "x$ac_cv_lib_k5crypto_krb5_encrypt_data" = "xyes"; then		krb5libcrypto="-lk5crypto"	fi	AC_SMART_CHECK_LIB(crypto, DH_new)	if test "x$ac_cv_lib_crypto_DH_new" = "xyes"; then		krb5libcrypto="-lcrypto"	fi	if test x$krb5libcrypto = x; then		AC_MSG_WARN([neither krb5 'k5crypto' nor 'crypto' libraries are found!])	fi	AC_SMART_CHECK_LIB(com_err, set_com_err_hook)	if test "x$ac_cv_lib_com_err_set_com_err_hook" != "xyes"; then		AC_MSG_WARN([the comm_err library isn't found!]) 	fi	AC_SMART_CHECK_LIB(krb5, krb5_init_context)	if test "x$ac_cv_lib_krb5_krb5_init_context" != "xyes"; then		fail="$fail krb5"	fi	targetname=modnameelse	targetname=	echo \*\*\* module modname is disabled.fiif test x"$fail" != x""; then	if test x"${enable_strict_dependencies}" = x"yes"; then		AC_MSG_ERROR([set --without-]modname[ to disable it explicitly.])	else		AC_MSG_WARN([silently not building ]modname[.])		AC_MSG_WARN([FAILURE: ]modname[ requires: $fail.]); 		targetname=""	fifikrb5_ldflags=$SMART_LIBSkrb5_cflags="${krb5_h_cflags} $SMART_CFLAGS"AC_SUBST(krb5_cflags)AC_SUBST(krb5_ldflags)AC_SUBST(targetname)AC_OUTPUT(Makefile)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -