diff options
author | ngie <ngie@FreeBSD.org> | 2015-02-04 06:53:45 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-02-04 06:53:45 +0000 |
commit | c15561b95df1328a7256de3d0bd80389501ce03f (patch) | |
tree | 13a99d0de7b9fe7dc568cca539171da6aa1a82b0 /usr.sbin/ppp | |
parent | 79fa39eaca5ccc1c01787e5bf4b8262e1dd9efef (diff) | |
download | FreeBSD-src-c15561b95df1328a7256de3d0bd80389501ce03f.zip FreeBSD-src-c15561b95df1328a7256de3d0bd80389501ce03f.tar.gz |
Conditionalize building radius support into libpam, ppp, etc via
MK_RADIUS_SUPPORT
MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'usr.sbin/ppp')
-rw-r--r-- | usr.sbin/ppp/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.sbin/ppp/Makefile b/usr.sbin/ppp/Makefile index 30de68c..e0772af 100644 --- a/usr.sbin/ppp/Makefile +++ b/usr.sbin/ppp/Makefile @@ -31,6 +31,9 @@ PPP_NO_NETGRAPH= .if ${MK_PAM_SUPPORT} == "no" PPP_NO_PAM= .endif +.if ${MK_RADIUS_SUPPORT} == "no" +PPP_NO_RADIUS= +.endif .if defined(PPP_NO_SUID) BINMODE=554 |