Ethereal-dev: Re: [Ethereal-dev] 0.10.12 build problems on IRIX 6.5

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Joerg Mayer <jmayer@xxxxxxxxx>
Date: Thu, 4 Aug 2005 23:41:05 +0200
On Thu, Aug 04, 2005 at 04:00:32PM -0500, Albert Chin wrote:
> epan/dissectors/packet-ms-mms.c makes uses of some C99'isms which
> prevent compilation on IRIX 6.5 with the SGI C compiler. Patch
> attached to fix.

checked in. The current code contains at least one other instance where
we will run into this problem. I'll fix it as soon as the current compile
run finishes.

I've also updated README.developer as follows:
-------------------------
Don't initialize variables in their declaration with non-constant
values. Not all compilers support this. E.g. don't use
        guint32 i = somearray[2];
use
        guint32 i;
        i = somearray[2];
instead.
-------------------------

Corrections welcome.

 thanks
         Joerg

-- 
Joerg Mayer                                           <jmayer@xxxxxxxxx>
We are stuck with technology when what we really want is just stuff that
works. Some say that should read Microsoft instead of technology.