Ignore:
Timestamp:
2009-12-09T21:41:14+13:00 (14 years ago)
Author:
ak19
Message:

Changes to makefiles, configure files, and source code to work with the new configure flags that allow indexers to be individually compiled up by setting each indexer to be enabled or disabled (enable-mg, enable-mgpp, enable-lucene)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/runtime-src/src/colservr/collectset.h

    r19365 r21324  
    1010#include "collectserver.h"
    1111#include "cnfgable.h"
     12
     13#ifdef ENABLE_MG
    1214#include "mgsearch.h"
     15#endif
     16#ifdef ENABLE_MGPP
    1317#include "mgppsearch.h"
     18#endif
     19#ifdef ENABLE_LUCENE
    1420#include "lucenesearch.h"
     21#endif
    1522
    1623class collectset : public configurable
     
    1825 protected:
    1926  collectservermapclass cservers;
     27#ifdef ENABLE_MG
    2028  mgsearchclass         *mgsearch;
     29#endif
     30#ifdef ENABLE_MGPP
    2131  mgppsearchclass       *mgppsearch;
     32#endif
     33#ifdef ENABLE_LUCENE
    2234  lucenesearchclass     *lucenesearch;
     35#endif
     36
    2337  int                   noofservers;
    2438  text_t                httpdomain;
Note: See TracChangeset for help on using the changeset viewer.