patch to enable configure using --with-modules="rlm_policy"
Yes I understand there is a system for stable/experimental modules to be done. This is an addition to configure.in to allow manual specifying modules to be built in addition to stable/experimental system. I used this to build rlm_policy into my local deb package, without trying to build other experimental modules that may or may not complicate my build proccess. Thanks for consideration. Any and all feedback welcome. Joe --- debian8/freeradius-1.1.0/configure.in 2005-10-03 12:50:10.000000000 -0400 +++ debian9/freeradius-1.1.0/configure.in 2005-10-13 22:24:03.000000000 -0400 @@ -231,6 +231,14 @@ done ]) +MODULES= +AC_ARG_WITH(modules, +[ --with-modules=QUOTED-MODULE-LIST],[ + for i in $withval; do + MODULES="$MODULES $i" + done +]) + dnl # dnl # Enable developer C compiler warnings dnl # @@ -1005,7 +1013,6 @@ dnl ############################################################ dnl # make modules by list dnl ############################################################# -MODULES= if test "x$EXPERIMENTAL" = "xyes"; then for foo in `ls -1 src/modules | grep rlm_`; do MODULES="$MODULES $foo"
participants (1)
-
Joe Maimon