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.pass1.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
    2528#include "sysfuncs.h"
    26 
    2729#include "memlib.h"
    2830#include "messages.h"
    2931#include "huffman.h"
    3032#include "netorder.h"  /* [RPAP - Jan 97: Endian Ordering] */
    31 
    32 
    3333#include "mg_files.h"
    3434#include "mg.h"
     
    3939#include "hash.h"
    4040#include "local_strings.h"
    41 
    4241#include "TextEl.h"
    43 
    44 
    45 /*
    46    $Log$
    47    Revision 1.1  2000/01/14 02:26:23  sjboddie
    48    Rodgers new C++ mg
    49 
    50    Revision 1.1  1999/10/11 02:58:37  cs025
    51    Base install of MG-PP
    52 
    53    Revision 1.1  1999/08/10 21:18:25  sjboddie
    54    renamed mg-1.3d directory mg
    55 
    56    Revision 1.2  1998/12/17 09:12:54  rjmcnab
    57 
    58    Altered mg to process utf-8 encoded Unicode. The main changes
    59    are in the parsing of the input, the casefolding, and the stemming.
    60 
    61    Revision 1.1  1998/11/17 09:35:46  rjmcnab
    62    *** empty log message ***
    63 
    64    * Revision 1.4  1994/11/25  03:47:47  tes
    65    * Committing files before adding the merge stuff.
    66    *
    67    * Revision 1.3  1994/10/20  03:57:09  tes
    68    * I have rewritten the boolean query optimiser and abstracted out the
    69    * components of the boolean query.
    70    *
    71    * Revision 1.2  1994/09/20  04:42:13  tes
    72    * For version 1.1
    73    *
    74  */
    75 
    7642
    7743#define POOL_SIZE 1024*1024
    7844#define INITIAL_HASH_SIZE 7927
    79 
    80 
    81 
    82 
    83 
    8445
    8546
Note: See TracChangeset for help on using the changeset viewer.