diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-08-19 17:05:10 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-08-19 17:05:10 +0000 |
commit | e11c56ffafcb27daf0434ce73d86427180aa03b1 (patch) | |
tree | b0cfca4a56e484bf221698c024c42102cc2d8eb6 | |
parent | fix pre-everything:: (diff) |
Add WITHOUT_SMUX option
PR: 20849
Submitted by: Maxim Tulyuk <mt@lucky.net>
Notes
Notes:
svn path=/head/; revision=46486
-rw-r--r-- | net/gated/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/gated/Makefile b/net/gated/Makefile index 986ecfa08e38..abfad5a0e3ec 100644 --- a/net/gated/Makefile +++ b/net/gated/Makefile @@ -17,6 +17,11 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-public-3_6 GNU_CONFIGURE= yes +# use this option, if log_in_vain="YES" +.if defined(WITHOUT_SMUX) +CONFIGURE_ARGS+= --disable-smux +.endif + post-configure: cd ${WRKSRC} && ${MAKE} depend |