Ignore:
Timestamp:
2001-05-24T17:06:48+12:00 (23 years ago)
Author:
sjboddie
Message:

Fiddled about with mgpp to get it compiling on Windows under VC++ 6.0. I
still can't get it to compile under VC++ 4.2 because of some weird
behaviour in STLport.

Also tidied up a little and removed some of the old log information
that was scattered about in some of the files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/mgpp/text/mg_decompress_text.cpp

    r2442 r2468  
    1818 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    1919 *
    20  * $Id$
    21  *
    2220 **************************************************************************/
    2321
    2422#define _XOPEN_SOURCE 1
    2523#define _XOPEN_SOURCE_EXTENDED 1
    26 #include <unistd.h>
    2724
     25#if defined __WIN32__
     26# include "getopt.h"
     27#else
     28# include <unistd.h>
     29#endif
     30
     31#include "UCArray.h"
    2832#include "sysfuncs.h"
    29 
    3033#include "TextGet.h"
    31 #include "UCArray.h"
    32 
    3334#include "messages.h"
    3435#include "mg_files.h"
    35 
    3636
    3737int main (int argc, char **argv) {
Note: See TracChangeset for help on using the changeset viewer.