[dev] No configure option for WITH_FONTOOO

2005-02-01 Thread Samphan Raruenrom
I've built 680_m69 successfully. I've found that the instsetoo_native 
need msfontextract
and to build msfontextract, I need WITH_FONTOOO=YES

--- ooo/msfontextract/makefile.mk
.IF $(WITH_FONTOOO) != YES
@all:
   @+echo FontOOo disabled... Nothing to build here.
.ENDIF
8--8
But I see no option in config_office/configure to set WITH_FONTOOO so I need to 
hack
winenv.set to add the variable. Which is not good.
Is this a bug?
--
_/|\_ Samphan Raruenrom.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


[dev] re: HEAD: we broke gcc again...

2005-02-01 Thread Caolan McNamara
FWIW the internal compiler error in slideshow is probably
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19311 rather than 
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=15299

C.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[dev] Compiler Bug? (Sun Studio 10, Solaris Express 11/04, OO.org tag NSRC680_m71s1)

2005-02-01 Thread Matt Prazak

In icu/unxsols4.pro/misc/build/icu/source/i18n/ucol_bld.cpp, there is a
while loop in ucol_doCE() that, for me, will never exit, even when the
condition is false!  When I re-write the loop, the problem goes away. 
This problem occurs while running dmake, when a program called genrb
invokes ucol_doCE().

Original code, never exits:

  while(2*CEinoOfBytes[0] || CEinoOfBytes[1] || CEinoOfBytes[2]) {
...
  }

New code, works as expected:

  while( 1 ) {
if( !( 2*CEinoOfBytes[0] || CEinoOfBytes[1] || CEinoOfBytes[2] )
)
  break;

...
  }

When I tried re-writing the while loop as a for loop, the problem
persisted--I had to explicity break the loop as in the code above.

Logically, both should be identical, so does this look like it might be
a bug in Sun Studio 10? 

Platform details:

  # uname -a
  SunOS whizzer 5.10 s10_72 sun4u sparc SUNW,Ultra-30 Solaris

  # cc -V
  cc: Sun C 5.7 2005/01/07

Sincerely,
Matt Prazak




__ 
Do you Yahoo!? 
Yahoo! Mail - Easier than ever with enhanced search. Learn more.
http://info.mail.yahoo.com/mail_250

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]