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/recpt/mod_gsdl.cpp

    r19259 r21324  
    6969#include "filter.h"
    7070#include "browsefilter.h"
    71 #include "mgqueryfilter.h"
     71
     72//#ifdef ENABLE_MG
     73//#include "mgqueryfilter.h"
     74//#include "mgsearch.h"
     75//#endif
     76
    7277#include "infodbclass.h"
    73 #include "mgsource.h"
    74 #include "mgsearch.h"
    7578#include "collectset.h"
    7679
     
    8285#include "documentaction.h"
    8386#include "extlinkaction.h"
     87#ifdef ENABLE_MGPP
    8488#include "phindaction.h"
     89#endif
    8590#if defined(USE_MYSQL) || defined(USE_ACCESS)
    8691#include "orderaction.h"
     
    266271  recpt.add_action(anextlinkaction);
    267272
     273  // phindaction is for MGPP and uses MGQuery
     274#ifdef ENABLE_MGPP
    268275  phindaction *aphindaction = new phindaction();
    269276  recpt.add_action(aphindaction);
     277#endif
    270278
    271279#if defined(USE_MYSQL) || defined(USE_ACCESS)
Note: See TracChangeset for help on using the changeset viewer.