X-Git-Url: https://git.ozlabs.org/?a=blobdiff_plain;f=configure.ac;h=1248b8431ad6695778f8e04e21db3c8844f11f56;hb=f36f5f83a39058e3cd16d450f20d20fa32419076;hp=ac5334248565270ad2176f1aabcce64ed47724c7;hpb=e8676075aea6d278f435d5ce83d9b6aa216a1ecb;p=ppp.git diff --git a/configure.ac b/configure.ac index ac53342..1248b84 100644 --- a/configure.ac +++ b/configure.ac @@ -110,16 +110,16 @@ AM_COND_IF([WITH_SYSTEMD], # Enable Callback Protocol Support, disabled by default AC_ARG_ENABLE([cbcp], AS_HELP_STRING([--enable-cbcp], [Enable Callback Protocol])) -AM_CONDITIONAL(WITH_CBCP, test "x${enable_cbcp}" = "xyes") -AM_COND_IF([WITH_CBCP], - AC_DEFINE([CBCP_SUPPORT], 1, [Have Callback Protocol support])) +AM_CONDITIONAL(PPP_WITH_CBCP, test "x${enable_cbcp}" = "xyes") +AM_COND_IF([PPP_WITH_CBCP], + AC_DEFINE([PPP_WITH_CBCP], 1, [Have Callback Protocol support])) # # Disable support for limiting session duration by maximum octets AC_ARG_ENABLE([maxoctets], AS_HELP_STRING([--disable-maxoctets], [Disable support for limiting session by maximum octets])) AS_IF([test "x$enable_maxoctets" != "xno"], - AC_DEFINE([MAXOCTETS], 1, ["Limit sessions by maximum number of octets"])) + AC_DEFINE([PPP_WITH_MAXOCTETS], 1, [Limit sessions by maximum number of octets])) # # Disable Microsoft extensions will remove CHAP and MPPE support @@ -153,41 +153,41 @@ AM_COND_IF([PPP_WITH_IPV6CP], # Disable Multilink support AC_ARG_ENABLE([multilink], AS_HELP_STRING([--enable-multilink], [Enable multilink support])) -AM_CONDITIONAL(WITH_MULTILINK, test "x${enable_multilink}" = "xyes") -AM_COND_IF([WITH_MULTILINK], - AC_DEFINE([HAVE_MULTILINK], 1, ["Have multilink support"])) +AM_CONDITIONAL(PPP_WITH_MULTILINK, test "x${enable_multilink}" = "xyes") +AM_COND_IF([PPP_WITH_MULTILINK], + AC_DEFINE([PPP_WITH_MULTILINK], 1, ["Have multilink support"])) AS_IF([test "x${build_sunos}" = "xyes" && test "x${enable_multilink}" = "xyes"], [AC_MSG_ERROR([Multilink is not supported on SunOS])]) # # Multilink require Trivial Database Support -AM_CONDITIONAL(WITH_TDB, test "x${enable_multilink}" = "xyes") -AM_COND_IF([WITH_TDB], - AC_DEFINE([USE_TDB], 1, ["Include TDB support"])) +AM_CONDITIONAL(PPP_WITH_TDB, test "x${enable_multilink}" = "xyes") +AM_COND_IF([PPP_WITH_TDB], + AC_DEFINE([PPP_WITH_TDB], 1, ["Include TDB support"])) # # Enable support for loadable plugins AC_ARG_ENABLE([plugins], AS_HELP_STRING([--disable-plugins], [Disable support for loadable plugins])) AS_IF([test "x$enable_plugins" != "xno"], - AC_DEFINE([PLUGIN], 1, ["Have support for loadable plugins"])) -AM_CONDITIONAL(WITH_PLUGINS, test "${enable_plugins}" != "no") + AC_DEFINE([PPP_WITH_PLUGINS], 1, ["Have support for loadable plugins"])) +AM_CONDITIONAL(PPP_WITH_PLUGINS, test "${enable_plugins}" != "no") # # Disable EAP-TLS support AC_ARG_ENABLE([eaptls], AS_HELP_STRING([--disable-eaptls], [Disable EAP-TLS authentication support])) AS_IF([test "x$enable_eaptls" != "xno"], - AC_DEFINE([USE_EAPTLS], 1, ["Have EAP-TLS authentication support"])) -AM_CONDITIONAL(WITH_EAPTLS, test "x${enable_eaptls}" != "xno") + AC_DEFINE([PPP_WITH_EAPTLS], 1, [Have EAP-TLS authentication support])) +AM_CONDITIONAL(PPP_WITH_EAPTLS, test "x${enable_eaptls}" != "xno") # # Disable PEAP support AC_ARG_ENABLE([peap], AS_HELP_STRING([--disable-peap], [Disable PEAP authentication support])) AS_IF([test "x${enable_peap}" != "xno"], - AC_DEFINE([USE_PEAP], 1, ["Have PEAP authentication support"])) -AM_CONDITIONAL([WITH_PEAP], test "x${enable_peap}" != "xno") + AC_DEFINE([PPP_WITH_PEAP], 1, [Have PEAP authentication support])) +AM_CONDITIONAL([PPP_WITH_PEAP], test "x${enable_peap}" != "xno") # # Disable OpenSSL engine support @@ -275,8 +275,8 @@ AX_CHECK_ATM # # With libpam support -AX_CHECK_PAM(AC_DEFINE([USE_PAM], 1, ["Support for Pluggable Authentication Modules"])) -AM_CONDITIONAL(WITH_PAM, test "x${with_pam}" = "xyes") +AX_CHECK_PAM(AC_DEFINE([PPP_WITH_PAM], 1, [Support for Pluggable Authentication Modules])) +AM_CONDITIONAL(PPP_WITH_PAM, test "x${with_pam}" = "xyes") # # With libpcap support, activate pppd on network activity @@ -284,9 +284,9 @@ AX_CHECK_PCAP # # SunOS provides a version of libpcap that would work, but SunOS has no support for activity filter -AM_CONDITIONAL([WITH_FILTER], [ test "x${with_pcap}" = "xyes" && test "x${build_sunos}" != "xyes" ]) -AM_COND_IF([WITH_FILTER], [ - AC_DEFINE([PPP_FILTER], 1, ["Have packet activity filter support"])], [ +AM_CONDITIONAL([PPP_WITH_FILTER], [ test "x${with_pcap}" = "xyes" && test "x${build_sunos}" != "xyes" ]) +AM_COND_IF([PPP_WITH_FILTER], [ + AC_DEFINE([PPP_WITH_FILTER], 1, ["Have packet activity filter support"])], [ AS_IF([test "x${build_sunos}" = "xyes"], [ AC_MSG_WARN([Packet activity filter not supported on SunOS]) with_pcap="no"