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

📄 configure.in

📁 RADIUS认证协议
💻 IN
字号:
AC_INIT(x99_rlm.c)AC_REVISION($Revision: 1.10.2.1 $)AC_DEFUN(modname,[rlm_x99_token])SMART_CFLAGS=if test x$with_[]modname != xno; then	dnl put configuration checks here.  	dnl set $fail to what's missing, on fatal errors.	dnl use AC_MSG_WARN() on important messages.	dnl test for almost-c99 compliant compiler	AC_CHECK_HEADER(inttypes.h, ,		[ fail="$fail inttypes.h" ]	)	dnl mostly for openssl	AC_ARG_WITH(rlm-x99-token-lib-dir,		    [  --with-rlm-x99-token-lib-dir directory for x99_token libs],		    x99_token_ldflags="$x99_token_ldflags -L$withval")	AC_ARG_WITH(rlm-x99-token-include-dir,		    [  --with-rlm-x99-token-include-dir directory for x99_token includes],		    x99_token_cflags="$x99_token_cflags -I$withval")	dnl #	dnl # extra argument: --openssl-includes=dir	dnl #	AC_ARG_WITH(openssl-includes,	[  --with-openssl-includes=DIR       Directory to look for OpenSSL include files],	[ case "$withval" in	    *)		SMART_CFLAGS="$SMART_CFLAGS -I$withval"		;;	  esac ]	)	targetname=modname     # keep this!  Don't change!else	targetname=            # keep this!  Don't change!	echo \*\*\* module modname is disabled.  # keep this!  Don't change!fidnl  Don't change this section.if 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=""	fifix99_token_cflags="$x99_token_cflags -DX99_MODULE_NAME=\\\"modname\\\" $SMART_CFLAGS"x99_token_cflags="$x99_token_cflags -DFREERADIUS"AC_SUBST(x99_token_cflags)AC_SUBST(x99_token_ldflags)dnl AC_CONFIG_HEADER(config.h)AC_SUBST(targetname)  # keep this!  Don't change!AC_OUTPUT(Makefile)  # keep this!  Don't change!

⌨️ 快捷键说明

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