This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

error compiling freebsd stack


Trying to build an ecos lib with freebsd stack selected gives the infamous

netinet/in.h:323: warning: ANSI C++ forbids data member `ip_opts' with
same name as enclosing class

the netinet/in.h in the OpenBSD stack is already corrected wrt this
issue...

it has

       struct in_addr  ip_dst;         /* first hop, 0 w/o src rt */
#if defined(__cplusplus)
       int8_t          Ip_opts[40];    /* cannot have same name as class
*/
#else
       int8_t          ip_opts[40];    /* actually variable in size */
#endif

while the freebsd one has 
       struct  in_addr ip_dst;         /* first hop, 0 w/o src rt */
       char    ip_opts[40];            /* actually variable in size */

Jani



-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]