Re: Build problem on WIN32


Subject: Re: Build problem on WIN32
From: Michael D. Pritchett (mpritchett@attglobal.net)
Date: Fri Mar 23 2001 - 01:07:05 CST


----- Original Message -----
From: Bruce Pearson <BruceP@wn.com.au>
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



This archive was generated by hypermail 2b25 : Fri Mar 23 2001 - 01:40:26 CST