cvs commit: src/sys/net/i4b/capi capi_l4if.c src/sys/net/i4b/capi/iavc iavc_isa.c iavc_pci.c src/sys/net/i4b/driver i4b_ctl.c i4b_ipr.c i4b_isppp.c i4b_rbch.c i4b_tel.c i4b_trace.c src/sys/net/i4b/include i4b_global.h i4b_l1l2.h i4b_l3l4.h ...
Matthew Dillon
dillon at apollo.backplane.com
Wed Jun 15 02:27:39 PDT 2005
:...
:> >I think it is just little typo, in
:> >sys/net/i4b/include/i386/i4b_isppp.h line34, try stripping the
:> >excessive `)' in `#ifndef (_KERNEL))'
:>
:> Fixed, thanks.
:
:My buildworld failed again, even after making this change. I suspect
:*all* the parens have to be removed from that line...
:
:-Chris
Yes, that's not legal. You can do #if !defined(BLAH) or
#if defined(BLAH) or #ifdef BLAH or #ifndef BLAH but you cannot
do #if*def (BLAH).
Fixed.
-Matt
Matthew Dillon
<dillon at xxxxxxxxxxxxx>
More information about the Commits
mailing list