configure.in   [plain text]


AC_PREREQ([2.53])
AC_INIT(rlm_smsotp.c) # change 'example'
AC_REVISION($Revision: 0.1 $)
AC_DEFUN(modname,[rlm_smsotp]) # change 'example'

if test x$with_[]modname != xno; then

	AC_PROG_CC
	AC_PROG_CPP

	AC_CHECK_HEADERS(sys/un.h)  # for the config.h defs
	if test "$ac_cv_header_sys_un_h" != "yes"; then
	  fail="$fail sys/un.h"
	fi

	targetname=modname     # keep this!  Don't change!
else
	targetname=            # keep this!  Don't change!
	echo \*\*\* module modname is disabled.  # keep this!  Don't change!
fi

dnl  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=""
	fi
fi


AC_SUBST(smsotp_cflags)  # change 'example'
AC_SUBST(smsotp_ldflags)  # change 'example'

AC_CONFIG_HEADER(config.h)  # delete if you don't want a config.h file.

AC_SUBST(targetname)  # keep this!  Don't change!
AC_OUTPUT(Makefile)  # keep this!  Don't change!