Javier Pedemonte <[EMAIL PROTECTED]> wrote:
> I have recently updated the bugs dealing with building security on the 
> trunk.  I'd like for you guys to try to build this so that we can iron 
> out any bugs.  Specifically, I am using Visual Age, so I need to know if 
> those of you that use emx will have any problems.  Just check out from 
> the trunk and overlay the following bugs:

Look at /cvsroot/mozilla/security/coreconf/OS2.mk

ifdef XP_OS2_EMX
......
OPTIMIZER               = -O+ -Oi 

There are no such optiond in emx gcc! Only -O<digit> I'm using -O6

/cvsroot/mozilla/security/coreconf/rules.mk

ifeq ($(OS_ARCH),OS2)
.....
        @cmd /C "cppfilt -b -p -q $(OBJS) >>[email protected]"

Is it emx tool? Probably not.

/cvsroot/mozilla/security/coreconf/arch.mk

ifeq ($(OS_ARCH), OS_2)

Typo? OS2?

Other files:
#ifdef XP_OS2_EMX
#include <stat.h>
#elif defined( XP_OS2_VACPP )
#include <sys/stat.h>

There is sys/stat.h for emx too!

/cvsroot/mozilla/security/nss/cmd/selfserv/selfserv.c

#ifdef XP_OS2_VACPP
#include <Process.h>
#endif

EMX has this file too.

Have you EMX installed?

Reply via email to