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/text.pass2.cpp

    r856 r2468  
    1919 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
    2020 *
    21  * $Id$
    22  *
    2321 **************************************************************************/
    2422
     23// need this to avoid bizarre compiler problems under VC++ 6.0
     24#if defined (__WIN32__) && !defined (GSDL_USE_IOS_H)
     25# include <iostream>
     26#endif
     27
     28#if defined (__WIN32__)
     29# include <stdio.h>
     30# define unlink _unlink
     31#endif
    2532
    2633#include "sysfuncs.h"
    27 
    2834#include "memlib.h"
    2935#include "messages.h"
     
    3238#include "huffman.h"
    3339#include "netorder.h"  /* [RPAP - Jan 97: Endian Ordering] */
    34 
    3540#include "mg.h"
    3641#include "mg_files.h"
     
    4146#include "locallib.h"
    4247#include "comp_dict.h"
    43 
    4448#include "FText.h"
    4549
    46 
    47 /*
    48    $Log$
    49    Revision 1.1  2000/01/14 02:26:24  sjboddie
    50    Rodgers new C++ mg
    51 
    52    Revision 1.1  1999/10/11 02:58:38  cs025
    53    Base install of MG-PP
    54 
    55    Revision 1.1  1999/08/10 21:18:25  sjboddie
    56    renamed mg-1.3d directory mg
    57 
    58    Revision 1.2  1998/12/17 09:12:54  rjmcnab
    59 
    60    Altered mg to process utf-8 encoded Unicode. The main changes
    61    are in the parsing of the input, the casefolding, and the stemming.
    62 
    63    Revision 1.1  1998/11/17 09:35:47  rjmcnab
    64    *** empty log message ***
    65 
    66    * Revision 1.3  1994/10/20  03:57:10  tes
    67    * I have rewritten the boolean query optimiser and abstracted out the
    68    * components of the boolean query.
    69    *
    70    * Revision 1.2  1994/09/20  04:42:14  tes
    71    * For version 1.1
    72    *
    73  */
    74 
    7550#define POOL_SIZE 1024*256
     51
    7652
    7753struct char_pool {
Note: See TracChangeset for help on using the changeset viewer.