X-Git-Url: http://www.project-moonshot.org/gitweb/?a=blobdiff_plain;f=configure;h=022ad9db79bd49bdadd1f526bdb28297d251719c;hb=4175e278958a4f4d22066f92a1733e8aaa2539f4;hp=a08792b8eafdcbc9dc2f58e2c394a54b33339ee7;hpb=f6a2fb2103027e9e80ebfb644a1b778e8ab95f96;p=freeradius.git diff --git a/configure b/configure index a08792b..022ad9d 100755 --- a/configure +++ b/configure @@ -1489,7 +1489,7 @@ Optional Packages: --with-ascend-binary Include support for Ascend binary filter attributes (default=yes) --with-threads Use threads, if available. (default=yes) --with-vmps Compile in VMPS support. (default=yes) - --with-dhcp Compile in DHCP support. (default=no) + --with-dhcp Compile in DHCP support. (default=yes) --with-static-modules=QUOTED-MODULE-LIST --with-modules=QUOTED-MODULE-LIST --with-experimental-modules Use experimental and unstable modules. (default=no) @@ -20303,25 +20303,31 @@ _ACEOF fi +WITH_DHCP=yes # Check whether --with-dhcp was given. if test "${with_dhcp+set}" = set; then withval=$with_dhcp; case "$withval" in yes) + ;; + *) + WITH_DHCP=no + esac + +fi + +if test "x$WITH_DHCP" = "xyes"; then cat >>confdefs.h <<\_ACEOF #define WITH_DHCP 1 _ACEOF - ;; - *) - ;; - esac - fi + + STATIC_MODULES= # Check whether --with-static_modules was given.