[PATCH] Alternative patch for compiler error (was: [PATCH] Workaround compile error on networking/libiproute/iplink.c)
Patrick McHardy
kaber at trash.net
Thu Jul 25 16:34:53 UTC 2013
On Thu, Jul 25, 2013 at 06:29:48PM +0200, Cristian Ionescu-Idbohrn wrote:
> Ping!
>
> On Mon, 22 Jul 2013, Cristian Ionescu-Idbohrn wrote:
> >
> > IFLA_VLAN_PROTOCOL define was introduced with commit
> > a7ecbed56bb620a0e8cd79372886d0fdfeb362c8. gcc 4.8.1 complains.
> >
> > CC networking/libiproute/iplink.o
> > networking/libiproute/iplink.c:26:33: error: expected identifier before numeric constant
> > #define IFLA_VLAN_PROTOCOL 5
> > ^
> > make[1]: *** [networking/libiproute/iplink.o] Error 1
>
> Does noone else see it? Is it only me?
> I'm not C-literate but, IFLA_VLAN_PROTOCOL comes with:
>
> #include "ip_common.h"
>
> which:
>
> #include <linux/if_link.h>
>
> which:
>
> /* VLAN section */
>
> enum {
> IFLA_VLAN_UNSPEC,
> IFLA_VLAN_ID,
> IFLA_VLAN_FLAGS,
> IFLA_VLAN_EGRESS_QOS,
> IFLA_VLAN_INGRESS_QOS,
> IFLA_VLAN_PROTOCOL,
> __IFLA_VLAN_MAX,
> };
>
> Shouldn't:
>
> #undef IFLA_VLAN_PROTOCOL
> #define IFLA_VLAN_PROTOCOL 5
>
> come after that?
>
> networking/libiproute/iplink.c:25:33: error: expected identifier before numeric constant
> #define IFLA_VLAN_PROTOCOL 5
> ^
> make[1]: *** [networking/libiproute/iplink.o] Error 1
Sorry, I missed your email. I just sent a similar patch a couple of seconds
ago. Could you please test whether it fixes the problem for you?
More information about the busybox
mailing list