raddbdir
radacctdir
logdir
+boilermake
CXXCPP
OTOOL64
OTOOL
with_sysroot
enable_libtool_lock
enable_strict_dependencies
+enable_boilermake
with_docdir
with_logdir
with_radacctdir
--disable-option-checking ignore unrecognized --enable/--with options
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- --enable-developer Enables features of interest to developers.
+ --enable-developer enables features of interest to developers.
--disable-largefile omit support for large files
--enable-shared[=PKGS] build shared libraries [default=yes]
--enable-static[=PKGS] build static libraries [default=yes]
optimize for fast installation [default=yes]
--disable-libtool-lock avoid locking (might break parallel builds)
--enable-strict-dependencies Fail configure on lack of module dependancy.
+ --enable-boilermake use the boilermake build system (experimental default=no).
Optional Packages:
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
--with-raddbdir=DIR Directory for config files SYSCONFDIR/raddb
--with-ascend-binary Include support for Ascend binary filter attributes (default=yes)
--with-threads Use threads, if available. (default=yes)
- --with-tcp Compile in TCP support. (default=yes)
+ --with-tcp Compile in TCP support. (default=yes)
--with-vmps Compile in VMPS support. (default=yes)
--with-dhcp Compile in DHCP support. (default=yes)
--with-static-modules=QUOTED-MODULE-LIST
- --with-modules=QUOTED-MODULE-LIST
+ --with-modules=QUOTED-MODULE-LIST
--with-experimental-modules Use experimental and unstable modules. (default=no, unless --enable-developer=yes)
--with-openssl Use OpenSSL. (default=yes)
--with-openssl-includes=DIR Directory to look for OpenSSL include files
fi
+boilermake = no
+# Check whether --enable-boilermake was given.
+if test "${enable_boilermake+set}" = set; then :
+ enableval=$enable_boilermake; case "$enableval" in
+ yes)
+ boilermake=yes
+ ;;
+ *)
+ boilermake=no
+ esac
+
+fi
+
+
+
+
docdir='${datadir}/doc/freeradius'
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking docdir" >&5
$as_echo_n "checking docdir... " >&6; }
dnl # and AC_PROG_CXX macros.
dnl #
AC_ARG_ENABLE(developer,
-[ --enable-developer Enables features of interest to developers.],
+[ --enable-developer enables features of interest to developers.],
[ case "$enableval" in
no)
developer=no
dnl Put this in later, when all distributed modules use autoconf.
dnl AC_ARG_WITH(disablemodulefoo,
-dnl [ --without-rlm_foo Disables module compilation. Module list:]
+dnl [ --without-rlm_foo Disables module compilation. Module list:]
dnl esyscmd([find src/modules -type d -name rlm_\* -print |\
dnl sed -e 's%src/modules/.*/% (sub)- %; s%.*/%- %' |\
dnl awk '{print " "$0}']))
AC_ARG_ENABLE(strict-dependencies,
[ --enable-strict-dependencies Fail configure on lack of module dependancy.])
+dnl # Build using the new boilermake system
+boilermake = no
+AC_ARG_ENABLE(boilermake,
+[ --enable-boilermake use the boilermake build system (experimental default=no).],
+[ case "$enableval" in
+ yes)
+ boilermake=yes
+ ;;
+ *)
+ boilermake=no
+ esac ]
+)
+
+AC_SUBST(boilermake)
+
dnl extra argument: --with-docdir
docdir='${datadir}/doc/freeradius'
AC_MSG_CHECKING(docdir)
dnl extra argument: --with-tcp
WITH_TCP=yes
AC_ARG_WITH(tcp,
-[ --with-tcp Compile in TCP support. (default=yes)],
+[ --with-tcp Compile in TCP support. (default=yes)],
[ case "$withval" in
yes)
;;
MODULES=
AC_ARG_WITH(modules,
-[ --with-modules=QUOTED-MODULE-LIST],[
+[ --with-modules=QUOTED-MODULE-LIST],[
for i in $withval; do
MODULES="$MODULES $i"
done