| Summary: | [patch] [build] unbreak world WITHOUT_NETGRAPH | ||||||||
|---|---|---|---|---|---|---|---|---|---|
| Product: | Base System | Reporter: | bf <bf1783> | ||||||
| Component: | conf | Assignee: | Antoine Brodin <antoine> | ||||||
| Status: | Closed FIXED | ||||||||
| Severity: | Affects Only Me | ||||||||
| Priority: | Normal | ||||||||
| Version: | Unspecified | ||||||||
| Hardware: | Any | ||||||||
| OS: | Any | ||||||||
| Attachments: |
|
||||||||
|
Description
bf
2009-08-06 16:20:01 UTC
Responsible Changed From-To: freebsd-bugs->antoine Take. Author: antoine Date: Sat Jan 16 12:20:26 2010 New Revision: 202440 URL: http://svn.freebsd.org/changeset/base/202440 Log: Unbreak world WITHOUT_NETGRAPH. PR: 137487 Submitted by: bf (previous version) No objections: net@ MFC after: 2 weeks Modified: head/share/mk/bsd.own.mk head/usr.sbin/ppp/Makefile Modified: head/share/mk/bsd.own.mk ============================================================================== --- head/share/mk/bsd.own.mk Sat Jan 16 12:18:44 2010 (r202439) +++ head/share/mk/bsd.own.mk Sat Jan 16 12:20:26 2010 (r202440) @@ -468,6 +468,11 @@ MK_MAILWRAPPER:= no MK_SENDMAIL:= no .endif +.if ${MK_NETGRAPH} == "no" +MK_ATM:= no +MK_BLUETOOTH:= no +.endif + .if ${MK_OPENSSL} == "no" MK_OPENSSH:= no MK_KERBEROS:= no Modified: head/usr.sbin/ppp/Makefile ============================================================================== --- head/usr.sbin/ppp/Makefile Sat Jan 16 12:18:44 2010 (r202439) +++ head/usr.sbin/ppp/Makefile Sat Jan 16 12:20:26 2010 (r202440) @@ -25,6 +25,9 @@ PPP_NO_SUID= .if ${MK_ATM} == "no" PPP_NO_ATM= .endif +.if ${MK_NETGRAPH} == "no" +PPP_NO_NETGRAPH= +.endif .if ${MK_PAM_SUPPORT} == "no" PPP_NO_PAM= .endif _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" State Changed From-To: open->patched patched in head On 1/16/10, antoine@freebsd.org <antoine@freebsd.org> wrote: > Synopsis: [patch] [build] unbreak world WITHOUT_NETGRAPH > > State-Changed-From-To: open->patched > State-Changed-By: antoine > State-Changed-When: Sat Jan 16 12:31:24 UTC 2010 > State-Changed-Why: > patched in head > > http://www.freebsd.org/cgi/query-pr.cgi?pr=137487 > Thanks. I wonder if, as in the case of WITHOUT_PF and WITHOUT_IPFILTER, it makes much sense to build netgraph-related kernel modules without netgraph support in the userland? I would suggest also considering the change in the attached patch, which I forgot to put in the PR. Regards, b. Author: antoine Date: Sat Jan 30 15:40:00 2010 New Revision: 203196 URL: http://svn.freebsd.org/changeset/base/203196 Log: MFC r202440 to stable/8: Unbreak world WITHOUT_NETGRAPH. PR: 137487 Submitted by: bf (previous version) No objections: net@ Modified: stable/8/share/mk/bsd.own.mk stable/8/usr.sbin/ppp/Makefile Directory Properties: stable/8/share/mk/ (props changed) stable/8/usr.sbin/ppp/ (props changed) Modified: stable/8/share/mk/bsd.own.mk ============================================================================== --- stable/8/share/mk/bsd.own.mk Sat Jan 30 15:28:14 2010 (r203195) +++ stable/8/share/mk/bsd.own.mk Sat Jan 30 15:40:00 2010 (r203196) @@ -468,6 +468,11 @@ MK_MAILWRAPPER:= no MK_SENDMAIL:= no .endif +.if ${MK_NETGRAPH} == "no" +MK_ATM:= no +MK_BLUETOOTH:= no +.endif + .if ${MK_OPENSSL} == "no" MK_OPENSSH:= no MK_KERBEROS:= no Modified: stable/8/usr.sbin/ppp/Makefile ============================================================================== --- stable/8/usr.sbin/ppp/Makefile Sat Jan 30 15:28:14 2010 (r203195) +++ stable/8/usr.sbin/ppp/Makefile Sat Jan 30 15:40:00 2010 (r203196) @@ -25,6 +25,9 @@ PPP_NO_SUID= .if ${MK_ATM} == "no" PPP_NO_ATM= .endif +.if ${MK_NETGRAPH} == "no" +PPP_NO_NETGRAPH= +.endif .if ${MK_PAM_SUPPORT} == "no" PPP_NO_PAM= .endif _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" State Changed From-To: patched->closed Thanks for the report, this is fixed in head and stable/8. |