----- Original Message -----
From: Bruce Pearson <[EMAIL PROTECTED]>
Sent: Thursday, March 22, 2001 7:39 PM


> Can anybody help with this build problem on WIN32.
>
> Thanks,
> Bruce.

Bruce -

This looks like a problem I had due to an include ordering system in
ap_Win32App.cpp.  It would look like this

#define WIN32_MEAN_AND_LEAN
#include <windows.h>
...
#include <stdlib.h>

but should have looked like this

#define WIN32_MEAN_AND_LEAN
#include <stdlib.h>
#include <windows.h>

This should have been cleaned-up in the latest CVS stuff by Tom Briggs:
http://www.abisource.com/mailinglists/abiword-dev/01/March/0954.html

So you can either manually make this change or (preferrably) update you
latest CVS sources.

Cheers!

Michael D. Pritchett




Reply via email to